Repository: knowitall/ollie Branch: master Commit: e8fa07a1d9d2 Files: 85 Total size: 6.1 MB Directory structure: gitextract_28sxprec/ ├── .dockerignore ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── app/ │ ├── pom.xml │ └── src/ │ ├── main/ │ │ ├── resources/ │ │ │ └── logback.xml │ │ └── scala/ │ │ └── edu/ │ │ └── knowitall/ │ │ ├── ollie/ │ │ │ ├── OllieCli.scala │ │ │ └── SentenceIterator.scala │ │ └── openparse/ │ │ ├── OpenParseCli.scala │ │ ├── OpenParseGui.scala │ │ └── gui/ │ │ ├── Dot.scala │ │ ├── ExtractionEntry.scala │ │ ├── Parser.scala │ │ └── Sentence.scala │ └── test/ │ └── resources/ │ └── logback-test.xml ├── core/ │ ├── build.sbt │ ├── here.txt │ ├── pom.xml │ ├── project/ │ │ └── plugins.sbt │ ├── scripts/ │ │ ├── applypatterns.sh │ │ ├── build_templates.sh │ │ ├── create_patterns.sh │ │ ├── create_test_train.sh │ │ ├── extractor.sh │ │ └── keep_common_patterns.sh │ └── src/ │ ├── main/ │ │ ├── resources/ │ │ │ └── edu/ │ │ │ └── knowitall/ │ │ │ ├── ollie/ │ │ │ │ ├── cognitiveWords.txt │ │ │ │ ├── communicationWords.txt │ │ │ │ ├── confidence/ │ │ │ │ │ └── default-classifier.txt │ │ │ │ └── prefixWords.txt │ │ │ └── openparse/ │ │ │ ├── categories/ │ │ │ │ ├── location.txt │ │ │ │ └── person.txt │ │ │ └── openparse.model │ │ └── scala/ │ │ └── edu/ │ │ └── knowitall/ │ │ ├── common/ │ │ │ └── enrich/ │ │ │ └── Traversable.scala │ │ ├── ollie/ │ │ │ ├── DependencyGraphExtras.scala │ │ │ ├── NaryExtraction.scala │ │ │ ├── Ollie.scala │ │ │ ├── OllieExtraction.scala │ │ │ ├── OllieExtractionInstance.scala │ │ │ ├── ScoredOllieExtractionInstance.scala │ │ │ ├── confidence/ │ │ │ │ ├── OllieConfidenceFunction.scala │ │ │ │ ├── OllieFeatureEvaluation.scala │ │ │ │ ├── OllieFeatureSet.scala │ │ │ │ └── train/ │ │ │ │ ├── CrossValidateConfidence.scala │ │ │ │ └── TrainOllieConfidence.scala │ │ │ └── output/ │ │ │ └── BratOutput.scala │ │ └── openparse/ │ │ ├── AnalyzePatterns.scala │ │ ├── BuildPatterns.scala │ │ ├── ExtractorPattern.scala │ │ ├── GraphExpansions.scala │ │ ├── OpenParse.scala │ │ ├── bootstrap/ │ │ │ ├── FilterTargetExtractions.scala │ │ │ ├── FindCommon.scala │ │ │ ├── FindTargetArguments.scala │ │ │ └── FindTargetExtractions.scala │ │ ├── eval/ │ │ │ ├── GroupScoredBy.scala │ │ │ ├── PrecisionYield.scala │ │ │ ├── RankPatterns.scala │ │ │ ├── Score.scala │ │ │ └── StatisticalSignificance.scala │ │ ├── extract/ │ │ │ ├── Extraction.scala │ │ │ ├── GeneralExtractor.scala │ │ │ ├── PatternExtractor.scala │ │ │ ├── SpecificExtractor.scala │ │ │ └── TemplateExtractor.scala │ │ └── template/ │ │ ├── BuildTemplates.scala │ │ ├── CountsToConfidence.scala │ │ ├── GeneralizeTemplate.scala │ │ └── PassiveReflections.scala │ └── test/ │ ├── resources/ │ │ └── logback-test.xml │ └── scala/ │ └── edu/ │ └── knowitall/ │ ├── common/ │ │ └── enrich/ │ │ └── TraversableSpecTest.scala │ ├── ollie/ │ │ ├── DependencyGraphExtrasSpec.scala │ │ └── confidence/ │ │ └── OllieFeatureSetSpec.scala │ └── openparse/ │ ├── BuildPatternsSpec.scala │ ├── ExtractorPatternSpec.scala │ ├── OllieSpec.scala │ ├── OpenParseSpec.scala │ └── PatternExtractorSpec.scala ├── data/ │ └── training.tsv ├── example/ │ ├── pom.xml │ └── src/ │ └── main/ │ ├── java/ │ │ └── example/ │ │ └── JavaOllieWrapper.java │ ├── resouces/ │ │ └── logback.xml │ └── scala/ │ └── ollie/ │ └── Example.scala └── pom.xml ================================================ FILE CONTENTS ================================================ ================================================ FILE: .dockerignore ================================================ Dockerfile .dockerignore .gitignore .git ================================================ FILE: .gitignore ================================================ target .cache .classpath .project .settings engmalt.linear.mco ================================================ FILE: .travis.yml ================================================ language: scala scala: - "2.9.2" jdk: - oraclejdk7 - openjdk7 ================================================ FILE: Dockerfile ================================================ FROM maven:3.5.2-jdk-7 WORKDIR /stage COPY ./ /stage/ RUN curl http://www.maltparser.org/mco/english_parser/engmalt.linear-1.7.mco > /stage/engmalt.linear-1.7.mco RUN mvn clean package CMD ["java", "-Xmx512m", "-jar", "ollie-app-1.0.1-SNAPSHOT.jar"] ================================================ FILE: LICENSE ================================================ Ollie Software License Agreement Ollie Software (C) 2011-2012, University of Washington. All rights reserved. US patent number 7,877,343 and 12/970,155 patent pending The University of Washington (UW), Professor Mausam, Michael Schmitz, Robert Bart, and Stephen Soderland, (Developers) give permission for you and your laboratory (University) to use Ollie. Ollie is a system that extracts relational triples from text. Ollie is protected by a United States copyright and patents. The National Science Foundation supported work on Ollie. Under University of Washington's patents 7,877,343 (issued) and 12/970,155 (patent pending), the UW grants to you the non-exclusive right to use patent claims practiced by the University of Washington's Ollie software solely for non-commercial purposes and as long as you comply with the terms of this Ollie Software License Agreement. UW and the Developers allow you to copy and modify Ollie for non-commercial purposes, and to distribute modifications through GitHub or directly to the University of Washington, on the following conditions: 1. Ollie is not used for any commercial purposes, or as part of a system which has commercial purposes. 2. Any software derived from Ollie must carry prominent notices stating that you modified it along with the date modified. The derivative must also carry prominent notices stating that it is released under this Ollie Software License Agreement If you wish to obtain Ollie or to obtain any patent rights for any commercial purposes, you will need to contact the University of Washington to see if rights are available and to negotiate a commercial license and pay a fee. This includes, but is not limited to, using Ollie to provide services to outside parties for a fee. In that case please contact: UW Center for Commercialization University of Washington 4311 11th Ave. NE, Suite 500 Seattle, WA 98105-4608 Phone: (206) 543-3970 Email: license@u.washington.edu 3. You retain in Ollie and any modifications to Ollie, the copyright, trademark, patent or other notices pertaining to Ollie as provided by UW. 4. You provide the Developers with feedback on the use of the Ollie software in your research, and that the Developers and UW are permitted to use any information you provide in making changes to the Ollie software. All bug reports and technical questions shall be sent to: afader@cs.washington.edu. Modifications may be communicated through GitHub pull requests at: https://github.com/knowitall/ 5. You acknowledge that the Developers, UW and its licensees may develop modifications to Ollie that may be substantially similar to your modifications of Ollie, and that the Developers, UW and its licensees shall not be constrained in any way by you in UW's or its licensees' use or management of such modifications. You acknowledge the right of the Developers and UW to prepare and publish modifications to Ollie that may be substantially similar or functionally equivalent to your modifications and improvements, and if you obtain patent protection for any modification or improvement to Ollie you agree not to allege or enjoin infringement of your patent by the Developers, the UW or by any of UW's licensees obtaining modifications or improvements to Ollie from the University of Washington or the Developers. 6. If utilization of the Ollie software results in outcomes which will be published, please specify the version of Ollie you used and cite the UW Developers. @inproceedings{ollie-emnlp12, author = {Mausam and Michael Schmitz and Robert Bart and Stephen Soderland and Oren Etzioni}, title = {Open Language Learning for Information Extraction}, booktitle = {Proceedings of Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CONLL)}, year = {2012} } 7. Any risk associated with using the Ollie software at your organization is with you and your organization. Ollie is experimental in nature and is made available as a research courtesy "AS IS," without obligation by UW to provide accompanying services or support. UW AND THE AUTHORS EXPRESSLY DISCLAIM ANY AND ALL WARRANTIES REGARDING THE SOFTWARE, WHETHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES PERTAINING TO MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. ================================================ FILE: README.md ================================================ # Ollie Ollie is a program that automatically identifies and extracts binary relationships from English sentences. Ollie is designed for Web-scale information extraction, where target relations are not specified in advance. Ollie is our second-generation information extraction system . Whereas ReVerb operates on flat sequences of tokens, Ollie works with the tree-like (graph with only small cycles) representation using Stanford's compression of the dependencies. This allows Ollie to capture expression that ReVerb misses, such as long-range relations. Ollie also captures context that modifies a binary relation. Presently Ollie handles attribution (He said/she believes) and enabling conditions (if X then). ## Quick Start ### Docker You can now run Ollie with a single Docker command. ``` docker run -it schmmd/ollie:latest ``` To configure Ollie, you can drop into a bash shell with `docker run -it schmmd/ollie:latest /bin/bash` and run Ollie from the command line. ### Local Machine If you want to run Ollie on a small amount of text without modifying the source code, you can use an executable file that can be run from the command line. Please note that Ollie was built using Scala 2.9 and so it requires Java 7. Follow these steps to get started: 1. Download the latest Ollie binary from http://knowitall.cs.washington.edu/ollie/ollie-app-latest.jar. 2. Download the linear English MaltParser model (engmalt.linear-1.7.mco) from http://www.maltparser.org/mco/english_parser/engmalt.html and place it in the same directory as Ollie. 3. Run `java -Xmx512m -jar ollie-app-latest.jar yourfile.txt`. The input file should contain one sentence per line unless `--split` is specified. Omit the input file for an interactive console. ## Examples ### Enabling Condition An enabling condition is a condition that needs to be met for the extraction to be true. Certain words demark an enabling condition, such as "if" and "when". Ollie captures enabling conditions if they are present. sentence: If I slept past noon, I'd be late for work. extraction: (I; 'd be late for; work)[enabler=If I slept past noon] ### Attribution An attribution clause specifies an entity that asserted an extraction and a verb that specifies the expression. Ollie captures attributions if they are present. sentence: Some people say Barack Obama was not born in the United States. extraction: (Barack Obama; was not born in; the United States)[attrib=Some people say] sentence: Early astronomers believe that the earth is the center of the universe. extraction: (the earth; is the center of; the universe)[attrib=Early astronomers believe] ### Relational noun Some relations are expressed without verbs. Ollie can capture these as well as verb-mediated relations. sentence: Microsoft co-founder Bill Gates spoke at a conference on Monday. extraction: (Bill Gates; be co-founder of; Microsoft) ### N-ary extractions Often times similar relations will specify different aspects of the same event. Since Ollie captures long-range relations it can capture N-ary extractions by collapsing extractions where the relation phrase only differs by the preposition. sentence: I learned that the 2012 Sasquatch music festival is scheduled for May 25th until May 28th. extraction: (the 2012 Sasquatch music festival; is scheduled for; May 25th) extraction: (the 2012 Sasquatch music festival; is scheduled until; May 28th) nary: (the 2012 Sasquatch music festival; is scheduled; [for May 25th; to May 28th]) ## Building Building Ollie from source requires Apache Maven (). First, clone or download the Ollie source from GitHub. Run this command in the top-level source folder to download the required dependencies, compile, and create a single jar file. mvn clean package The compiled class files will be put in the base directory. The single executable jar file will be written to `ollie-app-VERSION.jar` where `VERSION` is the version number. ## Command Line Interface Once you have built Ollie, you can run it from the command line. java -Xmx512m -jar ollie-app-VERSION.jar yourfile.txt Omit the input file for an interactive console. Ollie takes sentences, one-per-line as input or splits text into sentences if `--split` is specified. Run Ollie with `--usage` to see full usage. The Ollie command line tool has a few output formats. The output format is specified by `--output-format` and a valid format: 1. The `interactive` format that is meant to be easily human readable. 2. The `tabbed` format is mean to be easily parsable. A header will be output as the first row to label the columns. 3. `tabbedsingle` is similar to `tabbed` but the extraction is output as (arg1; relation; arg2) in a single column. 4. The `serialized` is meant to be fully deserialized into an `OllieExtractionInstance` class. ## Graphical Interface Ollie works ontop of a subcomponent called OpenParse. The distinction is largely technical; OpenParse does not handle attribution and enabling condition and uses a coarser confidence metric. You can use a GUI application to visualize the OpenParse extractions in a parse tree. To use it, you will need to have [graphviz](http://www.graphviz.org/) installed. You can run the GUI with: java -Xms512M -Xmx1g -cp ollie-app-VERSION.jar edu.knowitall.openparse.OpenParseGui By default, this application will look for graphviz's `dot` program at `/usr/bin/dot`. You can specify a location with the `--graphviz` parameter. You can try out your own models with `Options->Load Model...`. To see an example model, look at `openparse.model` in `src/main/resources`. Your model may have one or more patterns in it. If you want to see pattern matches (without node expansion) instead of triple extractions, you can choose to show the raw match with `Options->Raw Matches`. This will allow you to use patterns that do not capture an arg1, rel, and arg2. ## Parsers Ollie is packaged to use Malt Parser, one of the fastest dependency parsers available. You will need the model file (`engmalt.linear-1.7.mco`) in the directory the application is run from or you will need to specify its location with the `--malt-model` parameter. Malt Parser models are available online. http://www.maltparser.org/mco/english_parser/engmalt.html Ollie works with any other parser in the `nlptools` project. For example, it is easy to swap out Malt for Stanford's parser. Stanford's parser is not a part of the Ollie distribution by default because of licensing conflicts, but the Stanford parser was used as the execution parser for the results in the paper. Malt Parser was used to bootstrap the patterns. We are interested in Clear parser as an alternative, but it's not a trivial change because Clear uses a slightly different dependency representation. ## Using Eclipse To modify the Ollie source code in Eclipse, use the [M2Eclipse plugin](http://www.sonatype.org/m2eclipse/) along with [ScalaIDE](http://scala-ide.org/). You can then import the project using the following. File > Import > Existing Maven Projects ## Including Ollie as a Dependency Add the following as a Maven dependency. edu.washington.cs.knowitall.ollie ollie-core_2.9.2 [1.0.0, ) The best way to find the latest version is to browse [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22edu.washington.cs.knowitall%22). `ollie-core` does not include a way to parse sentences. You will need to use a parser supplied by the [nlptools](https://github.com/knowitall/nlptools) project. The source for for `ollie-app` is an excellent example of a project using `ollie-core` as a dependency. `ollie-app` supplies a parser from [nlptools](https://github.com/knowitall/nlptools). There is an example project that uses Ollie in the `example` folder of the source distribution. ## Training the Confidence Function While Ollie comes with a trained confidence function, it is possible to retrain the confidence function. First, you need to run Ollie over a set of sentences and store the output in the *serialized* format. echo "Michael rolled down the hill." | java -jar ollie-app-1.0.0-SNAPSHOT.jar --serialized --output toannotate.tsv Next you need to annotate the extractions. Modify the output file and **change** the first column to a binary annotation--`1` for correct and `0` for wrong. Your final file will look similar to `ollie/data/training.tsv`. Now run the logistic regression trainer. java -cp ollie-app-1.0.0-SNAPSHOT.jar edu.washington.cs.knowitall.ollie.confidence.train.TrainOllieConfidence toannotate.tsv ## Concurrency When operating at web scale, parallelism is essential. While the base Ollie extractor is immutable and thread safe, the parser may not be thread safe. I do not know whether Malt parser is thread safe. ## FAQ 1. How fast is Ollie? You should really benchmark Ollie yourself, but on my computer (a new computer in 2011), Ollie processed 5000 high-quality web sentences in 56 seconds, or 89 sentences per second, in a single thread. Ollie is easily parallelizable and the Ollie extractor itself is threadsafe (see Concurrency section). ## Contact To contact the UW about Ollie, email knowit-ollie@cs.washington.edu. ## Citing Ollie If you use Ollie in your academic work, please cite Ollie with the following BibTeX citation: @inproceedings{ollie-emnlp12, author = {Mausam and Michael Schmitz and Robert Bart and Stephen Soderland and Oren Etzioni}, title = {Open Language Learning for Information Extraction}, booktitle = {Proceedings of Conference on Empirical Methods in Natural Language Processing and Computational Natural Language Learning (EMNLP-CONLL)}, year = {2012} } ================================================ FILE: app/pom.xml ================================================ 4.0.0 edu.washington.cs.knowitall.ollie ollie-app ollie-app 1.0.1-SNAPSHOT edu.washington.cs.knowitall knowitall-oss 1.0.2 UTF-8 2.4.0 org.scala-lang scala-swing 2.9.2 edu.washington.cs.knowitall.ollie ollie-core_2.9.2 1.0.2 edu.washington.cs.knowitall.nlptools nlptools-parse-malt_2.9.2 ${nlptools.version} edu.washington.cs.knowitall.nlptools nlptools-parse-stanford_2.9.2 ${nlptools.version} edu.washington.cs.knowitall.nlptools nlptools-sentence-opennlp_2.9.2 ${nlptools.version} junit junit 4.11 test batik batik-swing 1.6-1 org.specs2 specs2_2.9.2 1.12.3 test ch.qos.logback logback-classic 1.0.9 ch.qos.logback logback-core 1.0.9 src/main/scala src/test/scala net.alchim31.maven scala-maven-plugin 3.1.1 -deprecation -unchecked compile testCompile maven-assembly-plugin ${project.build.directory}/../.. false edu.knowitall.ollie.OllieCli distro-assembly package single ================================================ FILE: app/src/main/resources/logback.xml ================================================ %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n ================================================ FILE: app/src/main/scala/edu/knowitall/ollie/OllieCli.scala ================================================ package edu.knowitall.ollie; import java.io.File import java.io.PrintWriter import java.io.OutputStreamWriter import java.nio.charset.MalformedInputException import scala.io.Source import edu.knowitall.common.Resource.using import edu.knowitall.ollie.confidence.OllieConfidenceFunction import edu.knowitall.openparse.OpenParse import edu.knowitall.tool.parse.MaltParser import scopt.OptionParser import edu.knowitall.tool.segment.Segmenter import edu.knowitall.common.Timing import edu.knowitall.tool.sentence.OpenNlpSentencer import java.text.DecimalFormat import java.net.URL import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.ollie.confidence.OllieFeatureSet /** * An entry point to use Ollie on the command line. */ object OllieCli { /** A definition of command line arguments. */ abstract class Settings { def inputFiles: Option[Seq[File]] def outputFile: Option[File] def encoding: String def modelUrl: URL def confidenceModelUrl: Option[URL] def confidenceThreshold: Double def openparseConfidenceThreshold: Double def maltModelFile: Option[File] def parseInput: Boolean def splitInput: Boolean def outputFormat: OutputFormat def parallel: Boolean def invincible: Boolean } sealed abstract class OutputFormat { def header: Option[String] def format(conf: Double, extr: OllieExtractionInstance): String } object OutputFormat { val confFormatter = new DecimalFormat("#.###") def parse(format: String): OutputFormat = { format.toLowerCase match { case "interactive" => InteractiveFormat case "tabbed" => TabbedFormat case "tabbedsingle" => TabbedSingleColumnFormat case "serialized" => SerializedFormat } } } case object InteractiveFormat extends OutputFormat { def header = None def format(conf: Double, inst: OllieExtractionInstance): String = OutputFormat.confFormatter.format(conf) + ": " + inst.extr } case object TabbedFormat extends OutputFormat { def headers = Seq("confidence", "arg1", "rel", "arg2", "enabler", "attribution", "text", "pattern", "dependencies") def header = Some(headers.mkString("\t")) def format(conf: Double, inst: OllieExtractionInstance): String = Iterable(OutputFormat.confFormatter.format(conf), inst.extr.arg1.text, inst.extr.rel.text, inst.extr.arg2.text, inst.extr.enabler.map(_.text), inst.extr.attribution.map(_.text), inst.sent.text, inst.pat, inst.sent.serialize).mkString("\t") } case object TabbedSingleColumnFormat extends OutputFormat { def headers = Seq("confidence", "extraction", "enabler", "attribution", "text", "pattern", "dependencies") def header = Some(headers.mkString("\t")) def format(conf: Double, inst: OllieExtractionInstance): String = Iterable(OutputFormat.confFormatter.format(conf), inst.extr.toString, inst.extr.enabler.map(_.text), inst.extr.attribution.map(_.text), inst.sent.text, inst.pat, inst.sent.serialize).mkString("\t") } case object SerializedFormat extends OutputFormat { def header = None def format(conf: Double, inst: OllieExtractionInstance): String = OutputFormat.confFormatter.format(conf) + "\t" + inst.extr.toString + "\t" + inst.tabSerialize } /** Size to group for parallelism. */ private val CHUNK_SIZE = 10000 def main(args: Array[String]): Unit = { object settings extends Settings { var inputFiles: Option[Seq[File]] = None var outputFile: Option[File] = None var encoding: String = "UTF-8" var modelUrl: URL = OpenParse.defaultModelUrl var confidenceModelUrl: Option[URL] = Some(OllieConfidenceFunction.defaultModelUrl) var confidenceThreshold: Double = 0.0 var openparseConfidenceThreshold: Double = 0.005 var maltModelFile: Option[File] = None var parseInput: Boolean = true var splitInput: Boolean = false var outputFormat: OutputFormat = InteractiveFormat var parallel: Boolean = false var invincible: Boolean = false var showUsage: Boolean = false } // define the argument parser val argumentParser = new OptionParser("ollie") { arglistOpt("", "input text file (one sentence per line unless --split is specified)", { path: String => val file = new File(path) require(file.exists, "file does not exist: " + file) settings.inputFiles = Some(settings.inputFiles.getOrElse(Vector.empty) :+ file) }) opt(Some("o"), "output", "", "output file (otherwise stdout)", { path: String => settings.outputFile = Some(new File(path)) }) opt(Some("e"), "encoding", "", "character encoding (UTF8 by default)", { encoding: String => settings.encoding = encoding }) opt(Some("m"), "model", "", "model file", { path: String => val file = new File(path) require(file.exists, "file does not exist: " + path) settings.modelUrl = file.toURI.toURL }) opt(Some("c"), "confidence model", "", "model file", { path: String => if (path equalsIgnoreCase "None") { settings.confidenceModelUrl = None } else { val file = new File(path) require(file.exists, "file does not exist: " + path) settings.confidenceModelUrl = Some(file.toURI.toURL) } }) opt(None, "malt-model", "", "malt model file", { path: String => settings.maltModelFile = Some(new File(path)) }) opt("h", "help", "usage information", { settings.showUsage = true }) doubleOpt(Some("t"), "threshold", "", "confidence threshold for Ollie extractor", { t: Double => settings.confidenceThreshold = t }) doubleOpt(None, "openparse-threshold", "", "confidence threshold for OpenParse component", { t: Double => settings.openparseConfidenceThreshold = t }) opt("p", "parallel", "execute in parallel", { settings.parallel = true }) opt("s", "split", "split text into sentences", { settings.splitInput = true }) opt("dependencies", "input is serialized dependency graphs (don't parse)", { settings.parseInput = false }) opt("output-format", "specify output format from {interactive, tabbed, tabbedsingle, serialized}", { s: String => settings.outputFormat = OutputFormat.parse(s) }) opt("ignore-errors", "ignore errors", { settings.invincible = true }) opt("usage", "this usage message", { settings.showUsage = true }) } if (argumentParser.parse(args)) { require(!(settings.splitInput && !settings.parseInput), "options 'split' and 'dependencies' are not compatible.") if (settings.showUsage) { println() println("Ollie takes sentences as input, one per line.") println("The response is \"confidence: extraction\", one extraction per line.") println(argumentParser.usage) } else { try { run(settings) } catch { case e: MalformedInputException => System.err.println("\nError: a MalformedInputException was thrown.\nThis usually means there is a mismatch between what Ollie expects and the input file. Try changing the input file's character encoding to UTF-8 or specifying the correct character encoding for the input file with '--encoding'.\n") e.printStackTrace() } } } } def run(settings: Settings) = { System.err.println("Loading parser models... ") val parser = Timing.timeThen { if (settings.parseInput) { settings.maltModelFile match { case None => Some(new MaltParser()) case Some(file) => Some(new MaltParser(file)) } } else None } { ns => System.err.println(Timing.Seconds.format(ns)) } System.err.print("Loading ollie models... ") val ollieExtractor = Timing.timeThen { val configuration = new OpenParse.Configuration( confidenceThreshold = settings.openparseConfidenceThreshold) val openparse = OpenParse.fromModelUrl(settings.modelUrl, configuration) new Ollie(openparse) } { ns => System.err.println(Timing.Seconds.format(ns)) } System.err.print("Loading ollie confidence function... ") val confFunction = Timing.timeThen { settings.confidenceModelUrl.map(url => OllieConfidenceFunction.fromUrl(OllieFeatureSet, url)) } { ns => System.err.println(Timing.Seconds.format(ns)) } val sentencer = if (settings.splitInput) { System.err.println("Prose input split by OpenNlpSentencer."); Some(new OpenNlpSentencer()) } else { if (settings.inputFiles.isDefined) { System.err.println() System.err.println("WARNING: Each line is expected to be a unique sentence.") System.err.println("If you want prose to be split into sentences, restart Ollie with --prose.") } None } using(settings.outputFile match { case Some(output) => new PrintWriter(output, settings.encoding) case None => new PrintWriter(new OutputStreamWriter(System.out, settings.encoding)) }) { writer => // print headers for output settings.outputFormat.header match { case Some(header) => writer.println(header) case None => } // process a source and output extractions def processSource(source: Source) { val ns = Timing.time { // print prompt if standard input if (!settings.inputFiles.isDefined) { System.out.print("> ") System.out.flush() } val lines = parseLines(source.getLines, sentencer) filter (!_.isEmpty) // group the lines so we can parallelize val grouped = if (settings.parallel) lines.grouped(CHUNK_SIZE) else lines.map(Seq(_)) for (group <- grouped) { // potentially transform to a parallel collection val sentences = if (settings.parallel) group.par else group for (sentence <- sentences) { try { if (settings.outputFormat == InteractiveFormat) { writer.println(sentence) writer.flush() } // parse the sentence val graph = parser.map(_.dependencyGraph(sentence)).getOrElse(DependencyGraph.deserialize(sentence)) // extract sentence and compute confidence val extrs = ollieExtractor.extract(graph).iterator.map(extr => (confFunction.map(_.getConf(extr)).getOrElse(0.0), extr)) extrs match { case it if it.isEmpty && settings.outputFormat == InteractiveFormat => writer.println("No extractions found.") case it if it.isEmpty => case extrs => (extrs filter (_._1 >= settings.confidenceThreshold)).toList.sortBy(-_._1).foreach { case (conf, e) => writer.println(settings.outputFormat.format(conf, e)) writer.flush() } } if (settings.outputFormat == InteractiveFormat) { writer.println() writer.flush() } } catch { case e: Exception if settings.invincible => e.printStackTrace } } // print prompt if standard input if (!settings.inputFiles.isDefined) { System.out.print("> ") System.out.flush() } } } System.err.println() System.err.println("Completed in " + Timing.Seconds.format(ns) + " seconds") } settings.inputFiles match { // single file case Some(Seq(file)) => System.err.println("\nRunning extractor on " + file + "...") using (Source.fromFile(file, settings.encoding)) { source => processSource(source) } // multiple files case Some(files) => System.err.println("\nRunning extractor on multiple files...") val ns = Timing.time { for ((file, i) <- files.iterator.zipWithIndex) { System.err.println("Processing file " + file + " (" + (i+1) + "/" + files.size + ")...") System.err.println() using(Source.fromFile(file, settings.encoding)) { source => processSource(source) } } } System.err.println("All files completed in " + Timing.Seconds.format(ns) + " seconds") // standard input case None => System.err.println("\nRunning extractor on standard input...") processSource(Source.fromInputStream(System.in, settings.encoding)) } } } def parseLines(lines: Iterator[String], sentencer: Option[Segmenter]) = { sentencer match { case None => lines case Some(sentencer) => new SentenceIterator(sentencer, lines.buffered) } } } ================================================ FILE: app/src/main/scala/edu/knowitall/ollie/SentenceIterator.scala ================================================ package edu.knowitall.ollie import edu.knowitall.tool.segment.Segmenter class SentenceIterator(sentencer: Segmenter, private var lines: BufferedIterator[String]) extends Iterator[String] { var sentences: Iterator[String] = Iterator.empty lines.dropWhile(_.trim.isEmpty) def nextSentences = { val (paragraph, rest) = lines.span(!_.trim.isEmpty) lines = rest.dropWhile(_.trim.isEmpty).buffered sentencer.segmentTexts(paragraph.mkString(" ")).iterator.buffered } def hasNext: Boolean = { if (sentences.hasNext) { true } else if (!lines.hasNext) { false } else { sentences = nextSentences sentences.hasNext } } def next: String = { if (sentences.hasNext) { sentences.next() } else { sentences = nextSentences sentences.next() } } } ================================================ FILE: app/src/main/scala/edu/knowitall/openparse/OpenParseCli.scala ================================================ package edu.knowitall.openparse import java.io.{PrintWriter, File} import java.net.URL import scala.collection.Set import scala.io.Source import org.slf4j.LoggerFactory import edu.knowitall.collection.immutable.graph.pattern.Match import edu.knowitall.collection.immutable.graph.Graph import edu.knowitall.common.Resource.using import edu.knowitall.common.Timing import edu.knowitall.tool.parse.MaltParser import edu.knowitall.openparse.OpenParse.validMatch import edu.knowitall.openparse.extract.{TemplateExtractor, PatternExtractorType, PatternExtractor, GeneralExtractor, Extraction, DetailedExtraction} import edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph} import scopt.OptionParser object OpenParseCli { val logger = LoggerFactory.getLogger(this.getClass) abstract class Settings { def modelUrl: URL def outputFile: Option[File] def sentenceFile: File def confidenceThreshold: Double def expandArguments: Boolean def verbose: Boolean def parallel: Boolean def invincible: Boolean } def main(args: Array[String]) { object settings extends Settings { var modelUrl: URL = OpenParse.defaultModelUrl var outputFile: Option[File] = None var sentenceFile: File = null var confidenceThreshold = 0.0; var expandArguments: Boolean = true var verbose: Boolean = false var parallel: Boolean = false var invincible: Boolean = false } val parser = new OptionParser("openparse-cli") { arg("sentences", "sentence file", { path: String => val file = new File(path) require(file.exists, "file does not exist: " + path) settings.sentenceFile = file }) opt(Some("m"), "model", "", "model file", { path: String => val file = new File(path) require(file.exists, "file does not exist: " + path) settings.modelUrl = file.toURI.toURL }) doubleOpt(Some("t"), "threshold", "", "confident threshold for shown extractions", { t: Double => settings.confidenceThreshold = t }) opt("o", "output", "output file (otherwise stdout)", { path => settings.outputFile = Some(new File(path)) }) opt("x", "expand-arguments", "expand extraction arguments", { settings.expandArguments = true }) opt("v", "verbose", "", { settings.verbose = true }) opt("p", "parallel", "", { settings.parallel = true }) opt("invincible", "", { settings.invincible = true }) } if (parser.parse(args)) { logger.info("args: " + args.mkString(" ")) run(settings) } } def run(settings: Settings) { val parser = new MaltParser def parse(line: String): Option[DependencyGraph] = { Some(parser.dependencyGraph(line)) } val other = new OpenParse.Settings { var modelUrl = settings.modelUrl var outputFile = settings.outputFile var sentenceFile = settings.sentenceFile var confidenceThreshold = settings.confidenceThreshold val duplicates = false var expandArguments = settings.expandArguments val showAll = false var verbose = settings.verbose val collapseVB = false var parallel = settings.parallel var invincible = settings.invincible } OpenParse.run(other, parse) } } ================================================ FILE: app/src/main/scala/edu/knowitall/openparse/OpenParseGui.scala ================================================ package edu.knowitall.openparse import java.awt.Cursor import java.awt.Dimension import java.io.File import java.net.URL import scala.collection.SortedSet import scala.io.Source import scala.swing.Action import scala.swing.BorderPanel import scala.swing.BorderPanel.Position.Center import scala.swing.BorderPanel.Position.East import scala.swing.BorderPanel.Position.North import scala.swing.BoxPanel import scala.swing.Button import scala.swing.ButtonGroup import scala.swing.CheckMenuItem import scala.swing.Component import scala.swing.Dialog import scala.swing.FileChooser import scala.swing.FileChooser.Result import scala.swing.Label import scala.swing.ListView import scala.swing.MainFrame import scala.swing.Menu import scala.swing.MenuBar import scala.swing.MenuItem import scala.swing.Orientation import scala.swing.RadioMenuItem import scala.swing.ScrollPane import scala.swing.Separator import scala.swing.SimpleSwingApplication import scala.swing.Slider import scala.swing.Swing import scala.swing.TextField import scala.swing.event.ButtonClicked import scala.swing.event.SelectionChanged import scala.swing.event.ValueChanged import scala.util.control.Exception.catching import org.apache.batik.swing.JSVGCanvas import org.apache.batik.swing.svg.JSVGComponent import edu.knowitall.common.Resource.using import edu.knowitall.common.Timing.Seconds import edu.knowitall.common.Timing.time import edu.knowitall.openparse.eval.Score import edu.knowitall.openparse.extract.Extraction import edu.knowitall.openparse.extract.PatternExtractorType import edu.knowitall.openparse.gui.Dot import edu.knowitall.openparse.gui.ExtractionEntry import edu.knowitall.openparse.gui.Parser import edu.knowitall.openparse.gui.Parser.ParserEnum import edu.knowitall.openparse.gui.Sentence import edu.knowitall.tool.parse.DependencyParser import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.tool.parse.graph.DependencyGraph.SerializationException import edu.knowitall.tool.parse.graph.DependencyGraph.deserialize import edu.knowitall.tool.parse.graph.DependencyNode import scopt.OptionParser import edu.knowitall.ollie.DependencyGraphExtras import scala.swing.event.KeyPressed import scala.swing.event.Key import scala.swing.event.KeyReleased import edu.knowitall.openparse.eval.GoldSet object OpenParseGui extends SimpleSwingApplication { /** Which parser we are using. */ var parser: Option[(Parser.ParserEnum, DependencyParser)] = None /** Which extractor we are using. */ var extractor: Option[OpenParse] = None /** Which graph is presently being used. */ var current: Option[DependencyGraph] = None /** A gold set of annotations. */ var gold: Map[String, Boolean] = Map.empty /** Which sentences are associated with the slider bar. */ var sentences: Seq[Sentence] = Seq.empty /** The present sentence index. */ var sentenceIndex = 0; /** What to perform on a node click in the graph. */ var nodeClickEvent: String=>Unit = (nodeText: String) => Unit object Settings { var rawMatches = false var graphvizFile: Option[File] = None // use PATH by default var modelUrl: URL = OpenParse.defaultModelUrl var sentenceFile: Option[File] = None var confidenceThreshold: Double = 0.0 var goldFile: Option[File] = None def configuration = new OpenParse.Configuration(confidenceThreshold = this.confidenceThreshold, collapseGraph = false) } object Elements { val scrollBar = new Slider() { orientation = Orientation.Horizontal value = 0 min = 0 max = 0 majorTickSpacing = 1 enabled = false def adjust() = { if (sentences.size > 1) { min = 0 max = sentences.size - 1 this.enabled = true } else { value = 0 min = 0 max = 0 this.enabled = false } } } } override def main(args: Array[String]) = { val parser = new OptionParser("openparse-gui") { opt(Some("i"), "input", "", "input file", { v: String => Settings.sentenceFile = Some(new File(v)) }) opt(Some("m"), "model", "", "model file", { v: String => Settings.modelUrl = new File(v).toURI.toURL }) doubleOpt(Some("t"), "threshold", "", "confident threshold for shown extractions", { t: Double => Settings.confidenceThreshold = t }) opt(Some("g"), "gold", "", "gold set", { v: String => Settings.goldFile = Some(new File(v)) }) opt(None, "graphviz", "", "path to graphviz", { v: String => Settings.graphvizFile = Some(new File(v)) }) } if (parser.parse(args)) { extractor = Some(OpenParse.fromModelUrl(Settings.modelUrl, Settings.configuration)) Settings.goldFile.foreach { goldFile => gold = GoldSet.load(goldFile) } Settings.sentenceFile.foreach { sentenceFile => loadSentences(sentenceFile) } super.main(args) } } /** Helper to pop up a dialog to find a file. */ def choose(default: Option[File] = None): Option[File] = { import FileChooser.Result val chooser = new FileChooser default.map(chooser.selectedFile = _) chooser.showOpenDialog(null) match { case Result.Approve => Option(chooser.selectedFile) case Result.Cancel | Result.Error => None } } def chooseSave(default: Option[File] = None): Option[File] = { import FileChooser.Result val chooser = new FileChooser default.map(chooser.selectedFile = _) chooser.showSaveDialog(null) match { case Result.Approve => Option(chooser.selectedFile) case Result.Cancel | Result.Error => None } } def loadParser(parserType: ParserEnum): Unit = parser = Some(Parser.load(parserType)) def loadParserIfNone(): Unit = parser match { case Some(parser) => // nothing case None => loadParser(Parser.default) } def readSentences(file: File): Array[Sentence] = { import DependencyGraph._ // read the sentences using (Source.fromFile(file)) { source => val lines = source.getLines.buffered val parts = lines.head.split("\t") // check if any part is deserializable val graphIndex = parts.iterator.indexWhere { column => catching(classOf[SerializationException]).opt { deserialize(column).collapse }.isDefined } lines.map { line => val parts = line.split("\t") if (graphIndex != -1) { Sentence.Graph(deserialize(parts(graphIndex)).collapse) } else { Sentence.Text(parts(0)) } }.toArray } } def loadSentences(): Boolean = { choose(Settings.sentenceFile) map { file => Settings.sentenceFile = Some(file) loadSentences(Settings.sentenceFile.get) } match { case Some(_) => true case None => false } } def loadSentences(file: File) = { this.sentences = readSentences(file) sentenceIndex = 0 Elements.scrollBar.value = 0 Elements.scrollBar.adjust() } def loadExtractor(extractorType: Option[PatternExtractorType]) = { extractor = None } def top: MainFrame = new MainFrame { title = "OpenParse Explorer" minimumSize = new Dimension(400, 200) // helper methods def withCursor(c: java.awt.Cursor)(block: => Unit) = try { cursor = c block } finally { cursor = Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR) } def withWaitCursor = withCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)) _ def orReport(block: =>Unit) = try { block } catch { case e => e.printStackTrace; Dialog.showMessage(message = e.toString) } def andReport(block: =>Unit) = try { block } catch { case e => Dialog.showMessage(message = e.toString); throw e } // important ui elements val button = new Button { text = "Process" } val field = new TextField val extractionList = new ListView[ExtractionEntry]() { listenTo(keys) reactions += { case KeyPressed(_, Key.Equals, _, _) if this.selection.items.size > 0 => val selection = this.selection.items(0) val item = selection.toString.dropWhile(_ != '(') gold += item -> true this.listData = this.listData.map { case item if item == selection => item.annotate(true) case other => other } case KeyReleased(_, Key.Minus, _, _) if this.selection.items.size > 0 => val selection = this.selection.items(0) val item = selection.toString.dropWhile(_ != '(') gold += item -> false this.listData = this.listData.map { case item if item == selection => item.annotate(false) case other => other } case KeyReleased(_, Key.Space, _, _) if this.selection.items.size > 0 => val selection = this.selection.items(0) val item = selection.toString.dropWhile(_ != '(') gold += item -> false this.listData = this.listData.map { case item if item == selection => item.unannotate case other => other } } } val label = new Label() this.defaultButton = button def updateDocument(dgraph: DependencyGraph, dot: String) { val svg = Dot.dot2svg(Settings.graphvizFile, dot) val doc = Dot.svg2xml(svg, nodeClickEvent) canvas.setDocument(doc) OpenParseGui.current = Some(dgraph) } def updateDocument(dgraph: DependencyGraph, extr: ExtractionEntry) { val entry = extractionList.selection.items(0) val dot = Dot.dotgraph(dgraph, entry) updateDocument(dgraph, dot) } def updateDocument(dgraph: DependencyGraph, nodes: Set[DependencyNode]) { val dot = Dot.dotgraph(dgraph, nodes) updateDocument(dgraph, dot) } def updateDocument(dgraph: DependencyGraph) { updateDocument(Sentence.Graph(dgraph)) } def updateDocument(sentence: Sentence) { field.text = sentence.toString val (parseTime, dgraph) = time(parse(sentence)) val (extractTime, extractions) = time(extract(dgraph)) extractionList.listData = extractions val dot = dgraph.dot("\\n"+dgraph.text) updateDocument(dgraph, dot) label.text = sentence match { case Sentence.Graph(_) => "Input contains dependency graph. Sentence will not be reparsed." case Sentence.Text(_) => parser.map("Parsed using '"+_._2.getClass.getSimpleName+"' in "+Seconds.format(parseTime)+". ").getOrElse { "No parsers selected." } + "Extracted in "+Seconds.format(extractTime)+"." } } val canvas = new JSVGCanvas canvas.setDocumentState(JSVGComponent.ALWAYS_DYNAMIC) // menu definition def menu = { def parserMenuItem(parserType: ParserEnum) = { new RadioMenuItem(parserType.toString) { this.selected = Parser.default == parserType action = Action(this.text) { withWaitCursor { andReport { loadParser(parserType) this.selected = true } } } } } def expandMenuItem(display: String, expand: (DependencyGraph,DependencyNode)=>SortedSet[DependencyNode]) = { new RadioMenuItem(display) { action = Action(display) { nodeClickEvent = (nodeText: String) => { current.map { dgraph => withWaitCursor { dgraph.nodes.find(_.toFullString.startsWith(nodeText)) match { case Some(node) => updateDocument(dgraph, expand(dgraph, node).toSet) case None => System.err.println("error: node not found: " + nodeText) } } } } } } } new MenuBar { val parserOptions = Parser.values.map(parserMenuItem(_)).toList val expandOptions = List(expandMenuItem("Expand Argument", (dgraph: DependencyGraph, node: DependencyNode)=> Extraction.expandArgument(dgraph, node, Set())), expandMenuItem("Expand Relation", (dgraph: DependencyGraph, node: DependencyNode)=> Extraction.expandRelation(dgraph, node, Set()).head.nodes)) val parserMutex = new ButtonGroup(parserOptions: _*) val expandMutex = new ButtonGroup(expandOptions: _*) contents += new Menu("File") { contents += new MenuItem(Action("Load gold set...") { withWaitCursor { choose(Settings.goldFile) match { case Some(file) => gold = GoldSet.load(file) extractionList.listData = extractionList.listData.map(entry => entry.copy(correct = gold.get(entry.string))) case None => } } }) contents += new MenuItem(Action("Save gold set...") { withWaitCursor { chooseSave(Settings.goldFile) match { case Some(file) => GoldSet.save(gold, file) case None => } } }) contents += new Separator() contents += new MenuItem(Action("Search Sentences...") { withWaitCursor { val query = Dialog.showInput(null, message="Enter the sentence text to search for.", title="Search Sentences", Dialog.Message.Plain, Swing.EmptyIcon, Seq(), "") query match { case Some(query) => val index = sentences.indexWhere { case Sentence.Text(s) => s.contains(query) case Sentence.Graph(g) => g.text.contains(query) } if (index >= 0) { sentenceIndex = index Elements.scrollBar.value = index updateDocument(sentences(index)) } case None => label.text = "No results found." } } }) contents += new MenuItem(Action("Next Extraction...") { withWaitCursor { sentences.zipWithIndex.drop(sentenceIndex).foreach { case (sentence, index) => val dgraph = parse(sentence) val extractions = extract(dgraph) if (extractions.size > 0) { sentenceIndex = index Elements.scrollBar.value = index Elements.scrollBar.adjust() updateDocument(dgraph) } } } }) contents += new Separator() contents += new MenuItem(Action("Load Sentences...") { withWaitCursor { if (loadSentences()) { Elements.scrollBar.adjust() sentences.headOption.map(updateDocument) } } }) contents += new MenuItem(Action("Clear Sentences...") { sentences = Seq.empty Elements.scrollBar.adjust }) contents += new Separator() contents += new MenuItem(Action("Exit") { exit() }) } contents += new Menu("Options") { contents += new CheckMenuItem("Raw Matches") { selected = Settings.rawMatches action = Action("Raw Matches") { if (this.selected) { Settings.rawMatches = true } else { Settings.rawMatches = false } } } contents += new MenuItem(Action("Switch Voice") { current.flatMap(dgraph => new DependencyGraphExtras(dgraph).switchVoice.headOption).foreach { dgraph => updateDocument(dgraph) } }) contents += new Menu("Parser") { contents ++= parserOptions } contents += new Menu("Click") { contents ++= expandOptions } contents += new Separator() contents += new MenuItem(Action("Load default model") { extractor = Some(OpenParse.fromModelUrl(OpenParse.defaultModelUrl)) }) contents += new MenuItem(Action("Load model...") { choose(None) map { file => extractor = Some(OpenParse.fromModelFile(file)) } }) } } } // user interface val ui = new BorderPanel() { import BorderPanel.Position._ val panel = new BoxPanel(Orientation.Vertical) { val input = new BorderPanel { layout(field) = Center layout(button) = East } contents += input contents += Swing.VStrut(10) contents += label contents += Swing.VStrut(10) contents += Elements.scrollBar contents += Swing.VStrut(5) } layout(panel) = North val display = new BoxPanel(Orientation.Horizontal) { contents += new ScrollPane { minimumSize = new Dimension(0, Int.MaxValue) maximumSize = new Dimension(200, Int.MaxValue) contents = extractionList } contents += new Component { override lazy val peer = canvas } } layout(display) = Center listenTo(button) listenTo(extractionList.selection) listenTo(Elements.scrollBar) reactions += { case ButtonClicked(b) => withWaitCursor { if (field.text.trim.length > 0) { val sentence = Sentence(field.text) // update state if (sentences.isEmpty || sentence != sentences(sentenceIndex)) { sentences = sentences.take(sentenceIndex + 1) :+ sentence } Elements.scrollBar.adjust sentenceIndex = Elements.scrollBar.max Elements.scrollBar.value = Elements.scrollBar.max updateDocument(sentence) } } case SelectionChanged(`extractionList`) => { if (extractionList.listData.size > 0) { if (extractionList.selection.items.size > 0) { withWaitCursor { current.map { dgraph => updateDocument(dgraph, extractionList.selection.items(0)) } } } } } case ValueChanged(Elements.scrollBar) => if (sentenceIndex != Elements.scrollBar.value) { withWaitCursor { if (sentences.indices.contains(Elements.scrollBar.value)) { sentenceIndex = Elements.scrollBar.value try { updateDocument(sentences(sentenceIndex)) } catch { case e => e.printStackTrace } } } } } } contents = ui menuBar = menu } def parse(sentence: Sentence) = { sentence match { case Sentence.Text(text) => loadParserIfNone() val dgraph = parser.get._2.dependencyGraph(text).collapse extractor.map(_.simplifyGraph _) match { case Some(f) => f(dgraph) case None => dgraph } case Sentence.Graph(dgraph) => dgraph } } def extract(dgraph: DependencyGraph) = { extractor.map { extractor => if (!Settings.rawMatches) { val extractions = for { (conf, extr) <- extractor.extract(dgraph) } yield { new ExtractionEntry(conf, extr, parser.map(_._1).getOrElse(Parser.Deserialize), gold.get(extr.toString)) } extractions.sortBy(_.confidence).reverse } else { val extractions = for { ex <- extractor.extractors m <- ex.pattern(dgraph.graph) } yield { ExtractionEntry(None, m, m.nodes.toSet, ex, parser.map(_._1).getOrElse(Parser.Deserialize), m.nodes.iterator.map(_.string).mkString(" "), None) } extractions.sortBy(_.confidence).reverse } }.getOrElse(Seq.empty) } def exit() { System.exit(0) } } ================================================ FILE: app/src/main/scala/edu/knowitall/openparse/gui/Dot.scala ================================================ package edu.knowitall.openparse.gui import edu.knowitall.openparse.extract.TemplateExtractor import edu.knowitall.common.Resource.using import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.tool.parse.graph.DependencyNode import java.io.IOException import scala.swing.Dialog import scala.io.Source import java.io.InputStream import java.io.OutputStream import java.io.PrintWriter import java.io.File /** Code pertaining to rendering and converting DOT graphs. */ object Dot { def dot2svg(graphvizFile: Option[File], dotgraph: String) = { import sys.process.ProcessIO trait InputHandler[A] { def handle(a: A)(input: OutputStream) } trait OutputHandler[A] { def handle(output: InputStream) def value: A } val errHandler = new OutputHandler[String] { var value: String = null def handle(out: InputStream) { value = Source.fromInputStream(out).mkString out.close() } } val inputHandler = new InputHandler[String] { def handle(a: String)(os: OutputStream) { val pw = new PrintWriter(os) pw write a pw.close() } } val outputHandler = new OutputHandler[String] { var value: String = null def handle(out: InputStream) { value = Source.fromInputStream(out).mkString out.close() } } val io = new ProcessIO(inputHandler.handle(dotgraph), outputHandler.handle, errHandler.handle, false) val process = graphvizFile match { case Some(file) => sys.process.Process(file.getAbsolutePath, Seq("-T", "svg")) case None => sys.process.Process("dot", Seq("-T", "svg")) } val proc = try (process run io) catch { case e: IOException => Dialog.showMessage(message = e.getMessage() + ". You may need to install graphviz and add it to the PATH variable, or specify the path to the dot program using the '--graphviz' argument.", messageType = Dialog.Message.Error) throw e } proc.exitValue() match { case 0 => outputHandler.value case x => sys.error("Dot exited with error code: " + x + " with output:\n" + errHandler.value) } } def svg2xml(svgString: String, nodeClickEvent: String=>Unit) = { import org.apache.batik.dom.svg.SVGDOMImplementation; import org.apache.batik.util.XMLResourceDescriptor import org.apache.batik.dom.svg.SAXSVGDocumentFactory val uri = SVGDOMImplementation.SVG_NAMESPACE_URI; val doc = using(new java.io.StringReader(svgString)) { reader => val parser = XMLResourceDescriptor.getXMLParserClassName(); val f = new SAXSVGDocumentFactory(parser); f.createSVGDocument(uri, reader); } val gs = doc.getElementsByTagNameNS(uri, "g") for (i <- 0 until gs.getLength) { val g = gs.item(i) val attributes = g.getAttributes val clazz = attributes.getNamedItem("class").getNodeValue if (clazz == "node") { val children = g.getChildNodes for (j <- 0 until children.getLength) { val child = children.item(j) if (child.getNodeName == "title") { val text = child.getFirstChild.getNodeValue import org.w3c.dom.events._ g.asInstanceOf[EventTarget].addEventListener("click", new EventListener() { def handleEvent(e: Event) { nodeClickEvent(text) } }, true); } } } } doc } def dotgraph(dgraph: DependencyGraph, nodes: Set[DependencyNode]) = { val nodeStyle = nodes.map((_, "style=filled,color=lightblue")) dgraph.dot(dgraph.text, nodeStyle.toMap, Map.empty) } def dotgraph(dgraph: DependencyGraph, extraction: ExtractionEntry) = { def originalNodes(nodes: Iterable[DependencyNode]) = nodes.map { node => dgraph.nodes.find(_.indices == node.indices).get } val title = "\\n" + dgraph.text + "\\n" + extraction.toString + "\\n" + extraction.`match`.pattern.toStringF((s: String) => if (s.length < 60) s else s.take(20) + "...") + (extraction.extractor match { case ex: TemplateExtractor => "\\n" + ex.template case _ => "" }) // nodes val darkNodes = extraction.`match`.nodeGroups val lightNodes = originalNodes(extraction.nodes).toSet -- originalNodes(darkNodes.map(_._2.node)) val filledNodes = (lightNodes zip Stream.continually("style=filled,fillcolor=lightgray")) ++ (darkNodes.map { nodeGroup => val style = "style=filled,fillcolor=" + (nodeGroup._1 match { case "rel" => "salmon1" case "arg1" | "arg2" => "lightblue" case "slot0" | "slot1" | "slot2" | "slot3" => "seashell" case _ => "yellow" }) (nodeGroup._2.node, style) }) // edges val solidEdges = extraction.edges.toSet val nodeStyle = filledNodes val edgeStyle = (solidEdges zip Stream.continually("style=filled")) ++ ((dgraph.graph.edges.toSet -- solidEdges.toSet) zip Stream.continually("style=dotted,color=gray")) dgraph.dot(title, nodeStyle.toMap, edgeStyle.toMap) } } ================================================ FILE: app/src/main/scala/edu/knowitall/openparse/gui/ExtractionEntry.scala ================================================ package edu.knowitall.openparse.gui import edu.knowitall.collection.immutable.graph.pattern.Match import edu.knowitall.tool.parse.graph.DependencyNode import edu.knowitall.openparse.extract.PatternExtractor import edu.knowitall.openparse.extract.DetailedExtraction /** * A more generic representation of an extraction. * * This is needed to allow for raw matches, which do * not have an arg1, rel, etc. */ case class ExtractionEntry( confidence: Option[Double], `match`: Match[DependencyNode], nodes: Set[DependencyNode], extractor: PatternExtractor, parser: Parser.ParserEnum, string: String = "", correct: Option[Boolean]) { /** * Convenient constructor for instantiating from * an OpenParse extraction. */ def this(confidence: Double, extraction: DetailedExtraction, parser: Parser.ParserEnum, correct: Option[Boolean] = None) = this(Some(confidence), extraction.`match`, extraction.nodes.toSet, extraction.extractor, parser, extraction.toString, correct) def edges = `match`.edges def annotate(correct: Boolean) = this.copy(correct = Some(correct)) def unannotate = this.copy(correct = None) private def goldString = { correct match { case Some(true) => "+ " case Some(false) => "- " case None => "" } } override def toString = confidence.map("%1.4f:" format _).getOrElse("") + goldString + string } ================================================ FILE: app/src/main/scala/edu/knowitall/openparse/gui/Parser.scala ================================================ package edu.knowitall.openparse.gui import edu.knowitall.tool.parse.DependencyParser import edu.knowitall.tool.parse.MaltParser import edu.knowitall.tool.parse.graph.Dependencies import edu.knowitall.tool.parse.graph.DependencyGraph /** An enumerator for parser options */ object Parser extends Enumeration { type ParserEnum = Value val Deserialize = Value("Deserialize") val Stanford = Value("Stanford") val MaltL = Value("Malt (Linear)") val MaltPoly = Value("Malt (Poly)") def default = MaltL def load(parserType: ParserEnum): (ParserEnum, DependencyParser) = parserType match { case Parser.Stanford => (parserType, new edu.knowitall.tool.parse.StanfordParser) case Parser.MaltL => (parserType, new MaltParser()) case Parser.MaltPoly => (parserType, new MaltParser(modelUrl = new java.io.File("engmalt.poly-1.7.mco").toURI.toURL)) case Parser.Deserialize => (parserType, new DependencyParser() { override def dependencies(input: String) = Dependencies.deserialize(input) override def dependencyGraph(input: String) = DependencyGraph.deserialize(input) }) } } ================================================ FILE: app/src/main/scala/edu/knowitall/openparse/gui/Sentence.scala ================================================ package edu.knowitall.openparse.gui import scala.util.control.Exception.catching import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.tool.parse.graph.DependencyGraph.SerializationException import edu.knowitall.tool.parse.graph.DependencyGraph.deserialize /** A representation of the input sentence. */ sealed abstract class Sentence object Sentence { case class Text(text: String) extends Sentence { override def toString = text } case class Graph(dgraph: DependencyGraph) extends Sentence { override def toString = dgraph.serialize } def apply(string: String): Sentence = { import DependencyGraph._ catching(classOf[SerializationException]).opt { deserialize(string) } match { case Some(dgraph) => Graph(dgraph) case None => Text(string) } } } ================================================ FILE: app/src/test/resources/logback-test.xml ================================================ %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n ================================================ FILE: core/build.sbt ================================================ organization := "edu.washington.cs.knowitall.ollie" name := "ollie-core" description := "Wrapper and implementation for extractors of chunked sentences." version := "1.0.4-SNAPSHOT" crossScalaVersions := Seq("2.9.2", "2.10.1") scalaVersion <<= crossScalaVersions { (vs: Seq[String]) => vs.head } libraryDependencies ++= Seq( "edu.washington.cs.knowitall.nlptools" %% "nlptools-core" % "2.4.1", "edu.washington.cs.knowitall.nlptools" %% "nlptools-conf-breeze" % "2.4.1", "edu.washington.cs.knowitall.nlptools" %% "nlptools-stem-morpha" % "2.4.1", "org.slf4j" % "slf4j-api" % "1.7.2", "org.scalaz" %% "scalaz-core" % "7.0.0", "ch.qos.logback" % "logback-classic" % "1.0.9" % "test", "ch.qos.logback" % "logback-core" % "1.0.9" % "test", "junit" % "junit" % "4.11" % "test", "org.specs2" %% "specs2" % "1.12.3" % "test") scalacOptions ++= Seq("-unchecked", "-deprecation") licenses := Seq("Ollie Software License Agreement" -> url("https://raw.github.com/knowitall/ollie/master/LICENSE")) homepage := Some(url("http://ollie.cs.washington.edu")) publishMavenStyle := true resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" publishTo <<= version { (v: String) => val nexus = "https://oss.sonatype.org/" if (v.trim.endsWith("SNAPSHOT")) Some("snapshots" at nexus + "content/repositories/snapshots") else Some("releases" at nexus + "service/local/staging/deploy/maven2") } pomExtra := ( https://github.com/knowitall/ollie scm:git://github.com/knowitall/ollie.git scm:git:git@github.com:knowitall/ollie.git HEAD Michael Schmitz Robert Bart ) ================================================ FILE: core/here.txt ================================================ score conf op-conf yield precision extr enabler attrib sentence dependencies Arg1 Cleanup feature Arg1 comes after arg2 Arg2 comes before Rel Args both start and end with nouns Extr has attribution? Extr has enabledBy? Hyp words near rel If before arg1 and no enabledBy? Noun-Verb-Noun in arg2 OpenParse Confidence Prep in arg2? Prep right after arg2? Prep right before arg1? Rel contains VBD Rel contains VBG Rel contains VBP Rel ends with of Rel head is a communication verb? Rel starts with "be"? Sentence starts with extr? That before rel Vacuous rel+arg2 Verb after arg2? -1.9474 -0.1342 -0.4772 0.1987 0.3096 0.6941 -0.4802 -2.1688 -0.4579 1.304 0.5695 -0.5616 -0.2119 0.6841 -0.4981 0.5545 -0.2275 -0.8676 -0.5553 0.3185 -0.2083 -1.8374 0.2496 1 0.9446846123114957 1.0 0 1.0 (M and N phenotypes; Rather are exhibited by; heterozygotes)[enabler=since both molecules are present] true false Rather , both M and N phenotypes are exhibited by heterozygotes , since both molecules are present . preconj(M_NNP_3_14, both_DT_2_9); cc(M_NNP_3_14, and_CC_4_16); conj(M_NNP_3_14, phenotypes_NNS_6_22); nn(phenotypes_NNS_6_22, N_NNP_5_20); advmod(exhibited_VBN_8_37, Rather_RB_0_0); punct(exhibited_VBN_8_37, ,_,_1_7); nsubjpass(exhibited_VBN_8_37, M_NNP_3_14); auxpass(exhibited_VBN_8_37, are_VBP_7_33); prep(exhibited_VBN_8_37, by_IN_9_47); punct(exhibited_VBN_8_37, ,_,_11_64); advcl(exhibited_VBN_8_37, present_JJ_16_91); punct(exhibited_VBN_8_37, ._._17_99); pobj(by_IN_9_47, heterozygotes_NNS_10_50); det(molecules_NNS_14_77, both_DT_13_72); mark(present_JJ_16_91, since_IN_12_66); nsubj(present_JJ_16_91, molecules_NNS_14_77); cop(present_JJ_16_91, are_VBP_15_87) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.9378010670485936 1.0 2 1.0 (The companies; are followed by; at least three analysts) false false The companies are followed by at least three analysts , and had a minimum five-cent change in actual earnings per share . det(companies_NNS_1_4, The_DT_0_0); nsubjpass(followed_VBN_3_18, companies_NNS_1_4); auxpass(followed_VBN_3_18, are_VBP_2_14); prep(followed_VBN_3_18, by_IN_4_27); punct(followed_VBN_3_18, ,_,_9_54); cc(followed_VBN_3_18, and_CC_10_56); conj(followed_VBN_3_18, had_VBD_11_60); punct(followed_VBN_3_18, ._._21_120); pobj(by_IN_4_27, analysts_NNS_8_45); dep(at_IN_5_30, least_JJS_6_33); quantmod(three_CD_7_39, at_IN_5_30); num(analysts_NNS_8_45, three_CD_7_39); dobj(had_VBD_11_60, change_NN_15_84); det(change_NN_15_84, a_DT_12_64); amod(change_NN_15_84, minimum_JJ_13_66); amod(change_NN_15_84, five-cent_JJ_14_74); prep(change_NN_15_84, in_IN_16_91); pobj(in_IN_16_91, earnings_NNS_18_101); amod(earnings_NNS_18_101, actual_JJ_17_94); prep(earnings_NNS_18_101, per_IN_19_110); pobj(per_IN_19_110, share_NN_20_114) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.9339431602264946 1.0 3 1.0 (he; was called back from; the loan)[enabler=CSKA qualified for the round of 16 of the UEFA Cup 2008] true false After CSKA qualified for the round of 16 of the UEFA Cup 2008 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . pobj(After_IN_0_0, CSKA_NNP_1_6); prep(qualified_VBD_2_11, After_IN_0_0); prep(qualified_VBD_2_11, for_IN_3_21); pobj(for_IN_3_21, round_NN_5_29); det(round_NN_5_29, the_DT_4_25); prep(round_NN_5_29, of_IN_6_35); pobj(of_IN_6_35, 16_CD_7_38); prep(16_CD_7_38, of_IN_8_41); pobj(of_IN_8_41, Cup_NNP_11_53); det(Cup_NNP_11_53, the_DT_9_44); nn(Cup_NNP_11_53, UEFA_NNP_10_48); num(Cup_NNP_11_53, 2008_CD_12_57); advcl(called_VBN_16_71, qualified_VBD_2_11); punct(called_VBN_16_71, ,_,_13_62); nsubjpass(called_VBN_16_71, he_PRP_14_64); auxpass(called_VBN_16_71, was_VBD_15_67); advmod(called_VBN_16_71, back_RB_17_78); prep(called_VBN_16_71, from_IN_18_83); cc(called_VBN_16_71, and_CC_21_97); conj(called_VBN_16_71, registered_VBN_27_122); punct(called_VBN_16_71, ._._32_150); pobj(from_IN_18_83, loan_NN_20_92); det(loan_NN_20_92, the_DT_19_88); pobj(on_IN_22_101, March_NNP_24_107); num(March_NNP_24_107, 12_CD_23_104); num(March_NNP_24_107, 2009_CD_25_113); prep(registered_VBN_27_122, on_IN_22_101); auxpass(registered_VBN_27_122, was_VBD_26_118); prep(registered_VBN_27_122, as_IN_28_133); pobj(as_IN_28_133, player_NN_31_143); det(player_NN_31_143, a_DT_29_136); nn(player_NN_31_143, CSKA_NNP_30_138) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.9323012325715606 0.7345 4 1.0 (they; played locally throughout; the winter of 2004 and the spring of 2005)[enabler=As the band struggled to find support slots on upcoming tours without the help of a booking agent] true false As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.9304226589378597 1.0 5 1.0 (A collection of her art; was displayed by; supporters campaigning to release her) false false A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . det(collection_NN_1_2, A_DT_0_0); prep(collection_NN_1_2, of_IN_2_13); pobj(of_IN_2_13, art_NN_4_20); poss(art_NN_4_20, her_PRP$_3_16); nsubjpass(displayed_VBN_6_28, collection_NN_1_2); auxpass(displayed_VBN_6_28, was_VBD_5_24); prep(displayed_VBN_6_28, at_IN_7_38); prep(displayed_VBN_6_28, by_IN_12_65); punct(displayed_VBN_6_28, ._._18_106); pobj(at_IN_7_38, exhibition_NN_9_44); det(exhibition_NN_9_44, an_DT_8_41); prep(exhibition_NN_9_44, in_IN_10_55); pobj(in_IN_10_55, Tehran_NNP_11_58); pobj(by_IN_12_65, supporters_NNS_13_68); partmod(supporters_NNS_13_68, campaigning_VBG_14_79); xcomp(campaigning_VBG_14_79, release_VB_16_94); aux(release_VB_16_94, to_TO_15_91); dobj(release_VB_16_94, her_PRP_17_102) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.9304226589378597 1.0 6 1.0 (Terry L. Haines; was elected to; the new position of vice president) false false Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . nn(Haines_NNP_2_9, Terry_NNP_0_0); nn(Haines_NNP_2_9, L._NNP_1_6); punct(Haines_NNP_2_9, ,_,_3_16); appos(Haines_NNP_2_9, manager_NN_6_35); punct(Haines_NNP_2_9, ,_,_10_66); advmod(manager_NN_6_35, formerly_RB_4_18); amod(manager_NN_6_35, general_JJ_5_27); prep(manager_NN_6_35, of_IN_7_43); pobj(of_IN_7_43, operations_NNS_9_55); amod(operations_NNS_9_55, Canadian_JJ_8_46); nsubjpass(elected_VBN_12_72, Haines_NNP_2_9); auxpass(elected_VBN_12_72, was_VBD_11_68); prep(elected_VBN_12_72, to_TO_13_80); punct(elected_VBN_12_72, ,_,_20_118); punct(elected_VBN_12_72, ._._29_168); pobj(to_TO_13_80, position_NN_16_91); det(position_NN_16_91, the_DT_14_83); amod(position_NN_16_91, new_JJ_15_87); prep(position_NN_16_91, of_IN_17_100); pobj(of_IN_17_100, president_NN_19_108); nn(president_NN_19_108, vice_NN_18_103); dobj(,_,_20_118, sales_NNS_23_135); nn(sales_NNS_23_135, North_NNP_21_120); nn(sales_NNS_23_135, American_NNP_22_126); punct(sales_NNS_23_135, ,_,_24_141); prep(sales_NNS_23_135, of_IN_25_143); pobj(of_IN_25_143, concern_NN_28_160); det(concern_NN_28_160, this_DT_26_146); nn(concern_NN_28_160, plastics_NNS_27_151) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.9258278797037348 1.0 7 1.0 (he; was involved in; the building of the 145 m long) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.92215545568493 1.0 8 1.0 (The Dynix corporation; was founded in; 1983) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.92215545568493 1.0 9 1.0 (The song; was recorded in; 2003) false false The song was recorded in 2003 , and was supposed to be included on her third album " Still " , eventually released under the title " More " . det(song_NN_1_4, The_DT_0_0); nsubjpass(recorded_VBN_3_13, song_NN_1_4); auxpass(recorded_VBN_3_13, was_VBD_2_9); prep(recorded_VBN_3_13, in_IN_4_22); punct(recorded_VBN_3_13, ,_,_6_30); cc(recorded_VBN_3_13, and_CC_7_32); conj(recorded_VBN_3_13, supposed_VBN_9_40); punct(recorded_VBN_3_13, ._._29_140); pobj(in_IN_4_22, 2003_CD_5_25); auxpass(supposed_VBN_9_40, was_VBD_8_36); xcomp(supposed_VBN_9_40, included_VBN_12_55); punct(supposed_VBN_9_40, ,_,_20_93); dep(supposed_VBN_9_40, released_VBN_22_106); aux(included_VBN_12_55, to_TO_10_49); auxpass(included_VBN_12_55, be_VB_11_52); prep(included_VBN_12_55, on_IN_13_64); pobj(on_IN_13_64, album_NN_16_77); poss(album_NN_16_77, her_PRP$_14_67); amod(album_NN_16_77, third_JJ_15_71); punct(album_NN_16_77, "_''_17_83); advmod(album_NN_16_77, Still_RB_18_85); punct(album_NN_16_77, "_''_19_91); advmod(released_VBN_22_106, eventually_RB_21_95); prep(released_VBN_22_106, under_IN_23_115); pobj(under_IN_23_115, title_NN_25_125); det(title_NN_25_125, the_DT_24_121); dep(title_NN_25_125, More_JJR_27_133); punct(More_JJR_27_133, "_``_26_131); punct(More_JJR_27_133, "_''_28_138) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.920853471440541 1.0 10 1.0 (Such fibers; are specialized in; ways that enable them to make use of a steady energy supply) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.9175510420737124 0.3797 10 0.9090909090909091 (you; learned earlier stimulate; the release of saliva)[enabler=when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx] true false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.9168556659675215 0.9555 11 0.9166666666666666 (The failure in Oakland of the freeway segment; was the deadliest aspect of; the quake)[enabler=although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared] true false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.9555 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.9123282402462873 1.0 12 0.9230769230769231 (Capillaries in the brain , heart , kidneys , and liver; are usually filled to; capacity) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.9116540315027888 1.0 13 0.9285714285714286 (The incidence of malaria; was greatly diminished by; insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans) false false The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.9066414837593882 1.0 14 0.9333333333333333 (Byrom; was born at; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.9066414837593882 1.0 15 0.9375 (Guillermo Billinghurst; was overthrown on; February 4 , 1914) false false Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . nn(Billinghurst_NNP_1_10, Guillermo_NNP_0_0); nsubjpass(overthrown_VBN_3_27, Billinghurst_NNP_1_10); auxpass(overthrown_VBN_3_27, was_VBD_2_23); prep(overthrown_VBN_3_27, on_IN_4_38); punct(overthrown_VBN_3_27, ,_,_9_59); prep(overthrown_VBN_3_27, in_IN_10_61); punct(overthrown_VBN_3_27, ,_,_25_143); cc(overthrown_VBN_3_27, and_CC_26_145); conj(overthrown_VBN_3_27, members_NNS_28_163); punct(overthrown_VBN_3_27, ._._33_194); pobj(on_IN_4_38, February_NNP_5_41); num(February_NNP_5_41, 4_CD_6_50); punct(February_NNP_5_41, ,_,_7_52); num(February_NNP_5_41, 1914_CD_8_54); pobj(in_IN_10_61, coup_NN_13_75); det(coup_NN_13_75, a_DT_11_64); amod(coup_NN_13_75, military_JJ_12_66); partmod(coup_NN_13_75, headed_VBN_14_80); prep(headed_VBN_14_80, by_IN_15_87); pobj(by_IN_15_87, Benavides_NNP_19_107); nn(Benavides_NNP_19_107, colonel_NN_16_90); nn(Benavides_NNP_19_107, Oscar_NNP_17_98); nn(Benavides_NNP_19_107, R._NNP_18_104); punct(Benavides_NNP_19_107, ,_,_20_117); conj(Benavides_NNP_19_107, Javier_NNP_21_119); cc(Benavides_NNP_19_107, and_CC_22_126); conj(Benavides_NNP_19_107, Prado_NNP_24_137); nn(Prado_NNP_24_137, Manuel_NNP_23_130); nn(members_NNS_28_163, conservatives_NNS_27_149); prep(members_NNS_28_163, of_IN_29_171); pobj(of_IN_29_171, Party_NNP_32_188); det(Party_NNP_32_188, the_DT_30_174); nn(Party_NNP_32_188, Civilista_NNP_31_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.9066414837593882 1.0 16 0.9411764705882353 (Junge; was originally drafted in; the 1999 amateur draft) false false Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . nsubjpass(drafted_VBN_3_21, Junge_NNP_0_0); auxpass(drafted_VBN_3_21, was_VBD_1_6); advmod(drafted_VBN_3_21, originally_RB_2_10); prep(drafted_VBN_3_21, by_IN_4_29); prep(drafted_VBN_3_21, in_IN_9_56); cc(drafted_VBN_3_21, and_CC_14_82); conj(drafted_VBN_3_21, traded_VBN_17_95); punct(drafted_VBN_3_21, ._._23_134); pobj(by_IN_4_29, Dodgers_NNP_8_48); det(Dodgers_NNP_8_48, the_DT_5_32); nn(Dodgers_NNP_8_48, Los_NNP_6_36); nn(Dodgers_NNP_8_48, Angeles_NNP_7_40); pobj(in_IN_9_56, draft_NN_13_76); det(draft_NN_13_76, the_DT_10_59); num(draft_NN_13_76, 1999_CD_11_63); amod(draft_NN_13_76, amateur_JJ_12_68); auxpass(traded_VBN_17_95, was_VBD_15_86); advmod(traded_VBN_17_95, then_RB_16_90); prep(traded_VBN_17_95, to_TO_18_102); prt(traded_VBN_17_95, in_IN_22_131); pobj(to_TO_18_102, Phillies_NNP_21_122); det(Phillies_NNP_21_122, the_DT_19_105); nn(Phillies_NNP_21_122, Philadelphia_NNP_20_109) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.9066414837593882 1.0 17 0.9444444444444444 (The Breitling watchmaking company; was founded in; Saint-Imier) false false The Breitling watchmaking company was founded in Saint-Imier , but moved to Grenchen , Canton of Solothurn . det(company_NN_3_26, The_DT_0_0); nn(company_NN_3_26, Breitling_NNP_1_4); nn(company_NN_3_26, watchmaking_NN_2_14); nsubjpass(founded_VBN_5_38, company_NN_3_26); auxpass(founded_VBN_5_38, was_VBD_4_34); prep(founded_VBN_5_38, in_IN_6_46); punct(founded_VBN_5_38, ,_,_8_61); cc(founded_VBN_5_38, but_CC_9_63); conj(founded_VBN_5_38, moved_VBD_10_67); punct(founded_VBN_5_38, ._._17_107); pobj(in_IN_6_46, Saint-Imier_NNP_7_49); prep(moved_VBD_10_67, to_TO_11_73); pobj(to_TO_11_73, Grenchen_NNP_12_76); punct(Grenchen_NNP_12_76, ,_,_13_85); appos(Grenchen_NNP_12_76, Canton_NNP_14_87); prep(Canton_NNP_14_87, of_IN_15_94); pobj(of_IN_15_94, Solothurn_NNP_16_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.9043904093256648 0.7345 18 0.9473684210526315 (Cordis; sold its pacemaker operations two years ago to; Telectronics Holding Ltd. of Australia) false false Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_TO_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); dep(ago_RB_7_47, years_NNS_6_41); pobj(to_TO_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.9043904093256648 0.7345 19 0.95 (He; replaced Jonathan Groff in; the Broadway production of the musical Spring Awakening) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.9043904093256648 0.7345 20 0.9523809523809523 (He; replaced Jonathan Groff in; the lead role of Melchior Gabor) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.9034960676137963 0.7345 21 0.9545454545454546 (Sony Columbia Acquisition Corp.; formed for; the Columbia deal)[attrib=a spokesman said] false true Sony Columbia Acquisition Corp. , formed for the Columbia deal , will formally take ownership of the movie studio later this month , a spokesman said . nn(Corp._NNP_3_26, Sony_NNP_0_0); nn(Corp._NNP_3_26, Columbia_NNP_1_5); nn(Corp._NNP_3_26, Acquisition_NNP_2_14); punct(Corp._NNP_3_26, ,_,_4_32); nsubj(formed_VBD_5_34, Corp._NNP_3_26); prep(formed_VBD_5_34, for_IN_6_41); punct(formed_VBD_5_34, ,_,_10_63); conj(formed_VBD_5_34, take_VB_13_79); pobj(for_IN_6_41, deal_NN_9_58); det(deal_NN_9_58, the_DT_7_45); nn(deal_NN_9_58, Columbia_NNP_8_49); aux(take_VB_13_79, will_MD_11_65); advmod(take_VB_13_79, formally_RB_12_70); dobj(take_VB_13_79, ownership_NN_14_84); tmod(take_VB_13_79, month_NN_21_125); prep(ownership_NN_14_84, of_IN_15_94); pobj(of_IN_15_94, studio_NN_18_107); det(studio_NN_18_107, the_DT_16_97); nn(studio_NN_18_107, movie_NN_17_101); advmod(month_NN_21_125, later_RB_19_114); det(month_NN_21_125, this_DT_20_120); det(spokesman_NN_24_135, a_DT_23_133); ccomp(said_VBD_25_145, formed_VBD_5_34); punct(said_VBD_25_145, ,_,_22_131); nsubj(said_VBD_25_145, spokesman_NN_24_135); punct(said_VBD_25_145, ._._26_150) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.9029376545659042 1.0 22 0.9565217391304348 (The Dynix corporation; was formed by; the merger of the Sirsi and Dynix corporations) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.8982644762089621 0.7345 22 0.9166666666666666 (hybrid sterility; pseudoobscura results from gene interactions among; at least four loci) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8982644762089621 0.7345 23 0.92 (shareholder Max Grill of New York; charged Imperial , its top executives and directors with; breach of fiduciary duty) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8970518314603465 0.7345 24 0.9230769230769231 (the band; struggled without; the help of a booking agent) false false As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8953292670090802 0.9555 25 0.9259259259259259 (Cephalopods; are the only molluscs with; a closed circulatory system which the blood remains separate from fluid in the body cavity) false false Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.9555 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.894287106087327 1.0 26 0.9285714285714286 (Guillermo Billinghurst; was overthrown in; a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado) false false Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . nn(Billinghurst_NNP_1_10, Guillermo_NNP_0_0); nsubjpass(overthrown_VBN_3_27, Billinghurst_NNP_1_10); auxpass(overthrown_VBN_3_27, was_VBD_2_23); prep(overthrown_VBN_3_27, on_IN_4_38); punct(overthrown_VBN_3_27, ,_,_9_59); prep(overthrown_VBN_3_27, in_IN_10_61); punct(overthrown_VBN_3_27, ,_,_25_143); cc(overthrown_VBN_3_27, and_CC_26_145); conj(overthrown_VBN_3_27, members_NNS_28_163); punct(overthrown_VBN_3_27, ._._33_194); pobj(on_IN_4_38, February_NNP_5_41); num(February_NNP_5_41, 4_CD_6_50); punct(February_NNP_5_41, ,_,_7_52); num(February_NNP_5_41, 1914_CD_8_54); pobj(in_IN_10_61, coup_NN_13_75); det(coup_NN_13_75, a_DT_11_64); amod(coup_NN_13_75, military_JJ_12_66); partmod(coup_NN_13_75, headed_VBN_14_80); prep(headed_VBN_14_80, by_IN_15_87); pobj(by_IN_15_87, Benavides_NNP_19_107); nn(Benavides_NNP_19_107, colonel_NN_16_90); nn(Benavides_NNP_19_107, Oscar_NNP_17_98); nn(Benavides_NNP_19_107, R._NNP_18_104); punct(Benavides_NNP_19_107, ,_,_20_117); conj(Benavides_NNP_19_107, Javier_NNP_21_119); cc(Benavides_NNP_19_107, and_CC_22_126); conj(Benavides_NNP_19_107, Prado_NNP_24_137); nn(Prado_NNP_24_137, Manuel_NNP_23_130); nn(members_NNS_28_163, conservatives_NNS_27_149); prep(members_NNS_28_163, of_IN_29_171); pobj(of_IN_29_171, Party_NNP_32_188); det(Party_NNP_32_188, the_DT_30_174); nn(Party_NNP_32_188, Civilista_NNP_31_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.894287106087327 1.0 27 0.9310344827586207 (Lowery; was elected in; a special election to fill the unexpired term of James Eagan) false false Lowery was elected Mayor on Feburay 6th 2001 in a special election to fill the unexpired term of James Eagan . nsubjpass(elected_VBN_2_11, Lowery_NNP_0_0); auxpass(elected_VBN_2_11, was_VBD_1_7); dep(elected_VBN_2_11, 6th_JJ_6_36); prep(elected_VBN_2_11, in_IN_8_45); punct(elected_VBN_2_11, ._._20_109); prep(Mayor_NNP_3_19, on_IN_4_25); pobj(on_IN_4_25, Feburay_NNP_5_28); dep(6th_JJ_6_36, Mayor_NNP_3_19); tmod(6th_JJ_6_36, 2001_CD_7_40); pobj(in_IN_8_45, election_NN_11_58); det(election_NN_11_58, a_DT_9_48); amod(election_NN_11_58, special_JJ_10_50); infmod(election_NN_11_58, fill_VB_13_70); aux(fill_VB_13_70, to_TO_12_67); dobj(fill_VB_13_70, term_NN_16_89); det(term_NN_16_89, the_DT_14_75); amod(term_NN_16_89, unexpired_JJ_15_79); prep(term_NN_16_89, of_IN_17_94); pobj(of_IN_17_94, Eagan_NNP_19_103); nn(Eagan_NNP_19_103, James_NNP_18_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8840751567640979 1.0 28 0.9333333333333333 (Denis C. Smith; was named to; the new post of vice president of world-wide advanced materials operations) false false Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . nn(Smith_NNP_2_9, Denis_NNP_0_0); nn(Smith_NNP_2_9, C._NNP_1_6); nsubjpass(named_VBN_4_19, Smith_NNP_2_9); auxpass(named_VBN_4_19, was_VBD_3_15); prep(named_VBN_4_19, to_TO_5_25); prep(named_VBN_4_19, for_IN_17_103); punct(named_VBN_4_19, ._._21_130); pobj(to_TO_5_25, post_NN_8_36); det(post_NN_8_36, the_DT_6_28); amod(post_NN_8_36, new_JJ_7_32); prep(post_NN_8_36, of_IN_9_41); pobj(of_IN_9_41, president_NN_11_49); nn(president_NN_11_49, vice_NN_10_44); prep(president_NN_11_49, of_IN_12_59); pobj(of_IN_12_59, operations_NNS_16_92); amod(operations_NNS_16_92, world-wide_JJ_13_62); amod(operations_NNS_16_92, advanced_JJ_14_73); nn(operations_NNS_16_92, materials_NNS_15_82); pobj(for_IN_17_103, concern_NN_20_122); det(concern_NN_20_122, this_DT_18_107); nn(concern_NN_20_122, chemicals_NNS_19_112) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8833999973995464 0.3797 29 0.9354838709677419 (it; completed; the previously announced purchase of Imperial Cup Corp.)[attrib=Federal Paper Board Co. said] false true Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.8832630553504159 1.0 29 0.90625 (Denis C. Smith; was named for; this chemicals concern) false false Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . nn(Smith_NNP_2_9, Denis_NNP_0_0); nn(Smith_NNP_2_9, C._NNP_1_6); nsubjpass(named_VBN_4_19, Smith_NNP_2_9); auxpass(named_VBN_4_19, was_VBD_3_15); prep(named_VBN_4_19, to_TO_5_25); prep(named_VBN_4_19, for_IN_17_103); punct(named_VBN_4_19, ._._21_130); pobj(to_TO_5_25, post_NN_8_36); det(post_NN_8_36, the_DT_6_28); amod(post_NN_8_36, new_JJ_7_32); prep(post_NN_8_36, of_IN_9_41); pobj(of_IN_9_41, president_NN_11_49); nn(president_NN_11_49, vice_NN_10_44); prep(president_NN_11_49, of_IN_12_59); pobj(of_IN_12_59, operations_NNS_16_92); amod(operations_NNS_16_92, world-wide_JJ_13_62); amod(operations_NNS_16_92, advanced_JJ_14_73); nn(operations_NNS_16_92, materials_NNS_15_82); pobj(for_IN_17_103, concern_NN_20_122); det(concern_NN_20_122, this_DT_18_107); nn(concern_NN_20_122, chemicals_NNS_19_112) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.8832630553504159 1.0 29 0.8787878787878788 (He; was descended an old aristocratic family from Mecklenburg from; the B low family) false false He was descended from the B low family , an old aristocratic family from Mecklenburg . nsubjpass(descended_VBN_2_7, He_PRP_0_0); auxpass(descended_VBN_2_7, was_VBD_1_3); prep(descended_VBN_2_7, from_IN_3_17); punct(descended_VBN_2_7, ,_,_8_39); dobj(descended_VBN_2_7, family_NN_12_61); punct(descended_VBN_2_7, ._._15_85); pobj(from_IN_3_17, family_NN_7_32); det(family_NN_7_32, the_DT_4_22); nn(family_NN_7_32, B_NNP_5_26); amod(family_NN_7_32, low_JJ_6_28); det(family_NN_12_61, an_DT_9_41); amod(family_NN_12_61, old_JJ_10_44); amod(family_NN_12_61, aristocratic_JJ_11_48); prep(family_NN_12_61, from_IN_13_68); pobj(from_IN_13_68, Mecklenburg_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8832630553504159 1.0 30 0.8823529411764706 (She; was born in; Berkeley) false false She was born April 3 , 1951 in Berkeley , California . nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.8832630553504159 1.0 30 0.8571428571428571 (The Dynix corporation; was formed in; June 2005) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8790036637975921 0.3797 31 0.8611111111111112 (Researchers; placed; identical samples of organic material) false false Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . prep(Researchers_NNS_0_0, with_IN_1_12); pobj(with_IN_1_12, Service_NNP_5_37); det(Service_NNP_5_37, the_DT_2_17); nn(Service_NNP_5_37, Canadian_NNP_3_21); nn(Service_NNP_5_37, Forest_NNP_4_30); nsubj(placed_VBD_6_45, Researchers_NNS_0_0); dobj(placed_VBD_6_45, samples_NNS_8_62); prep(placed_VBD_6_45, on_IN_15_103); punct(placed_VBD_6_45, ._._23_143); amod(samples_NNS_8_62, identical_JJ_7_52); prep(samples_NNS_8_62, of_IN_9_70); dep(samples_NNS_8_62, litter_JJ_13_93); pobj(of_IN_9_70, material_NN_11_81); amod(material_NN_11_81, organic_JJ_10_73); punct(litter_JJ_13_93, --_:_12_90); punct(litter_JJ_13_93, --_:_14_100); pobj(on_IN_15_103, ground_NN_17_110); det(ground_NN_17_110, the_DT_16_106); prep(ground_NN_17_110, in_IN_18_117); pobj(in_IN_18_117, sites_NNS_20_123); num(sites_NNS_20_123, 21_CD_19_120); prep(sites_NNS_20_123, across_IN_21_129); pobj(across_IN_21_129, Canada_NNP_22_136) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.875969090413861 1.0 32 0.8648648648648649 (Drop Trio; was asked by; SugarHill Recording Studios) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.875969090413861 1.0 33 0.868421052631579 (the Australian Black Swan; was introduced as; an ornamental waterfowl) false false In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8738004889069181 0.7345 34 0.8717948717948718 (Italy 's unemployment rate; rose to; 12 % of the labor force) false false Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8730819698845458 0.7345 35 0.875 (Vader; got on; the ring apron to distract him) false false As Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him . pobj(As_IN_0_0, Sid_NNP_1_3); prep(about_IN_3_11, As_IN_0_0); aux(about_IN_3_11, was_VBD_2_7); xcomp(about_IN_3_11, powerbomb_VB_5_20); punct(about_IN_3_11, ._._21_106); aux(powerbomb_VB_5_20, to_TO_4_17); ccomp(powerbomb_VB_5_20, got_VBD_13_68); punct(Vader_NNP_6_30, ,_,_7_36); conj(Vader_NNP_6_30, Cornette_NNP_12_59); possessive(Vader_NNP_8_38, 's_POS_9_44); poss(Cornette_NNP_12_59, Vader_NNP_8_38); nn(Cornette_NNP_12_59, manager_NN_10_47); nn(Cornette_NNP_12_59, Jim_NNP_11_55); nsubj(got_VBD_13_68, Vader_NNP_6_30); prep(got_VBD_13_68, on_IN_14_72); pobj(on_IN_14_72, apron_NN_17_84); det(apron_NN_17_84, the_DT_15_75); nn(apron_NN_17_84, ring_NN_16_79); infmod(apron_NN_17_84, distract_VB_19_93); aux(distract_VB_19_93, to_TO_18_90); dobj(distract_VB_19_93, him_PRP_20_102) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8730819698845458 0.7345 36 0.8780487804878049 (Lenin; dispatched Stalin to; the city of Tsaritsyn) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8730819698845458 0.7345 37 0.8809523809523809 (he; tapped Connor to serve in; the office of the Texas Secretary of State) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8730819698845458 0.7345 38 0.8837209302325582 (he; received a Master of Arts from; Royal Military College of Canada) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8729267550576569 0.7345 39 0.8863636363636364 (He; came in; 1980) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8729267550576569 0.7345 40 0.8888888888888888 (He; died in; Washington) false false He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8729267550576569 0.7345 41 0.8913043478260869 (He; died on; April 10 , 1907) false false He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8729267550576569 0.7345 42 0.8936170212765957 (Italy 's unemployment rate; rose in; April) false false Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8729267550576569 0.7345 43 0.8958333333333334 (The Skeleton King; later merged with; the demon) false false The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . det(King_NNP_2_13, The_DT_0_0); nn(King_NNP_2_13, Skeleton_NNP_1_4); nsubj(merged_VBD_4_24, King_NNP_2_13); advmod(merged_VBD_4_24, later_RB_3_18); prep(merged_VBD_4_24, with_IN_5_31); tmod(merged_VBD_4_24, Dark_NNP_8_46); punct(merged_VBD_4_24, ,_,_10_55); xcomp(merged_VBD_4_24, have_VB_13_65); punct(merged_VBD_4_24, ._._19_104); pobj(with_IN_5_31, demon_NN_7_40); det(demon_NN_7_40, the_DT_6_36); num(Dark_NNP_8_46, One_CD_9_51); advmod(have_VB_13_65, only_RB_11_57); aux(have_VB_13_65, to_TO_12_62); ccomp(have_VB_13_65, decapitated_VBN_15_74); nsubjpass(decapitated_VBN_15_74, him_PRP_14_70); prep(decapitated_VBN_15_74, by_IN_16_86); pobj(by_IN_16_86, Hyperforce_NNP_18_93); det(Hyperforce_NNP_18_93, the_DT_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8729267550576569 0.7345 44 0.8979591836734694 (Turner; also starred in; the film) false false Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8714822869067644 0.3797 45 0.9 (researchers; had to carry out; several rounds of DNA cutting) false false With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . pobj(With_IN_0_0, genome_NN_4_18); predet(genome_NN_4_18, such_PDT_1_5); det(genome_NN_4_18, a_DT_2_10); amod(genome_NN_4_18, large_JJ_3_12); prep(had_VBD_7_39, With_IN_0_0); punct(had_VBD_7_39, ,_,_5_25); nsubj(had_VBD_7_39, researchers_NNS_6_27); xcomp(had_VBD_7_39, carry_VB_9_46); punct(had_VBD_7_39, ,_,_16_86); xcomp(had_VBD_7_39, cloning_VBG_17_88); punct(had_VBD_7_39, ._._22_119); aux(carry_VB_9_46, to_TO_8_43); prt(carry_VB_9_46, out_RP_10_52); dobj(carry_VB_9_46, rounds_NNS_12_64); amod(rounds_NNS_12_64, several_JJ_11_56); prep(rounds_NNS_12_64, of_IN_13_71); pobj(of_IN_13_71, cutting_NN_15_78); nn(cutting_NN_15_78, DNA_NNP_14_74); punct(cloning_VBG_17_88, ,_,_18_96); cc(cloning_VBG_17_88, and_CC_19_98); conj(cloning_VBG_17_88, mapping_NN_21_111); amod(mapping_NN_21_111, physical_JJ_20_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8710640791017942 1.0 46 0.9019607843137255 (A collection of her art; was displayed at; an exhibition) false false A collection of her art was displayed at an exhibition in Tehran by supporters campaigning to release her . det(collection_NN_1_2, A_DT_0_0); prep(collection_NN_1_2, of_IN_2_13); pobj(of_IN_2_13, art_NN_4_20); poss(art_NN_4_20, her_PRP$_3_16); nsubjpass(displayed_VBN_6_28, collection_NN_1_2); auxpass(displayed_VBN_6_28, was_VBD_5_24); prep(displayed_VBN_6_28, at_IN_7_38); prep(displayed_VBN_6_28, by_IN_12_65); punct(displayed_VBN_6_28, ._._18_106); pobj(at_IN_7_38, exhibition_NN_9_44); det(exhibition_NN_9_44, an_DT_8_41); prep(exhibition_NN_9_44, in_IN_10_55); pobj(in_IN_10_55, Tehran_NNP_11_58); pobj(by_IN_12_65, supporters_NNS_13_68); partmod(supporters_NNS_13_68, campaigning_VBG_14_79); xcomp(campaigning_VBG_14_79, release_VB_16_94); aux(release_VB_16_94, to_TO_15_91); dobj(release_VB_16_94, her_PRP_17_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8710640791017942 1.0 47 0.9038461538461539 (The incidence of malaria; was greatly diminished in; the 1960s) false false The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8671726583772422 0.7345 48 0.9056603773584906 (The board; expanded to; 17 seats) false false The board expanded to 17 seats . det(board_NN_1_4, The_DT_0_0); nsubj(expanded_VBD_2_10, board_NN_1_4); prep(expanded_VBD_2_10, to_TO_3_19); punct(expanded_VBD_2_10, ._._6_31); pobj(to_TO_3_19, seats_NNS_5_25); num(seats_NNS_5_25, 17_CD_4_22) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8642529189447961 0.9555 49 0.9074074074074074 (Lakitelek; is a large village in; the Southern Great Plain region of southern Hungary) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8642529189447961 0.9555 50 0.9090909090909091 (North Luffenham; is a village in; the East Midlands of England) false false North Luffenham is a village in Rutland , in the East Midlands of England . nn(Luffenham_NNP_1_6, North_NNP_0_0); nsubj(village_NN_4_21, Luffenham_NNP_1_6); cop(village_NN_4_21, is_VBZ_2_16); det(village_NN_4_21, a_DT_3_19); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_7_40); prep(village_NN_4_21, in_IN_8_42); punct(village_NN_4_21, ._._14_74); pobj(in_IN_5_29, Rutland_NNP_6_32); pobj(in_IN_8_42, Midlands_NNP_11_54); det(Midlands_NNP_11_54, the_DT_9_45); nn(Midlands_NNP_11_54, East_NNP_10_49); prep(Midlands_NNP_11_54, of_IN_12_63); pobj(of_IN_12_63, England_NNP_13_66) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8606381067049523 1.0 51 0.9107142857142857 (his birth; was born at; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.8606381067049523 1.0 51 0.8947368421052632 (SirsiDynix; was founded in; 1983) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.860181709202922 1.0 52 0.896551724137931 (he; was hosted by; an anti-Nazi Protestant family whose children had been required to join the Hitler Youth) false false Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8600422350020404 0.0577 53 0.8983050847457628 (paleontologists; Furthermore have found; fossils of dinosaurs)[enabler=although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy] true false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0577 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.856815426256054 0.7345 54 0.9 (Coca-Cola Enterprises; blamed the lower volume on; its soft-drink prices which were about 3 % higher in the third quarter) false false Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . nn(Enterprises_NNPS_1_10, Coca-Cola_NNP_0_0); nsubj(blamed_VBD_2_22, Enterprises_NNPS_1_10); dobj(blamed_VBD_2_22, volume_NN_5_39); prep(blamed_VBD_2_22, on_IN_6_46); punct(blamed_VBD_2_22, ._._21_122); det(volume_NN_5_39, the_DT_3_29); amod(volume_NN_5_39, lower_JJR_4_33); pobj(on_IN_6_46, prices_NNS_9_64); poss(prices_NNS_9_64, its_PRP$_7_49); nn(prices_NNS_9_64, soft-drink_NN_8_53); punct(prices_NNS_9_64, ,_,_10_71); rcmod(prices_NNS_9_64, higher_JJR_16_94); quantmod(3_CD_14_90, about_IN_13_84); num(%_NN_15_92, 3_CD_14_90); nsubj(higher_JJR_16_94, which_WDT_11_73); cop(higher_JJR_16_94, were_VBD_12_79); measure(higher_JJR_16_94, %_NN_15_92); prep(higher_JJR_16_94, in_IN_17_101); pobj(in_IN_17_101, quarter_NN_20_114); det(quarter_NN_20_114, the_DT_18_104); amod(quarter_NN_20_114, third_JJ_19_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.8566696173564037 1.0 54 0.8852459016393442 (The body of an arthropod; is completely covered an exoskeleton constructed from layers of protein by; the cuticle) false false The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . det(body_NN_1_4, The_DT_0_0); prep(body_NN_1_4, of_IN_2_9); pobj(of_IN_2_9, arthropod_NN_4_15); det(arthropod_NN_4_15, an_DT_3_12); nsubjpass(covered_VBN_7_39, body_NN_1_4); auxpass(covered_VBN_7_39, is_VBZ_5_25); advmod(covered_VBN_7_39, completely_RB_6_28); prep(covered_VBN_7_39, by_IN_8_47); punct(covered_VBN_7_39, ,_,_11_62); dobj(covered_VBN_7_39, exoskeleton_NN_13_67); punct(covered_VBN_7_39, ._._23_144); pobj(by_IN_8_47, cuticle_NN_10_54); det(cuticle_NN_10_54, the_DT_9_50); det(exoskeleton_NN_13_67, an_DT_12_64); partmod(exoskeleton_NN_13_67, constructed_VBN_14_79); cc(exoskeleton_NN_13_67, and_CC_19_114); conj(exoskeleton_NN_13_67, chitin_NN_22_137); prep(constructed_VBN_14_79, from_IN_15_91); pobj(from_IN_15_91, layers_NNS_16_96); prep(layers_NNS_16_96, of_IN_17_103); pobj(of_IN_17_103, protein_NN_18_106); det(chitin_NN_22_137, the_DT_20_118); nn(chitin_NN_22_137, polysaccharide_NN_21_122) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.8566696173564037 1.0 54 0.8709677419354839 (The body of an arthropod; is completely covered the polysaccharide chitin by; the cuticle) false false The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . det(body_NN_1_4, The_DT_0_0); prep(body_NN_1_4, of_IN_2_9); pobj(of_IN_2_9, arthropod_NN_4_15); det(arthropod_NN_4_15, an_DT_3_12); nsubjpass(covered_VBN_7_39, body_NN_1_4); auxpass(covered_VBN_7_39, is_VBZ_5_25); advmod(covered_VBN_7_39, completely_RB_6_28); prep(covered_VBN_7_39, by_IN_8_47); punct(covered_VBN_7_39, ,_,_11_62); dobj(covered_VBN_7_39, exoskeleton_NN_13_67); punct(covered_VBN_7_39, ._._23_144); pobj(by_IN_8_47, cuticle_NN_10_54); det(cuticle_NN_10_54, the_DT_9_50); det(exoskeleton_NN_13_67, an_DT_12_64); partmod(exoskeleton_NN_13_67, constructed_VBN_14_79); cc(exoskeleton_NN_13_67, and_CC_19_114); conj(exoskeleton_NN_13_67, chitin_NN_22_137); prep(constructed_VBN_14_79, from_IN_15_91); pobj(from_IN_15_91, layers_NNS_16_96); prep(layers_NNS_16_96, of_IN_17_103); pobj(of_IN_17_103, protein_NN_18_106); det(chitin_NN_22_137, the_DT_20_118); nn(chitin_NN_22_137, polysaccharide_NN_21_122) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.8566696173564037 1.0 54 0.8571428571428571 (The coldest temperature; be ever recorded in; the city) false false The coldest temperature ever recorded in the city was - 40F , on January 17 , 1982 , also known as Cold Sunday . det(temperature_NN_2_12, The_DT_0_0); amod(temperature_NN_2_12, coldest_JJS_1_4); nsubjpass(recorded_VBN_4_29, temperature_NN_2_12); advmod(recorded_VBN_4_29, ever_RB_3_24); prep(recorded_VBN_4_29, in_IN_5_38); dep(recorded_VBN_4_29, was_VBD_8_50); punct(recorded_VBN_4_29, ._._23_111); pobj(in_IN_5_38, city_NN_7_45); det(city_NN_7_45, the_DT_6_41); punct(was_VBD_8_50, -_:_9_54); dep(was_VBD_8_50, known_VBN_19_90); punct(40F_CD_10_56, ,_,_11_60); prep(40F_CD_10_56, on_IN_12_62); punct(40F_CD_10_56, ,_,_17_83); pobj(on_IN_12_62, January_NNP_13_65); num(January_NNP_13_65, 17_CD_14_73); punct(January_NNP_13_65, ,_,_15_76); appos(January_NNP_13_65, 1982_CD_16_78); nsubjpass(known_VBN_19_90, 40F_CD_10_56); advmod(known_VBN_19_90, also_RB_18_85); prep(known_VBN_19_90, as_IN_20_96); pobj(as_IN_20_96, Sunday_NNP_22_104); amod(Sunday_NNP_22_104, Cold_JJ_21_99) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8550447583474959 0.3797 55 0.859375 (A temperate phage; called; lambda written with the Greek letter) false false A temperate phage called lambda , written with the Greek letter , is widely used in biological research . det(phage_NN_2_12, A_DT_0_0); amod(phage_NN_2_12, temperate_JJ_1_2); nsubj(called_VBD_3_18, phage_NN_2_12); dobj(called_VBD_3_18, lambda_NN_4_25); parataxis(called_VBD_3_18, used_VBN_14_77); punct(called_VBD_3_18, ._._18_105); punct(lambda_NN_4_25, ,_,_5_32); partmod(lambda_NN_4_25, written_VBN_6_34); prep(written_VBN_6_34, with_IN_7_42); pobj(with_IN_7_42, letter_NN_10_57); det(letter_NN_10_57, the_DT_8_47); nn(letter_NN_10_57, Greek_NNP_9_51); punct(used_VBN_14_77, ,_,_11_65); auxpass(used_VBN_14_77, is_VBZ_12_67); advmod(used_VBN_14_77, widely_RB_13_70); prep(used_VBN_14_77, in_IN_15_82); pobj(in_IN_15_82, research_NN_17_96); amod(research_NN_17_96, biological_JJ_16_85) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.8510550448671066 1.0 55 0.8461538461538461 (unreleased; was asked by; SugarHill Recording Studios) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8475390994633406 0.3797 56 0.8484848484848485 (he; led; the invasion of the Philippines) false false As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8472379362949907 1.0 57 0.8507462686567164 (SirsiDynix; was formed by; the merger of the Sirsi and Dynix corporations) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.847056652054492 1.0 58 0.8529411764705882 (Junge; was originally drafted by; the Los Angeles Dodgers) false false Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . nsubjpass(drafted_VBN_3_21, Junge_NNP_0_0); auxpass(drafted_VBN_3_21, was_VBD_1_6); advmod(drafted_VBN_3_21, originally_RB_2_10); prep(drafted_VBN_3_21, by_IN_4_29); prep(drafted_VBN_3_21, in_IN_9_56); cc(drafted_VBN_3_21, and_CC_14_82); conj(drafted_VBN_3_21, traded_VBN_17_95); punct(drafted_VBN_3_21, ._._23_134); pobj(by_IN_4_29, Dodgers_NNP_8_48); det(Dodgers_NNP_8_48, the_DT_5_32); nn(Dodgers_NNP_8_48, Los_NNP_6_36); nn(Dodgers_NNP_8_48, Angeles_NNP_7_40); pobj(in_IN_9_56, draft_NN_13_76); det(draft_NN_13_76, the_DT_10_59); num(draft_NN_13_76, 1999_CD_11_63); amod(draft_NN_13_76, amateur_JJ_12_68); auxpass(traded_VBN_17_95, was_VBD_15_86); advmod(traded_VBN_17_95, then_RB_16_90); prep(traded_VBN_17_95, to_TO_18_102); prt(traded_VBN_17_95, in_IN_22_131); pobj(to_TO_18_102, Phillies_NNP_21_122); det(Phillies_NNP_21_122, the_DT_19_105); nn(Phillies_NNP_21_122, Philadelphia_NNP_20_109) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8462126651811251 1.0 59 0.855072463768116 (he; was registered as; a CSKA player) false false After CSKA qualified for the round of 16 of the UEFA Cup 2008 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . pobj(After_IN_0_0, CSKA_NNP_1_6); prep(qualified_VBD_2_11, After_IN_0_0); prep(qualified_VBD_2_11, for_IN_3_21); pobj(for_IN_3_21, round_NN_5_29); det(round_NN_5_29, the_DT_4_25); prep(round_NN_5_29, of_IN_6_35); pobj(of_IN_6_35, 16_CD_7_38); prep(16_CD_7_38, of_IN_8_41); pobj(of_IN_8_41, Cup_NNP_11_53); det(Cup_NNP_11_53, the_DT_9_44); nn(Cup_NNP_11_53, UEFA_NNP_10_48); num(Cup_NNP_11_53, 2008_CD_12_57); advcl(called_VBN_16_71, qualified_VBD_2_11); punct(called_VBN_16_71, ,_,_13_62); nsubjpass(called_VBN_16_71, he_PRP_14_64); auxpass(called_VBN_16_71, was_VBD_15_67); advmod(called_VBN_16_71, back_RB_17_78); prep(called_VBN_16_71, from_IN_18_83); cc(called_VBN_16_71, and_CC_21_97); conj(called_VBN_16_71, registered_VBN_27_122); punct(called_VBN_16_71, ._._32_150); pobj(from_IN_18_83, loan_NN_20_92); det(loan_NN_20_92, the_DT_19_88); pobj(on_IN_22_101, March_NNP_24_107); num(March_NNP_24_107, 12_CD_23_104); num(March_NNP_24_107, 2009_CD_25_113); prep(registered_VBN_27_122, on_IN_22_101); auxpass(registered_VBN_27_122, was_VBD_26_118); prep(registered_VBN_27_122, as_IN_28_133); pobj(as_IN_28_133, player_NN_31_143); det(player_NN_31_143, a_DT_29_136); nn(player_NN_31_143, CSKA_NNP_30_138) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8462126651811251 1.0 60 0.8571428571428571 (she; was kidnapped on; January 7 , 2006) false false Carroll became an international cause clbre when she was kidnapped in Baghdad on January 7 , 2006 . nsubj(clbre_NN_5_38, Carroll_NNP_0_0); cop(clbre_NN_5_38, became_VBD_1_8); det(clbre_NN_5_38, an_DT_2_15); amod(clbre_NN_5_38, international_JJ_3_18); nn(clbre_NN_5_38, cause_NN_4_32); advcl(clbre_NN_5_38, kidnapped_VBN_9_57); punct(clbre_NN_5_38, ._._17_98); advmod(kidnapped_VBN_9_57, when_WRB_6_44); nsubjpass(kidnapped_VBN_9_57, she_PRP_7_49); auxpass(kidnapped_VBN_9_57, was_VBD_8_53); prep(kidnapped_VBN_9_57, in_IN_10_67); prep(kidnapped_VBN_9_57, on_IN_12_78); pobj(in_IN_10_67, Baghdad_NNP_11_70); pobj(on_IN_12_78, January_NNP_13_81); num(January_NNP_13_81, 7_CD_14_89); punct(January_NNP_13_81, ,_,_15_91); num(January_NNP_13_81, 2006_CD_16_93) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8462126651811251 1.0 61 0.8591549295774648 (he; was hit by; Texas Rangers pitcher C.J. Wilson) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8462126651811251 1.0 62 0.8611111111111112 (he; was traded for; Rickey Henderson , Bert Bradley , and cash) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8462126651811251 1.0 63 0.863013698630137 (SirsiDynix; was formed in; June 2005) false false The Dynix corporation was founded in 1983 , and SirsiDynix was formed by the merger of the Sirsi and Dynix corporations in June 2005 . det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8425716143188683 0.7345 64 0.8648648648648649 (Dominion Textile Inc. holders; adopted a shareholder-rights plan at; the annual meeting) false false Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . nn(holders_NNS_3_22, Dominion_NNP_0_0); nn(holders_NNS_3_22, Textile_NNP_1_9); nn(holders_NNS_3_22, Inc._NNP_2_17); nsubj(adopted_VBD_4_30, holders_NNS_3_22); dobj(adopted_VBD_4_30, plan_NN_7_59); prep(adopted_VBD_4_30, at_IN_8_64); punct(adopted_VBD_4_30, ._._12_86); det(plan_NN_7_59, a_DT_5_38); nn(plan_NN_7_59, shareholder-rights_NNS_6_40); pobj(at_IN_8_64, meeting_NN_11_78); det(meeting_NN_11_78, the_DT_9_67); amod(meeting_NN_11_78, annual_JJ_10_71) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8405259213434341 0.0416 65 0.8666666666666667 (The certificates; have; an estimated average life of 1.8 years) false false The certificates have an estimated average life of 1.8 years , assuming monthly prepayments at 1.3 % of the original balance . det(certificates_NNS_1_4, The_DT_0_0); nsubj(have_VBP_2_17, certificates_NNS_1_4); dobj(have_VBP_2_17, life_NN_6_43); punct(have_VBP_2_17, ,_,_10_61); xcomp(have_VBP_2_17, assuming_VBG_11_63); punct(have_VBP_2_17, ._._21_125); det(life_NN_6_43, an_DT_3_22); amod(life_NN_6_43, estimated_VBN_4_25); amod(life_NN_6_43, average_JJ_5_35); prep(life_NN_6_43, of_IN_7_48); pobj(of_IN_7_48, years_NNS_9_55); num(years_NNS_9_55, 1.8_CD_8_51); dobj(assuming_VBG_11_63, prepayments_NNS_13_80); amod(prepayments_NNS_13_80, monthly_JJ_12_72); prep(prepayments_NNS_13_80, at_IN_14_92); pobj(at_IN_14_92, %_NN_16_99); num(%_NN_16_99, 1.3_CD_15_95); prep(%_NN_16_99, of_IN_17_101); pobj(of_IN_17_101, balance_NN_20_117); det(balance_NN_20_117, the_DT_18_104); amod(balance_NN_20_117, original_JJ_19_108) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8403453643089236 1.0 66 0.868421052631579 (The index which uses a base of 1981 as 100; was calculated at; 140.91 points) false false The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8403453643089236 1.0 67 0.8701298701298701 (The index which uses a base of 1981 as 100; was calculated from; 140.74) false false The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8393867143453748 0.9555 68 0.8717948717948718 (He; was a producer on; several Australian television series) false false He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . nsubj(producer_NN_3_9, He_PRP_0_0); cop(producer_NN_3_9, was_VBD_1_3); det(producer_NN_3_9, a_DT_2_7); prep(producer_NN_3_9, on_IN_4_18); punct(producer_NN_3_9, ._._28_179); pobj(on_IN_4_18, series_NN_8_51); amod(series_NN_8_51, several_JJ_5_21); amod(series_NN_8_51, Australian_JJ_6_29); nn(series_NN_8_51, television_NN_7_40); prep(series_NN_8_51, for_IN_9_58); pobj(for_IN_9_58, Productions_NNPS_11_71); nn(Productions_NNPS_11_71, Crawford_NNP_10_62); prep(Productions_NNPS_11_71, including_VBG_12_83); punct(Productions_NNPS_11_71, ,_,_19_123); cc(Productions_NNPS_11_71, and_CC_20_125); conj(Productions_NNPS_11_71, Bluey_NNP_25_160); cc(Productions_NNPS_11_71, and_CC_26_166); conj(Productions_NNPS_11_71, Homicide_NNP_27_170); pobj(including_VBG_12_83, opera_NN_14_98); nn(opera_NN_14_98, soap_NN_13_93); dep(opera_NN_14_98, Box_NNP_16_108); prep(opera_NN_14_98, in_IN_17_112); det(Box_NNP_16_108, The_DT_15_104); pobj(in_IN_17_112, 1976-77_CD_18_115); nn(Bluey_NNP_25_160, police_NN_21_129); amod(Bluey_NNP_25_160, procedural_JJ_22_136); nn(Bluey_NNP_25_160, drama_NN_23_147); nn(Bluey_NNP_25_160, series_NN_24_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8349439109076757 0.1473 69 0.8734177215189873 (that nervous reflexes; earlier stimulate; the release of saliva)[enabler=when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx] true false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.8343102124213516 0.7345 69 0.8625 (he; was during; his innings of 23) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8332152564951584 0.7345 70 0.8641975308641975 (his family; moved to; northwestern Pennsylvania) false false Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8332152564951584 0.7345 71 0.8658536585365854 (he; was at; R.Premadasa Stadium) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.8332152564951584 0.7345 71 0.8554216867469879 (prices; closed in; Zurich , Stockholm and Amsterdam) false false Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . advmod(surged_VBD_3_19, Elsewhere_RB_0_0); punct(surged_VBD_3_19, ,_,_1_10); nsubj(surged_VBD_3_19, prices_NNS_2_12); prep(surged_VBD_3_19, for_IN_4_26); punct(surged_VBD_3_19, ,_,_10_56); conj(surged_VBD_3_19, closed_VBD_11_58); cc(surged_VBD_3_19, and_CC_19_108); conj(surged_VBD_3_19, lower_JJR_22_125); punct(surged_VBD_3_19, ._._29_161); pobj(for_IN_4_26, day_NN_7_39); det(day_NN_7_39, a_DT_5_30); amod(day_NN_7_39, second_JJ_6_32); prep(day_NN_7_39, in_IN_8_43); pobj(in_IN_8_43, Frankfurt_NNP_9_46); dep(closed_VBD_11_58, higher_JJR_12_65); prep(closed_VBD_11_58, in_IN_13_72); pobj(in_IN_13_72, Zurich_NNP_14_75); punct(Zurich_NNP_14_75, ,_,_15_82); conj(Zurich_NNP_14_75, Stockholm_NNP_16_84); cc(Zurich_NNP_14_75, and_CC_17_94); conj(Zurich_NNP_14_75, Amsterdam_NNP_18_98); cop(lower_JJR_22_125, were_VBD_20_112); advmod(lower_JJR_22_125, broadly_RB_21_117); prep(lower_JJR_22_125, in_IN_23_131); pobj(in_IN_23_131, Milan_NNP_24_134); punct(Milan_NNP_24_134, ,_,_25_140); conj(Milan_NNP_24_134, Paris_NNP_26_142); cc(Milan_NNP_24_134, and_CC_27_148); conj(Milan_NNP_24_134, Brussels_NNP_28_152) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8332152564951584 0.7345 72 0.8571428571428571 (government; operated Hutt Park Railway in; Petone) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8332152564951584 0.7345 73 0.8588235294117647 (he; completed the year-long course at; the Canadian Forces Command and Staff College) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8305035189003607 1.0 74 0.8604651162790697 (Five million shares; will be offered in; the U.S.) false false Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8303410676804649 0.0416 75 0.8620689655172413 (Root apical meristems; also produce; auxin)[enabler=although the root depends on the shoot for much of its auxin] true false Root apical meristems also produce auxin , although the root depends on the shoot for much of its auxin . nn(meristems_NNS_2_12, Root_NNP_0_0); amod(meristems_NNS_2_12, apical_JJ_1_5); nsubj(produce_VBP_4_27, meristems_NNS_2_12); advmod(produce_VBP_4_27, also_RB_3_22); dobj(produce_VBP_4_27, auxin_NN_5_35); punct(produce_VBP_4_27, ,_,_6_41); advcl(produce_VBP_4_27, depends_VBZ_10_61); punct(produce_VBP_4_27, ._._19_104); det(root_NN_9_56, the_DT_8_52); mark(depends_VBZ_10_61, although_IN_7_43); nsubj(depends_VBZ_10_61, root_NN_9_56); prep(depends_VBZ_10_61, on_IN_11_69); pobj(on_IN_11_69, shoot_NN_13_76); det(shoot_NN_13_76, the_DT_12_72); prep(shoot_NN_13_76, for_IN_14_82); pobj(for_IN_14_82, much_JJ_15_86); prep(much_JJ_15_86, of_IN_16_91); pobj(of_IN_16_91, auxin_NN_18_98); poss(auxin_NN_18_98, its_PRP$_17_94) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.827468041502386 0.7345 76 0.8636363636363636 (Beecher; began collecting fossils from; local sandstones and shales)[enabler=when his family moved to northwestern Pennsylvania] true false Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 1 0.8269534825979009 0.7345 77 0.8651685393258427 (prices; Elsewhere surged for; a second day) false false Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . advmod(surged_VBD_3_19, Elsewhere_RB_0_0); punct(surged_VBD_3_19, ,_,_1_10); nsubj(surged_VBD_3_19, prices_NNS_2_12); prep(surged_VBD_3_19, for_IN_4_26); punct(surged_VBD_3_19, ,_,_10_56); conj(surged_VBD_3_19, closed_VBD_11_58); cc(surged_VBD_3_19, and_CC_19_108); conj(surged_VBD_3_19, lower_JJR_22_125); punct(surged_VBD_3_19, ._._29_161); pobj(for_IN_4_26, day_NN_7_39); det(day_NN_7_39, a_DT_5_30); amod(day_NN_7_39, second_JJ_6_32); prep(day_NN_7_39, in_IN_8_43); pobj(in_IN_8_43, Frankfurt_NNP_9_46); dep(closed_VBD_11_58, higher_JJR_12_65); prep(closed_VBD_11_58, in_IN_13_72); pobj(in_IN_13_72, Zurich_NNP_14_75); punct(Zurich_NNP_14_75, ,_,_15_82); conj(Zurich_NNP_14_75, Stockholm_NNP_16_84); cc(Zurich_NNP_14_75, and_CC_17_94); conj(Zurich_NNP_14_75, Amsterdam_NNP_18_98); cop(lower_JJR_22_125, were_VBD_20_112); advmod(lower_JJR_22_125, broadly_RB_21_117); prep(lower_JJR_22_125, in_IN_23_131); pobj(in_IN_23_131, Milan_NNP_24_134); punct(Milan_NNP_24_134, ,_,_25_140); conj(Milan_NNP_24_134, Paris_NNP_26_142); cc(Milan_NNP_24_134, and_CC_27_148); conj(Milan_NNP_24_134, Brussels_NNP_28_152) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8260213456731965 0.7345 78 0.8666666666666667 (the number of jobless; rose 0.1 % on; a seasonally adjusted basis) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8249346444705182 0.0087 79 0.8681318681318682 (Bruno DeGol; was named; a director of this bank-holding company) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0087 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.8221777270905738 0.9555 79 0.8586956521739131 (She; be her husband in; McMillan and McMillan) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.8221777270905738 0.9555 79 0.8494623655913979 (She; be her husband in; McMillan and McMillan) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8219185100921349 1.0 80 0.851063829787234 (the 15-year debentures; can be redeemed at; the company 's option)[attrib=Mark said] false true Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . punct(Mark_NNP_0_0, ,_,_1_5); appos(Mark_NNP_0_0, oil_NN_3_10); punct(Mark_NNP_0_0, ,_,_7_30); det(oil_NN_3_10, an_DT_2_7); cc(oil_NN_3_10, and_CC_4_14); conj(oil_NN_3_10, concern_NN_6_22); nn(concern_NN_6_22, gas_NN_5_18); nsubj(said_VBD_8_32, Mark_NNP_0_0); ccomp(said_VBD_8_32, convertible_JJ_13_64); punct(said_VBD_8_32, ._._44_228); det(debentures_NNS_11_49, the_DT_9_37); amod(debentures_NNS_11_49, 15-year_JJ_10_41); nsubjpass(convertible_JJ_13_64, debentures_NNS_11_49); cop(convertible_JJ_13_64, are_VBP_12_60); prep(convertible_JJ_13_64, before_IN_14_76); prep(convertible_JJ_13_64, at_IN_16_92); punct(convertible_JJ_13_64, ,_,_24_131); cc(convertible_JJ_13_64, and_CC_25_133); conj(convertible_JJ_13_64, redeemed_VBN_28_144); pobj(before_IN_14_76, maturity_NN_15_83); pobj(at_IN_16_92, C$_$_17_95); num(C$_$_17_95, 12.50_CD_18_98); prep(C$_$_17_95, for_IN_19_104); pobj(for_IN_19_104, share_NN_23_125); det(share_NN_23_125, each_DT_20_108); nn(share_NN_23_125, Mark_NNP_21_113); amod(share_NN_23_125, common_JJ_22_118); aux(redeemed_VBN_28_144, can_MD_26_137); auxpass(redeemed_VBN_28_144, be_VB_27_141); prep(redeemed_VBN_28_144, at_IN_29_153); punct(redeemed_VBN_28_144, ,_,_34_178); prep(redeemed_VBN_28_144, under_IN_35_180); punct(redeemed_VBN_28_144, ,_,_38_205); prep(redeemed_VBN_28_144, after_IN_39_207); pobj(at_IN_29_153, option_NN_33_171); det(company_NN_31_160, the_DT_30_156); possessive(company_NN_31_160, 's_POS_32_168); poss(option_NN_33_171, company_NN_31_160); pobj(under_IN_35_180, conditions_NNS_37_194); amod(conditions_NNS_37_194, certain_JJ_36_186); pobj(after_IN_39_207, Nov._NNP_40_213); num(Nov._NNP_40_213, 30_CD_41_218); punct(Nov._NNP_40_213, ,_,_42_221); num(Nov._NNP_40_213, 1992_CD_43_223) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8219185100921349 1.0 81 0.8526315789473684 (the 15-year debentures; can be redeemed under; certain conditions)[attrib=Mark said] false true Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . punct(Mark_NNP_0_0, ,_,_1_5); appos(Mark_NNP_0_0, oil_NN_3_10); punct(Mark_NNP_0_0, ,_,_7_30); det(oil_NN_3_10, an_DT_2_7); cc(oil_NN_3_10, and_CC_4_14); conj(oil_NN_3_10, concern_NN_6_22); nn(concern_NN_6_22, gas_NN_5_18); nsubj(said_VBD_8_32, Mark_NNP_0_0); ccomp(said_VBD_8_32, convertible_JJ_13_64); punct(said_VBD_8_32, ._._44_228); det(debentures_NNS_11_49, the_DT_9_37); amod(debentures_NNS_11_49, 15-year_JJ_10_41); nsubjpass(convertible_JJ_13_64, debentures_NNS_11_49); cop(convertible_JJ_13_64, are_VBP_12_60); prep(convertible_JJ_13_64, before_IN_14_76); prep(convertible_JJ_13_64, at_IN_16_92); punct(convertible_JJ_13_64, ,_,_24_131); cc(convertible_JJ_13_64, and_CC_25_133); conj(convertible_JJ_13_64, redeemed_VBN_28_144); pobj(before_IN_14_76, maturity_NN_15_83); pobj(at_IN_16_92, C$_$_17_95); num(C$_$_17_95, 12.50_CD_18_98); prep(C$_$_17_95, for_IN_19_104); pobj(for_IN_19_104, share_NN_23_125); det(share_NN_23_125, each_DT_20_108); nn(share_NN_23_125, Mark_NNP_21_113); amod(share_NN_23_125, common_JJ_22_118); aux(redeemed_VBN_28_144, can_MD_26_137); auxpass(redeemed_VBN_28_144, be_VB_27_141); prep(redeemed_VBN_28_144, at_IN_29_153); punct(redeemed_VBN_28_144, ,_,_34_178); prep(redeemed_VBN_28_144, under_IN_35_180); punct(redeemed_VBN_28_144, ,_,_38_205); prep(redeemed_VBN_28_144, after_IN_39_207); pobj(at_IN_29_153, option_NN_33_171); det(company_NN_31_160, the_DT_30_156); possessive(company_NN_31_160, 's_POS_32_168); poss(option_NN_33_171, company_NN_31_160); pobj(under_IN_35_180, conditions_NNS_37_194); amod(conditions_NNS_37_194, certain_JJ_36_186); pobj(after_IN_39_207, Nov._NNP_40_213); num(Nov._NNP_40_213, 30_CD_41_218); punct(Nov._NNP_40_213, ,_,_42_221); num(Nov._NNP_40_213, 1992_CD_43_223) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8163015082002283 0.7345 82 0.8541666666666666 (they; played locally in; Southern California)[enabler=As the band struggled to find support slots on upcoming tours without the help of a booking agent] true false As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.8142098011724438 1.0 83 0.8556701030927835 (he; was registered on; 12 March 2009) false false After CSKA qualified for the round of 16 of the UEFA Cup 2008 , he was called back from the loan and on 12 March 2009 was registered as a CSKA player . pobj(After_IN_0_0, CSKA_NNP_1_6); prep(qualified_VBD_2_11, After_IN_0_0); prep(qualified_VBD_2_11, for_IN_3_21); pobj(for_IN_3_21, round_NN_5_29); det(round_NN_5_29, the_DT_4_25); prep(round_NN_5_29, of_IN_6_35); pobj(of_IN_6_35, 16_CD_7_38); prep(16_CD_7_38, of_IN_8_41); pobj(of_IN_8_41, Cup_NNP_11_53); det(Cup_NNP_11_53, the_DT_9_44); nn(Cup_NNP_11_53, UEFA_NNP_10_48); num(Cup_NNP_11_53, 2008_CD_12_57); advcl(called_VBN_16_71, qualified_VBD_2_11); punct(called_VBN_16_71, ,_,_13_62); nsubjpass(called_VBN_16_71, he_PRP_14_64); auxpass(called_VBN_16_71, was_VBD_15_67); advmod(called_VBN_16_71, back_RB_17_78); prep(called_VBN_16_71, from_IN_18_83); cc(called_VBN_16_71, and_CC_21_97); conj(called_VBN_16_71, registered_VBN_27_122); punct(called_VBN_16_71, ._._32_150); pobj(from_IN_18_83, loan_NN_20_92); det(loan_NN_20_92, the_DT_19_88); pobj(on_IN_22_101, March_NNP_24_107); num(March_NNP_24_107, 12_CD_23_104); num(March_NNP_24_107, 2009_CD_25_113); prep(registered_VBN_27_122, on_IN_22_101); auxpass(registered_VBN_27_122, was_VBD_26_118); prep(registered_VBN_27_122, as_IN_28_133); pobj(as_IN_28_133, player_NN_31_143); det(player_NN_31_143, a_DT_29_136); nn(player_NN_31_143, CSKA_NNP_30_138) 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.8131467426837622 0.7345 84 0.8571428571428571 (Greyston Bakery; moved to; a larger facility designed by Maya Lin to accommodate growth) false false In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . pobj(In_IN_0_0, 2004_CD_1_3); nn(Bakery_NNP_4_19, Greyston_NNP_3_10); prep(moved_VBD_5_26, In_IN_0_0); punct(moved_VBD_5_26, ,_,_2_8); nsubj(moved_VBD_5_26, Bakery_NNP_4_19); prep(moved_VBD_5_26, to_TO_6_32); punct(moved_VBD_5_26, ._._17_96); pobj(to_TO_6_32, facility_NN_9_44); det(facility_NN_9_44, a_DT_7_35); amod(facility_NN_9_44, larger_JJR_8_37); partmod(facility_NN_9_44, designed_VBN_10_53); prep(designed_VBN_10_53, by_IN_11_62); xcomp(designed_VBN_10_53, accommodate_VB_15_77); pobj(by_IN_11_62, Lin_NNP_13_70); nn(Lin_NNP_13_70, Maya_NNP_12_65); aux(accommodate_VB_15_77, to_TO_14_74); dobj(accommodate_VB_15_77, growth_NN_16_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.812966171857697 1.0 85 0.8585858585858586 (the potentially fatal disease botulism; is caused vegetables by; botulinum toxin) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.8124225561269487 0.3797 85 0.85 (Conn; acquired; most of its stake) false false Mr. Hollander 's High Technology Holding Co. of Stamford , Conn . , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.8122091137989417 0.3797 85 0.8415841584158416 (Disappointment; led to reduce; its 1989 and 1990 earnings estimates) false false Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . prep(Disappointment_NN_0_0, with_IN_1_15); pobj(with_IN_1_15, earnings_NNS_5_35); det(company_NN_3_24, the_DT_2_20); possessive(company_NN_3_24, 's_POS_4_32); poss(earnings_NNS_5_35, company_NN_3_24); prep(earnings_NNS_5_35, for_IN_6_44); pobj(for_IN_6_44, quarter_NN_8_52); det(quarter_NN_8_52, the_DT_7_48); nsubj(led_VBD_9_60, Disappointment_NN_0_0); xcomp(led_VBD_9_60, reduce_VB_13_95); punct(led_VBD_9_60, ,_,_20_139); prep(led_VBD_9_60, according_VBG_21_141); punct(led_VBD_9_60, ._._28_193); nn(Securities_NNPS_11_81, Prudential-Bache_NNP_10_64); nsubj(reduce_VB_13_95, Securities_NNPS_11_81); aux(reduce_VB_13_95, to_TO_12_92); dobj(reduce_VB_13_95, 1989_CD_15_106); poss(1989_CD_15_106, its_PRP$_14_102); cc(1989_CD_15_106, and_CC_16_111); conj(1989_CD_15_106, estimates_NNS_19_129); num(estimates_NNS_19_129, 1990_CD_17_115); nn(estimates_NNS_19_129, earnings_NNS_18_120); dep(according_VBG_21_141, to_TO_22_151); pobj(to_TO_22_151, Report_NNP_27_186); nn(Report_NNP_27_186, Dow_NNP_23_154); nn(Report_NNP_27_186, Jones_NNP_24_158); nn(Report_NNP_27_186, Professional_NNP_25_164); nn(Report_NNP_27_186, Investor_NNP_26_177) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8122091137989417 0.3797 86 0.8431372549019608 (He; captured; the Parthian capital) false false He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . nsubj(captured_VBD_1_3, He_PRP_0_0); dobj(captured_VBD_1_3, capital_NN_4_25); punct(captured_VBD_1_3, ,_,_7_45); prep(captured_VBD_1_3, before_IN_8_47); punct(captured_VBD_1_3, ._._15_92); det(capital_NN_4_25, the_DT_2_12); amod(capital_NN_4_25, Parthian_JJ_3_16); punct(capital_NN_4_25, ,_,_5_33); appos(capital_NN_4_25, Ctesiphon_NNP_6_35); pcomp(before_IN_8_47, sailing_VBG_9_54); dobj(sailing_VBG_9_54, downriver_NN_10_62); prep(sailing_VBG_9_54, to_TO_11_72); pobj(to_TO_11_72, Gulf_NNP_14_87); det(Gulf_NNP_14_87, the_DT_12_75); nn(Gulf_NNP_14_87, Persian_NNP_13_79) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.8122091137989417 0.3797 86 0.8349514563106796 (She; spent; some time) false false She appears not to have recorded after 1935 , and spent some time managing her son 's jazz group , Bogan 's Birmingham Busters , before moving to Los Angeles , California shortly before her death from coronary sclerosis in 1948 . nsubj(appears_VBZ_1_4, She_PRP_0_0); ccomp(appears_VBZ_1_4, recorded_VBN_5_24); punct(appears_VBZ_1_4, ,_,_8_44); cc(appears_VBZ_1_4, and_CC_9_46); conj(appears_VBZ_1_4, spent_VBD_10_50); punct(appears_VBZ_1_4, ,_,_30_158); punct(appears_VBZ_1_4, ._._41_228); neg(recorded_VBN_5_24, not_RB_2_12); aux(recorded_VBN_5_24, to_TO_3_16); aux(recorded_VBN_5_24, have_VB_4_19); prep(recorded_VBN_5_24, after_IN_6_33); pobj(after_IN_6_33, 1935_CD_7_39); dobj(spent_VBD_10_50, time_NN_12_61); xcomp(spent_VBD_10_50, managing_VBG_13_66); punct(spent_VBD_10_50, ,_,_19_97); appos(spent_VBD_10_50, Busters_NNP_23_119); punct(spent_VBD_10_50, ,_,_24_127); prep(spent_VBD_10_50, before_IN_25_129); det(time_NN_12_61, some_DT_11_56); dobj(managing_VBG_13_66, group_NN_18_91); poss(son_NN_15_79, her_PRP$_14_75); possessive(son_NN_15_79, 's_POS_16_83); poss(group_NN_18_91, son_NN_15_79); nn(group_NN_18_91, jazz_NN_17_86); possessive(Bogan_NNP_20_99, 's_POS_21_105); poss(Busters_NNP_23_119, Bogan_NNP_20_99); nn(Busters_NNP_23_119, Birmingham_NNP_22_108); pcomp(before_IN_25_129, moving_VBG_26_136); prep(moving_VBG_26_136, to_TO_27_143); pobj(to_TO_27_143, Angeles_NNP_29_150); nn(Angeles_NNP_29_150, Los_NNP_28_146); dobj(,_,_30_158, California_NNP_31_160); prep(California_NNP_31_160, before_IN_33_179); prep(California_NNP_31_160, in_IN_39_220); dep(before_IN_33_179, shortly_RB_32_171); pobj(before_IN_33_179, death_NN_35_190); poss(death_NN_35_190, her_PRP$_34_186); prep(death_NN_35_190, from_IN_36_196); pobj(from_IN_36_196, sclerosis_NN_38_210); amod(sclerosis_NN_38_210, coronary_JJ_37_201); pobj(in_IN_39_220, 1948_CD_40_223) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.8118536542018464 1.0 87 0.8365384615384616 (He; was also featured in; cover articles) false false He was also featured in cover articles for TV Guide and Instinct . nsubjpass(featured_VBN_3_12, He_PRP_0_0); auxpass(featured_VBN_3_12, was_VBD_1_3); advmod(featured_VBN_3_12, also_RB_2_7); prep(featured_VBN_3_12, in_IN_4_21); punct(featured_VBN_3_12, ._._12_65); pobj(in_IN_4_21, articles_NNS_6_30); nn(articles_NNS_6_30, cover_NN_5_24); prep(articles_NNS_6_30, for_IN_7_39); pobj(for_IN_7_39, Guide_NNP_9_46); nn(Guide_NNP_9_46, TV_NN_8_43); cc(Guide_NNP_9_46, and_CC_10_52); conj(Guide_NNP_9_46, Instinct_NNP_11_56) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8118536542018464 1.0 88 0.8380952380952381 (Junge; was then traded in to; the Philadelphia Phillies) false false Junge was originally drafted by the Los Angeles Dodgers in the 1999 amateur draft and was then traded to the Philadelphia Phillies in . nsubjpass(drafted_VBN_3_21, Junge_NNP_0_0); auxpass(drafted_VBN_3_21, was_VBD_1_6); advmod(drafted_VBN_3_21, originally_RB_2_10); prep(drafted_VBN_3_21, by_IN_4_29); prep(drafted_VBN_3_21, in_IN_9_56); cc(drafted_VBN_3_21, and_CC_14_82); conj(drafted_VBN_3_21, traded_VBN_17_95); punct(drafted_VBN_3_21, ._._23_134); pobj(by_IN_4_29, Dodgers_NNP_8_48); det(Dodgers_NNP_8_48, the_DT_5_32); nn(Dodgers_NNP_8_48, Los_NNP_6_36); nn(Dodgers_NNP_8_48, Angeles_NNP_7_40); pobj(in_IN_9_56, draft_NN_13_76); det(draft_NN_13_76, the_DT_10_59); num(draft_NN_13_76, 1999_CD_11_63); amod(draft_NN_13_76, amateur_JJ_12_68); auxpass(traded_VBN_17_95, was_VBD_15_86); advmod(traded_VBN_17_95, then_RB_16_90); prep(traded_VBN_17_95, to_TO_18_102); prt(traded_VBN_17_95, in_IN_22_131); pobj(to_TO_18_102, Phillies_NNP_21_122); det(Phillies_NNP_21_122, the_DT_19_105); nn(Phillies_NNP_21_122, Philadelphia_NNP_20_109) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8099965871661658 0.7345 89 0.839622641509434 (They; consisted of; Hightower , Davis , and three Brickley sisters) false false They formed in the late 1950s in junior high school and consisted of Hightower , Davis , and three Brickley sisters : Shirley , Jean , and Audrey . nsubj(formed_VBD_1_5, They_PRP_0_0); prep(formed_VBD_1_5, in_IN_2_12); cc(formed_VBD_1_5, and_CC_10_52); conj(formed_VBD_1_5, consisted_VBD_11_56); punct(formed_VBD_1_5, ._._28_146); pobj(in_IN_2_12, 1950s_NNS_5_24); det(1950s_NNS_5_24, the_DT_3_15); amod(1950s_NNS_5_24, late_JJ_4_19); prep(1950s_NNS_5_24, in_IN_6_30); pobj(in_IN_6_30, school_NN_9_45); amod(school_NN_9_45, junior_JJ_7_33); amod(school_NN_9_45, high_JJ_8_40); prep(consisted_VBD_11_56, of_IN_12_66); pobj(of_IN_12_66, Hightower_NNP_13_69); punct(Hightower_NNP_13_69, ,_,_14_79); appos(Hightower_NNP_13_69, Davis_NNP_15_81); punct(Hightower_NNP_13_69, ,_,_16_87); cc(Hightower_NNP_13_69, and_CC_17_89); conj(Hightower_NNP_13_69, sisters_NNS_20_108); punct(Hightower_NNP_13_69, :_:_21_116); dep(Hightower_NNP_13_69, Shirley_NNP_22_118); num(sisters_NNS_20_108, three_CD_18_93); nn(sisters_NNS_20_108, Brickley_NNP_19_99); punct(Shirley_NNP_22_118, ,_,_23_126); conj(Shirley_NNP_22_118, Jean_NNP_24_128); punct(Shirley_NNP_22_118, ,_,_25_133); cc(Shirley_NNP_22_118, and_CC_26_135); conj(Shirley_NNP_22_118, Audrey_NNP_27_139) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.8030868347515683 1.0 90 0.8411214953271028 (His suspicions; were confirmed in; 1935) false false His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . poss(suspicions_NNS_1_4, His_PRP$_0_0); nsubjpass(confirmed_VBN_3_20, suspicions_NNS_1_4); auxpass(confirmed_VBN_3_20, were_VBD_2_15); prep(confirmed_VBN_3_20, in_IN_4_30); punct(confirmed_VBN_3_20, ._._23_155); pobj(in_IN_4_30, 1935_CD_5_33); dep(1935_CD_5_33, crystallized_VBD_12_82); det(Stanley_NNP_11_74, the_DT_7_43); amod(Stanley_NNP_11_74, American_JJ_8_47); nn(Stanley_NNP_11_74, scientist_NN_9_56); nn(Stanley_NNP_11_74, Wendell_NNP_10_66); advmod(crystallized_VBD_12_82, when_WRB_6_38); nsubj(crystallized_VBD_12_82, Stanley_NNP_11_74); dobj(crystallized_VBD_12_82, particle_NN_15_110); det(particle_NN_15_110, the_DT_13_95); amod(particle_NN_15_110, infectious_JJ_14_99); punct(particle_NN_15_110, ,_,_16_119); partmod(particle_NN_15_110, known_VBN_18_125); advmod(known_VBN_18_125, now_RB_17_121); prep(known_VBN_18_125, as_IN_19_131); pobj(as_IN_19_131, virus_NN_22_149); nn(virus_NN_22_149, tobacco_NN_20_134); nn(virus_NN_22_149, mosaic_NN_21_142) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 1 0.8030868347515683 1.0 91 0.8425925925925926 (The episode; was written by; Kevin Murphy and Kevin Etten) false false The episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman . det(episode_NN_1_4, The_DT_0_0); nsubjpass(written_VBN_3_16, episode_NN_1_4); auxpass(written_VBN_3_16, was_VBD_2_12); prep(written_VBN_3_16, by_IN_4_24); cc(written_VBN_3_16, and_CC_10_56); conj(written_VBN_3_16, directed_VBN_11_60); punct(written_VBN_3_16, ._._15_87); pobj(by_IN_4_24, Murphy_NNP_6_33); nn(Murphy_NNP_6_33, Kevin_NNP_5_27); cc(Murphy_NNP_6_33, and_CC_7_40); conj(Murphy_NNP_6_33, Etten_NNP_9_50); nn(Etten_NNP_9_50, Kevin_NNP_8_44); prep(directed_VBN_11_60, by_IN_12_69); pobj(by_IN_12_69, Grossman_NNP_14_78); nn(Grossman_NNP_14_78, David_NNP_13_72) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 1 0.8022295858317585 0.7345 92 0.8440366972477065 (the Roman general Manius Acilius Glabrio; advanced to; Amfissa) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.8014529232437072 1.0 93 0.8454545454545455 (genes; are cloned in; plasmids)[attrib=we can see] false true Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . advmod(learned_VBN_4_17, Now_RB_0_0); dep(learned_VBN_4_17, that_IN_1_4); nsubj(learned_VBN_4_17, you_PRP_2_9); aux(learned_VBN_4_17, 've_VBP_3_13); prep(learned_VBN_4_17, about_IN_5_25); pobj(about_IN_5_25, enzymes_NNS_7_43); nn(enzymes_NNS_7_43, restriction_NN_6_31); cc(enzymes_NNS_7_43, and_CC_8_51); conj(enzymes_NNS_7_43, ligase_NN_10_59); nn(ligase_NN_10_59, DNA_NNP_9_55); ccomp(see_VB_14_75, learned_VBN_4_17); punct(see_VB_14_75, ,_,_11_66); nsubj(see_VB_14_75, we_PRP_12_68); aux(see_VB_14_75, can_MD_13_71); ccomp(see_VB_14_75, cloned_VBN_18_93); punct(see_VB_14_75, ._._21_112); advmod(cloned_VBN_18_93, how_WRB_15_79); nsubjpass(cloned_VBN_18_93, genes_NNS_16_83); auxpass(cloned_VBN_18_93, are_VBP_17_89); prep(cloned_VBN_18_93, in_IN_19_100); pobj(in_IN_19_100, plasmids_NNS_20_103) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.80110261356372 1.0 94 0.8468468468468469 (the Australian Black Swan; was introduced to; New Zealand) false false In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.798782133398484 1.0 95 0.8482142857142857 (the sunflower hybrid zone; discussed earlier is influenced by; at least 26 chromosome segments) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7976688782716311 0.7345 96 0.8495575221238938 (He; began to practice law in; Montgomery) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 1 0.7968768978207308 0.7345 97 0.8508771929824561 (he; returned once again to perform as; a part of a two-hander) false false In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . pobj(In_IN_0_0, 2008_CD_1_3); prep(returned_VBD_3_11, In_IN_0_0); nsubj(returned_VBD_3_11, he_PRP_2_8); advmod(returned_VBD_3_11, again_RB_5_25); xcomp(returned_VBD_3_11, perform_VB_7_34); punct(returned_VBD_3_11, ._._28_142); advmod(again_RB_5_25, once_RB_4_20); aux(perform_VB_7_34, to_TO_6_31); prep(perform_VB_7_34, as_IN_8_42); pobj(as_IN_8_42, part_NN_10_47); det(part_NN_10_47, a_DT_9_45); prep(part_NN_10_47, of_IN_11_52); pobj(of_IN_11_52, two-hander_JJ_13_57); det(two-hander_JJ_13_57, a_DT_12_55); prep(two-hander_JJ_13_57, with_IN_14_68); prep(two-hander_JJ_13_57, in_IN_17_85); punct(two-hander_JJ_13_57, -_:_20_99); dep(two-hander_JJ_13_57, Predator_NNP_27_133); pobj(with_IN_14_68, Robins_NNP_16_78); nn(Robins_NNP_16_78, John_NNP_15_73); pobj(in_IN_17_85, show_NN_19_94); poss(show_NN_19_94, their_PRP$_18_88); nn(Predator_NNP_27_133, Carl_NNP_21_101); nn(Predator_NNP_27_133, Donnelly_NNP_22_106); nn(Predator_NNP_27_133, Vs_NNP_23_115); nn(Predator_NNP_27_133, John_NNP_24_118); nn(Predator_NNP_27_133, Robins_NNP_25_123); nn(Predator_NNP_27_133, Vs_NNP_26_130) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.796650193882776 0.7345 98 0.8521739130434782 (Amuro; returned to solo activities on; her own) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.796650193882776 0.7345 99 0.853448275862069 (Christie; made a splash with; her extraordinary performance) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.796650193882776 0.7345 100 0.8547008547008547 (He; came to; Tehran) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.796650193882776 0.7345 101 0.8559322033898306 (Italy 's unemployment rate; rose from; 11.9 %) false false Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.796650193882776 0.7345 102 0.8571428571428571 (Italy 's unemployment rate; rose in; July) false false Italy 's unemployment rate rose to 12 % of the labor force in July from 11.9 % in April , and was up from 11.7 % a year earlier , according to quarterly figures from the state statistical institute . possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.796650193882776 0.7345 103 0.8583333333333333 (The car; has had two revisions since; its inception) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.796650193882776 0.7345 104 0.859504132231405 (They; formed in; the late 1950s) false false They formed in the late 1950s in junior high school and consisted of Hightower , Davis , and three Brickley sisters : Shirley , Jean , and Audrey . nsubj(formed_VBD_1_5, They_PRP_0_0); prep(formed_VBD_1_5, in_IN_2_12); cc(formed_VBD_1_5, and_CC_10_52); conj(formed_VBD_1_5, consisted_VBD_11_56); punct(formed_VBD_1_5, ._._28_146); pobj(in_IN_2_12, 1950s_NNS_5_24); det(1950s_NNS_5_24, the_DT_3_15); amod(1950s_NNS_5_24, late_JJ_4_19); prep(1950s_NNS_5_24, in_IN_6_30); pobj(in_IN_6_30, school_NN_9_45); amod(school_NN_9_45, junior_JJ_7_33); amod(school_NN_9_45, high_JJ_8_40); prep(consisted_VBD_11_56, of_IN_12_66); pobj(of_IN_12_66, Hightower_NNP_13_69); punct(Hightower_NNP_13_69, ,_,_14_79); appos(Hightower_NNP_13_69, Davis_NNP_15_81); punct(Hightower_NNP_13_69, ,_,_16_87); cc(Hightower_NNP_13_69, and_CC_17_89); conj(Hightower_NNP_13_69, sisters_NNS_20_108); punct(Hightower_NNP_13_69, :_:_21_116); dep(Hightower_NNP_13_69, Shirley_NNP_22_118); num(sisters_NNS_20_108, three_CD_18_93); nn(sisters_NNS_20_108, Brickley_NNP_19_99); punct(Shirley_NNP_22_118, ,_,_23_126); conj(Shirley_NNP_22_118, Jean_NNP_24_128); punct(Shirley_NNP_22_118, ,_,_25_133); cc(Shirley_NNP_22_118, and_CC_26_135); conj(Shirley_NNP_22_118, Audrey_NNP_27_139) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.796650193882776 0.7345 105 0.860655737704918 (WKY; operated from; 1936) false false WKY operated from the Skirvin Hotel in downtown Oklahoma City from 1936 to 1951 , and was contracted to broadcast live from the Venetian Room from 11:00 to Midnight every evening . nsubj(operated_VBD_1_4, WKY_NNP_0_0); prep(operated_VBD_1_4, from_IN_2_13); prep(operated_VBD_1_4, in_IN_6_36); prep(operated_VBD_1_4, from_IN_10_62); punct(operated_VBD_1_4, ,_,_14_80); cc(operated_VBD_1_4, and_CC_15_82); conj(operated_VBD_1_4, contracted_VBN_17_90); punct(operated_VBD_1_4, ._._31_179); pobj(from_IN_2_13, Hotel_NNP_5_30); det(Hotel_NNP_5_30, the_DT_3_18); nn(Hotel_NNP_5_30, Skirvin_NNP_4_22); pobj(in_IN_6_36, City_NNP_9_57); nn(City_NNP_9_57, downtown_NN_7_39); nn(City_NNP_9_57, Oklahoma_NNP_8_48); pobj(from_IN_10_62, 1936_CD_11_67); dep(from_IN_10_62, to_TO_12_72); pobj(to_TO_12_72, 1951_CD_13_75); auxpass(contracted_VBN_17_90, was_VBD_16_86); xcomp(contracted_VBN_17_90, broadcast_VB_19_104); aux(broadcast_VB_19_104, to_TO_18_101); acomp(broadcast_VB_19_104, live_JJ_20_114); prep(live_JJ_20_114, from_IN_21_119); pobj(from_IN_21_119, Room_NNP_24_137); dep(from_IN_21_119, from_IN_25_142); det(Room_NNP_24_137, the_DT_22_124); nn(Room_NNP_24_137, Venetian_NNP_23_128); pobj(from_IN_25_142, 11:00_CD_26_147); dep(from_IN_25_142, to_TO_27_153); pobj(to_TO_27_153, Midnight_NNP_28_156); tmod(to_TO_27_153, evening_NN_30_171); det(evening_NN_30_171, every_DT_29_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.796650193882776 0.7345 106 0.8617886178861789 (WKY; operated from; the Skirvin Hotel) false false WKY operated from the Skirvin Hotel in downtown Oklahoma City from 1936 to 1951 , and was contracted to broadcast live from the Venetian Room from 11:00 to Midnight every evening . nsubj(operated_VBD_1_4, WKY_NNP_0_0); prep(operated_VBD_1_4, from_IN_2_13); prep(operated_VBD_1_4, in_IN_6_36); prep(operated_VBD_1_4, from_IN_10_62); punct(operated_VBD_1_4, ,_,_14_80); cc(operated_VBD_1_4, and_CC_15_82); conj(operated_VBD_1_4, contracted_VBN_17_90); punct(operated_VBD_1_4, ._._31_179); pobj(from_IN_2_13, Hotel_NNP_5_30); det(Hotel_NNP_5_30, the_DT_3_18); nn(Hotel_NNP_5_30, Skirvin_NNP_4_22); pobj(in_IN_6_36, City_NNP_9_57); nn(City_NNP_9_57, downtown_NN_7_39); nn(City_NNP_9_57, Oklahoma_NNP_8_48); pobj(from_IN_10_62, 1936_CD_11_67); dep(from_IN_10_62, to_TO_12_72); pobj(to_TO_12_72, 1951_CD_13_75); auxpass(contracted_VBN_17_90, was_VBD_16_86); xcomp(contracted_VBN_17_90, broadcast_VB_19_104); aux(broadcast_VB_19_104, to_TO_18_101); acomp(broadcast_VB_19_104, live_JJ_20_114); prep(live_JJ_20_114, from_IN_21_119); pobj(from_IN_21_119, Room_NNP_24_137); dep(from_IN_21_119, from_IN_25_142); det(Room_NNP_24_137, the_DT_22_124); nn(Room_NNP_24_137, Venetian_NNP_23_128); pobj(from_IN_25_142, 11:00_CD_26_147); dep(from_IN_25_142, to_TO_27_153); pobj(to_TO_27_153, Midnight_NNP_28_156); tmod(to_TO_27_153, evening_NN_30_171); det(evening_NN_30_171, every_DT_29_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.796650193882776 0.7345 107 0.8629032258064516 (WKY; operated in; downtown Oklahoma City) false false WKY operated from the Skirvin Hotel in downtown Oklahoma City from 1936 to 1951 , and was contracted to broadcast live from the Venetian Room from 11:00 to Midnight every evening . nsubj(operated_VBD_1_4, WKY_NNP_0_0); prep(operated_VBD_1_4, from_IN_2_13); prep(operated_VBD_1_4, in_IN_6_36); prep(operated_VBD_1_4, from_IN_10_62); punct(operated_VBD_1_4, ,_,_14_80); cc(operated_VBD_1_4, and_CC_15_82); conj(operated_VBD_1_4, contracted_VBN_17_90); punct(operated_VBD_1_4, ._._31_179); pobj(from_IN_2_13, Hotel_NNP_5_30); det(Hotel_NNP_5_30, the_DT_3_18); nn(Hotel_NNP_5_30, Skirvin_NNP_4_22); pobj(in_IN_6_36, City_NNP_9_57); nn(City_NNP_9_57, downtown_NN_7_39); nn(City_NNP_9_57, Oklahoma_NNP_8_48); pobj(from_IN_10_62, 1936_CD_11_67); dep(from_IN_10_62, to_TO_12_72); pobj(to_TO_12_72, 1951_CD_13_75); auxpass(contracted_VBN_17_90, was_VBD_16_86); xcomp(contracted_VBN_17_90, broadcast_VB_19_104); aux(broadcast_VB_19_104, to_TO_18_101); acomp(broadcast_VB_19_104, live_JJ_20_114); prep(live_JJ_20_114, from_IN_21_119); pobj(from_IN_21_119, Room_NNP_24_137); dep(from_IN_21_119, from_IN_25_142); det(Room_NNP_24_137, the_DT_22_124); nn(Room_NNP_24_137, Venetian_NNP_23_128); pobj(from_IN_25_142, 11:00_CD_26_147); dep(from_IN_25_142, to_TO_27_153); pobj(to_TO_27_153, Midnight_NNP_28_156); tmod(to_TO_27_153, evening_NN_30_171); det(evening_NN_30_171, every_DT_29_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7955951719703225 0.7345 108 0.864 (he; helped to lead the Buckeyes to; a national championship) false false During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7955951719703225 0.7345 109 0.8650793650793651 (a Best of compilation album; released on; Columbia Records) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7955951719703225 0.7345 110 0.8661417322834646 (the airline; launched codeshare flights with Lufthansa from; Shanghai) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7955951719703225 0.7345 111 0.8671875 (he; married natural resources attorney Susan Daggett in; Marianna) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.7955951719703225 0.7345 111 0.8604651162790697 (borrowed spare grilles; left around from; the fourth generation) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7955951719703225 0.7345 112 0.8615384615384616 (borrowed spare grilles; left around in; 1997) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7930485141769201 1.0 113 0.8625954198473282 (he; was hit on; September 1) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7930485141769201 1.0 114 0.8636363636363636 (the Australian Black Swan; was introduced in; 1864) false false In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7930485141769201 1.0 114 0.8571428571428571 (it; was incorrectly indicated in; Thursday 's edition) false false In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . pobj(In_IN_0_0, edition_NN_3_15); possessive(Thursday_NNP_1_3, 's_POS_2_12); poss(edition_NN_3_15, Thursday_NNP_1_3); prep(indicated_VBN_8_44, In_IN_0_0); punct(indicated_VBN_8_44, ,_,_4_23); nsubjpass(indicated_VBN_8_44, it_PRP_5_25); auxpass(indicated_VBN_8_44, was_VBD_6_28); advmod(indicated_VBN_8_44, incorrectly_RB_7_32); ccomp(indicated_VBN_8_44, paid_VBN_13_73); punct(indicated_VBN_8_44, ._._22_119); det(union_NN_11_63, the_DT_10_59); complm(paid_VBN_13_73, that_IN_9_54); nsubj(paid_VBN_13_73, union_NN_11_63); aux(paid_VBN_13_73, had_VBD_12_69); dobj(paid_VBN_13_73, fee_NN_15_80); prep(paid_VBN_13_73, to_TO_16_84); det(fee_NN_15_80, a_DT_14_78); pobj(to_TO_16_84, Wright_NNP_21_112); amod(Wright_NNP_21_112, former_JJ_17_87); nn(Wright_NNP_21_112, House_NNP_18_94); nn(Wright_NNP_21_112, Speaker_NNP_19_100); nn(Wright_NNP_21_112, Jim_NNP_20_108) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7930485141769201 1.0 115 0.8582089552238806 (he; was traded as; a minor-leaguer) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7930485141769201 1.0 116 0.8592592592592593 (he; was traded on; December 5 , 1984) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7924241538907004 1.0 117 0.8602941176470589 (The episode; be directed by; David Grossman) false false The episode was written by Kevin Murphy and Kevin Etten and directed by David Grossman . det(episode_NN_1_4, The_DT_0_0); nsubjpass(written_VBN_3_16, episode_NN_1_4); auxpass(written_VBN_3_16, was_VBD_2_12); prep(written_VBN_3_16, by_IN_4_24); cc(written_VBN_3_16, and_CC_10_56); conj(written_VBN_3_16, directed_VBN_11_60); punct(written_VBN_3_16, ._._15_87); pobj(by_IN_4_24, Murphy_NNP_6_33); nn(Murphy_NNP_6_33, Kevin_NNP_5_27); cc(Murphy_NNP_6_33, and_CC_7_40); conj(Murphy_NNP_6_33, Etten_NNP_9_50); nn(Etten_NNP_9_50, Kevin_NNP_8_44); prep(directed_VBN_11_60, by_IN_12_69); pobj(by_IN_12_69, Grossman_NNP_14_78); nn(Grossman_NNP_14_78, David_NNP_13_72) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7916948573799331 0.9555 118 0.8613138686131386 (Wolfowitz 's tenure; was a notable success largely owing to; the fact) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7909563994214776 1.0 119 0.8623188405797102 (the 15-year debentures; can be redeemed after; Nov. 30 , 1992)[attrib=Mark said] false true Mark , an oil and gas concern , said the 15-year debentures are convertible before maturity at C$ 12.50 for each Mark common share , and can be redeemed at the company 's option , under certain conditions , after Nov. 30 , 1992 . punct(Mark_NNP_0_0, ,_,_1_5); appos(Mark_NNP_0_0, oil_NN_3_10); punct(Mark_NNP_0_0, ,_,_7_30); det(oil_NN_3_10, an_DT_2_7); cc(oil_NN_3_10, and_CC_4_14); conj(oil_NN_3_10, concern_NN_6_22); nn(concern_NN_6_22, gas_NN_5_18); nsubj(said_VBD_8_32, Mark_NNP_0_0); ccomp(said_VBD_8_32, convertible_JJ_13_64); punct(said_VBD_8_32, ._._44_228); det(debentures_NNS_11_49, the_DT_9_37); amod(debentures_NNS_11_49, 15-year_JJ_10_41); nsubjpass(convertible_JJ_13_64, debentures_NNS_11_49); cop(convertible_JJ_13_64, are_VBP_12_60); prep(convertible_JJ_13_64, before_IN_14_76); prep(convertible_JJ_13_64, at_IN_16_92); punct(convertible_JJ_13_64, ,_,_24_131); cc(convertible_JJ_13_64, and_CC_25_133); conj(convertible_JJ_13_64, redeemed_VBN_28_144); pobj(before_IN_14_76, maturity_NN_15_83); pobj(at_IN_16_92, C$_$_17_95); num(C$_$_17_95, 12.50_CD_18_98); prep(C$_$_17_95, for_IN_19_104); pobj(for_IN_19_104, share_NN_23_125); det(share_NN_23_125, each_DT_20_108); nn(share_NN_23_125, Mark_NNP_21_113); amod(share_NN_23_125, common_JJ_22_118); aux(redeemed_VBN_28_144, can_MD_26_137); auxpass(redeemed_VBN_28_144, be_VB_27_141); prep(redeemed_VBN_28_144, at_IN_29_153); punct(redeemed_VBN_28_144, ,_,_34_178); prep(redeemed_VBN_28_144, under_IN_35_180); punct(redeemed_VBN_28_144, ,_,_38_205); prep(redeemed_VBN_28_144, after_IN_39_207); pobj(at_IN_29_153, option_NN_33_171); det(company_NN_31_160, the_DT_30_156); possessive(company_NN_31_160, 's_POS_32_168); poss(option_NN_33_171, company_NN_31_160); pobj(under_IN_35_180, conditions_NNS_37_194); amod(conditions_NNS_37_194, certain_JJ_36_186); pobj(after_IN_39_207, Nov._NNP_40_213); num(Nov._NNP_40_213, 30_CD_41_218); punct(Nov._NNP_40_213, ,_,_42_221); num(Nov._NNP_40_213, 1992_CD_43_223) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7895677009465524 0.0254 120 0.8633093525179856 (The Mount Royal Arena; was an indoor arena at; the corner of Mount Royal and St . Urbain Street) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0254 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7882798815544154 0.7345 121 0.8642857142857143 (Researchers; placed identical samples of organic material -- litter -- on; the ground) false false Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . prep(Researchers_NNS_0_0, with_IN_1_12); pobj(with_IN_1_12, Service_NNP_5_37); det(Service_NNP_5_37, the_DT_2_17); nn(Service_NNP_5_37, Canadian_NNP_3_21); nn(Service_NNP_5_37, Forest_NNP_4_30); nsubj(placed_VBD_6_45, Researchers_NNS_0_0); dobj(placed_VBD_6_45, samples_NNS_8_62); prep(placed_VBD_6_45, on_IN_15_103); punct(placed_VBD_6_45, ._._23_143); amod(samples_NNS_8_62, identical_JJ_7_52); prep(samples_NNS_8_62, of_IN_9_70); dep(samples_NNS_8_62, litter_JJ_13_93); pobj(of_IN_9_70, material_NN_11_81); amod(material_NN_11_81, organic_JJ_10_73); punct(litter_JJ_13_93, --_:_12_90); punct(litter_JJ_13_93, --_:_14_100); pobj(on_IN_15_103, ground_NN_17_110); det(ground_NN_17_110, the_DT_16_106); prep(ground_NN_17_110, in_IN_18_117); pobj(in_IN_18_117, sites_NNS_20_123); num(sites_NNS_20_123, 21_CD_19_120); prep(sites_NNS_20_123, across_IN_21_129); pobj(across_IN_21_129, Canada_NNP_22_136) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.7864523259813375 0.9555 121 0.8581560283687943 (It; is the presence of; internal and external " enemies) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.785157781187319 0.0052 122 0.8591549295774648 (Nero; grew up in; Bedonia and in Milan) false false Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0052 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.7841133351787181 1.0 122 0.8531468531468531 (Each note; is being offered at; maturity) false false Each note is being offered at $ 308.32 per $ 1,000 principal amount at maturity , representing an 8 % yield to maturity . det(note_NN_1_5, Each_DT_0_0); nsubjpass(offered_VBN_4_19, note_NN_1_5); aux(offered_VBN_4_19, is_VBZ_2_10); auxpass(offered_VBN_4_19, being_VBG_3_13); prep(offered_VBN_4_19, at_IN_5_27); prep(offered_VBN_4_19, at_IN_13_68); punct(offered_VBN_4_19, ,_,_15_80); xcomp(offered_VBN_4_19, representing_VBG_16_82); punct(offered_VBN_4_19, ._._23_120); pobj(at_IN_5_27, $_$_6_30); num($_$_6_30, 308.32_CD_7_32); prep($_$_6_30, per_IN_8_39); pobj(per_IN_8_39, amount_NN_12_61); dep($_$_9_43, 1,000_CD_10_45); amod(amount_NN_12_61, $_$_9_43); nn(amount_NN_12_61, principal_NN_11_51); pobj(at_IN_13_68, maturity_NN_14_71); dobj(representing_VBG_16_82, yield_NN_20_102); dep(%_NN_19_100, 8_CD_18_98); det(yield_NN_20_102, an_DT_17_95); amod(yield_NN_20_102, %_NN_19_100); prep(yield_NN_20_102, to_TO_21_108); pobj(to_TO_21_108, maturity_NN_22_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7833788418654803 0.0216 123 0.8541666666666666 (The failure in Oakland of the freeway segment; was; the deadliest aspect of the quake) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0216 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7827172467868465 0.9555 124 0.8551724137931035 (Ji-an; is a township near; Hualien City) false false Ji-an , Hualien , is a township near Hualien City , Taiwan . punct(Ji-an_NNP_0_0, ,_,_1_6); appos(Ji-an_NNP_0_0, Hualien_NNP_2_8); punct(Ji-an_NNP_0_0, ,_,_3_16); nsubj(township_NN_6_23, Ji-an_NNP_0_0); cop(township_NN_6_23, is_VBZ_4_18); det(township_NN_6_23, a_DT_5_21); prep(township_NN_6_23, near_IN_7_32); punct(township_NN_6_23, ._._12_59); pobj(near_IN_7_32, City_NNP_9_45); nn(City_NNP_9_45, Hualien_NNP_8_37); punct(City_NNP_9_45, ,_,_10_50); appos(City_NNP_9_45, Taiwan_NNP_11_52) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7827172467868465 0.9555 125 0.8561643835616438 (Lakitelek; is a large village in; Bics-Kiskun county) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7827172467868465 0.9555 126 0.8571428571428571 (North Luffenham; is a village in; Rutland) false false North Luffenham is a village in Rutland , in the East Midlands of England . nn(Luffenham_NNP_1_6, North_NNP_0_0); nsubj(village_NN_4_21, Luffenham_NNP_1_6); cop(village_NN_4_21, is_VBZ_2_16); det(village_NN_4_21, a_DT_3_19); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_7_40); prep(village_NN_4_21, in_IN_8_42); punct(village_NN_4_21, ._._14_74); pobj(in_IN_5_29, Rutland_NNP_6_32); pobj(in_IN_8_42, Midlands_NNP_11_54); det(Midlands_NNP_11_54, the_DT_9_45); nn(Midlands_NNP_11_54, East_NNP_10_49); prep(Midlands_NNP_11_54, of_IN_12_63); pobj(of_IN_12_63, England_NNP_13_66) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7827172467868465 0.9555 127 0.8581081081081081 (Plouzani; is a commune in; northwestern France) false false Plouzani is a commune in the Finistre department in Bretagne in northwestern France . nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7808625528198313 1.0 128 0.8590604026845637 (Blue Water High; is aired twice on; the local satellite system) false false In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . pobj(In_IN_0_0, Africa_NNP_2_9); nn(Africa_NNP_2_9, South_NNP_1_3); nn(High_NNP_6_29, Blue_NNP_4_18); nn(High_NNP_6_29, Water_NNP_5_23); prep(aired_VBN_8_37, In_IN_0_0); punct(aired_VBN_8_37, ,_,_3_16); nsubjpass(aired_VBN_8_37, High_NNP_6_29); auxpass(aired_VBN_8_37, is_VBZ_7_34); advmod(aired_VBN_8_37, twice_RB_9_43); tmod(aired_VBN_8_37, week_NN_11_51); prep(aired_VBN_8_37, on_IN_12_56); prep(aired_VBN_8_37, on_IN_14_62); punct(aired_VBN_8_37, ,_,_19_92); conj(aired_VBN_8_37, DSTV_VB_20_94); punct(aired_VBN_8_37, ._._24_114); det(week_NN_11_51, a_DT_10_49); pobj(on_IN_12_56, Go_NNP_13_59); pobj(on_IN_14_62, system_NN_18_85); det(system_NN_18_85, the_DT_15_65); amod(system_NN_18_85, local_JJ_16_69); nn(system_NN_18_85, satellite_NN_17_75); prep(DSTV_VB_20_94, on_IN_21_99); pobj(on_IN_21_99, channel_NN_22_102); num(channel_NN_22_102, 123_CD_23_110) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7794905475666135 1.0 128 0.8533333333333334 (the South; were forced into; an inferior status) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7786004111478168 0.3797 128 0.847682119205298 (Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians; the coffins of captured Israeli soldiers) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7756531227056351 0.0155 128 0.8421052631578947 (results; be pseudoobscura among; at least four loci) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7756531227056351 0.0155 129 0.8431372549019608 (Imperial; be charged with; breach of fiduciary duty) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7729679519394232 0.0416 130 0.8441558441558441 (Certain species; have; an especially large impact)[enabler=because they are highly abundant or play a pivotal role in community dynamics] true false Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . amod(species_NNS_1_8, Certain_JJ_0_0); nsubj(have_VBP_2_16, species_NNS_1_8); dobj(have_VBP_2_16, impact_NN_6_41); advcl(have_VBP_2_16, abundant_JJ_17_111); punct(have_VBP_2_16, ._._26_165); advmod(large_JJ_5_35, especially_RB_4_24); det(impact_NN_6_41, an_DT_3_21); amod(impact_NN_6_41, large_JJ_5_35); prep(impact_NN_6_41, on_IN_7_48); pobj(on_IN_7_48, structure_NN_9_55); det(structure_NN_9_55, the_DT_8_51); prep(structure_NN_9_55, of_IN_10_65); pobj(of_IN_10_65, communities_NNS_12_75); amod(communities_NNS_12_75, entire_JJ_11_68); mark(abundant_JJ_17_111, because_IN_13_87); nsubj(abundant_JJ_17_111, they_PRP_14_95); cop(abundant_JJ_17_111, are_VBP_15_100); advmod(abundant_JJ_17_111, highly_RB_16_104); cc(abundant_JJ_17_111, or_CC_18_120); conj(abundant_JJ_17_111, play_VB_19_123); dobj(play_VB_19_123, role_NN_22_138); prep(play_VB_19_123, in_IN_23_143); det(role_NN_22_138, a_DT_20_128); amod(role_NN_22_138, pivotal_JJ_21_130); pobj(in_IN_23_143, dynamics_NNS_25_156); nn(dynamics_NNS_25_156, community_NN_24_146) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7711522341873792 0.3797 131 0.8451612903225807 (Cordis; sold two years ago; its pacemaker operations) false false Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_TO_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); dep(ago_RB_7_47, years_NNS_6_41); pobj(to_TO_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.7711522341873792 0.3797 131 0.8397435897435898 (Years; met again; Beatrice) false false Years after his marriage to Gemma , he met Beatrice again . prep(Years_NNS_0_0, after_IN_1_6); pobj(after_IN_1_6, marriage_NN_3_16); poss(marriage_NN_3_16, his_PRP$_2_12); prep(marriage_NN_3_16, to_TO_4_25); pobj(to_TO_4_25, Gemma_NNP_5_28); nsubj(met_VBD_8_39, Years_NNS_0_0); punct(met_VBD_8_39, ,_,_6_34); nsubj(met_VBD_8_39, he_PRP_7_36); dobj(met_VBD_8_39, Beatrice_NNP_9_43); advmod(met_VBD_8_39, again_RB_10_52); punct(met_VBD_8_39, ._._11_58) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7710605947071337 0.1349 132 0.8407643312101911 (Differentiated cells; generally do not divide in; culture) false false Differentiated cells from animals generally do not divide in culture , much less develop into the multiple cell types of a new organism . amod(cells_NNS_1_15, Differentiated_JJ_0_0); prep(cells_NNS_1_15, from_IN_2_21); pobj(from_IN_2_21, animals_NNS_3_26); nsubj(divide_VB_7_51, cells_NNS_1_15); advmod(divide_VB_7_51, generally_RB_4_34); aux(divide_VB_7_51, do_VBP_5_44); neg(divide_VB_7_51, not_RB_6_47); prep(divide_VB_7_51, in_IN_8_58); punct(divide_VB_7_51, ,_,_10_69); ccomp(divide_VB_7_51, develop_VB_13_81); punct(divide_VB_7_51, ._._23_136); pobj(in_IN_8_58, culture_NN_9_61); advmod(much_RB_11_71, less_RBR_12_76); advmod(develop_VB_13_81, much_RB_11_71); prep(develop_VB_13_81, into_IN_14_89); pobj(into_IN_14_89, types_NNS_18_112); det(types_NNS_18_112, the_DT_15_94); amod(types_NNS_18_112, multiple_JJ_16_98); nn(types_NNS_18_112, cell_NN_17_107); prep(types_NNS_18_112, of_IN_19_118); pobj(of_IN_19_118, organism_NN_22_127); det(organism_NN_22_127, a_DT_20_121); amod(organism_NN_22_127, new_JJ_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7677924739938856 0.7345 133 0.8417721518987342 (the mining company; posted a 40 % drop in profit for; the nine months) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7677924739938856 0.7345 134 0.8427672955974843 (the airline; launched codeshare flights with Lufthansa in; 2005) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7677924739938856 0.7345 134 0.8375 (researchers; transformed the differentiated cells in; these cases) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7677924739938856 0.7345 134 0.8322981366459627 (researchers; had with; a large genome) false false With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . pobj(With_IN_0_0, genome_NN_4_18); predet(genome_NN_4_18, such_PDT_1_5); det(genome_NN_4_18, a_DT_2_10); amod(genome_NN_4_18, large_JJ_3_12); prep(had_VBD_7_39, With_IN_0_0); punct(had_VBD_7_39, ,_,_5_25); nsubj(had_VBD_7_39, researchers_NNS_6_27); xcomp(had_VBD_7_39, carry_VB_9_46); punct(had_VBD_7_39, ,_,_16_86); xcomp(had_VBD_7_39, cloning_VBG_17_88); punct(had_VBD_7_39, ._._22_119); aux(carry_VB_9_46, to_TO_8_43); prt(carry_VB_9_46, out_RP_10_52); dobj(carry_VB_9_46, rounds_NNS_12_64); amod(rounds_NNS_12_64, several_JJ_11_56); prep(rounds_NNS_12_64, of_IN_13_71); pobj(of_IN_13_71, cutting_NN_15_78); nn(cutting_NN_15_78, DNA_NNP_14_74); punct(cloning_VBG_17_88, ,_,_18_96); cc(cloning_VBG_17_88, and_CC_19_98); conj(cloning_VBG_17_88, mapping_NN_21_111); amod(mapping_NN_21_111, physical_JJ_20_102) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7664526353525477 0.7345 135 0.8333333333333334 (Rome; asked Antiochus III the Great of Syria for; help) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.7623618186281583 0.9555 136 0.8343558282208589 (The Cancer Genome Atlas; is another example of; systems biology which a large group of interacting genes and gene products are analyzed together) false false The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.9555 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7589786263829497 0.7345 137 0.8353658536585366 (he; dismissed against; the touring nation) false false Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.7589786263829497 0.7345 137 0.8303030303030303 (Jane Bennet; acclaimed miniseries Lost in; Austen) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7587665101893266 0.3797 138 0.8313253012048193 (Gruner + Jahr; exited; the U.S. magazine business) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7587665101893266 0.3797 138 0.8263473053892215 (shareholder Max Grill of New York; charged; Imperial) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7587665101893266 0.3797 139 0.8273809523809523 (he; had; three tackles) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7583399900511701 1.0 140 0.8284023668639053 (she; was kidnapped in; Baghdad) false false Carroll became an international cause clbre when she was kidnapped in Baghdad on January 7 , 2006 . nsubj(clbre_NN_5_38, Carroll_NNP_0_0); cop(clbre_NN_5_38, became_VBD_1_8); det(clbre_NN_5_38, an_DT_2_15); amod(clbre_NN_5_38, international_JJ_3_18); nn(clbre_NN_5_38, cause_NN_4_32); advcl(clbre_NN_5_38, kidnapped_VBN_9_57); punct(clbre_NN_5_38, ._._17_98); advmod(kidnapped_VBN_9_57, when_WRB_6_44); nsubjpass(kidnapped_VBN_9_57, she_PRP_7_49); auxpass(kidnapped_VBN_9_57, was_VBD_8_53); prep(kidnapped_VBN_9_57, in_IN_10_67); prep(kidnapped_VBN_9_57, on_IN_12_78); pobj(in_IN_10_67, Baghdad_NNP_11_70); pobj(on_IN_12_78, January_NNP_13_81); num(January_NNP_13_81, 7_CD_14_89); punct(January_NNP_13_81, ,_,_15_91); num(January_NNP_13_81, 2006_CD_16_93) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7583399900511701 1.0 141 0.8294117647058824 (he; was hit on; the hand) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7583399900511701 1.0 142 0.8304093567251462 (he; was traded by; the New York Yankees) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7583399900511701 1.0 143 0.8313953488372093 (he; was traded to; the Oakland Athletics) false false On December 5 , 1984 , as a minor-leaguer , he was traded by the New York Yankees with Tim Birtsas , Jay Howell , Stan Javier , and Jose Rijo to the Oakland Athletics for Rickey Henderson , Bert Bradley , and cash . pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7570364553738984 1.0 144 0.8323699421965318 (3.4 million additional shares; will be offered in; the U.S.) false false Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7555412875307439 0.7345 144 0.8275862068965517 (he; appointed as; governors) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7533814384237645 0.3797 145 0.8285714285714286 (Achmat; publicly refused to take; AIDS medications)[enabler=until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy] true false Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . nsubj(refused_VBD_2_16, Achmat_NNP_0_0); advmod(refused_VBD_2_16, publicly_RB_1_7); xcomp(refused_VBD_2_16, take_VB_4_27); punct(refused_VBD_2_16, ._._34_194); aux(take_VB_4_27, to_TO_3_24); dobj(take_VB_4_27, medications_NNS_6_37); advcl(take_VB_4_27, had_VBD_12_75); nn(medications_NNS_6_37, AIDS_NNP_5_32); rcmod(all_DT_8_55, needed_VBD_10_63); nsubj(needed_VBD_10_63, who_WP_9_59); dobj(needed_VBD_10_63, them_PRP_11_70); mark(had_VBD_12_75, until_IN_7_49); nsubj(had_VBD_12_75, all_DT_8_55); dobj(had_VBD_12_75, access_NN_13_79); prep(access_NN_13_79, to_TO_14_86); punct(access_NN_13_79, ,_,_16_94); rcmod(access_NN_13_79, drew_VBD_18_102); pobj(to_TO_14_86, them_PRP_15_89); nsubj(drew_VBD_18_102, which_WDT_17_96); dobj(drew_VBD_18_102, Mandela_NNP_22_131); xcomp(drew_VBD_18_102, plead_VB_24_142); amod(Mandela_NNP_22_131, former_JJ_19_107); nn(Mandela_NNP_22_131, President_NNP_20_114); nn(Mandela_NNP_22_131, Nelson_NNP_21_124); aux(plead_VB_24_142, to_TO_23_139); prep(plead_VB_24_142, with_IN_25_148); prep(plead_VB_24_142, at_IN_27_160); pobj(with_IN_25_148, Achmat_NNP_26_153); pobj(at_IN_27_160, home_NN_29_167); poss(home_NN_29_167, his_PRP$_28_163); infmod(home_NN_29_167, begin_VB_31_175); aux(begin_VB_31_175, to_TO_30_172); dobj(begin_VB_31_175, therapy_NN_33_186); nn(therapy_NN_33_186, drug_NN_32_181) 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7532251863150602 0.7345 146 0.8295454545454546 (He; also met with; Lao and Vietnamese leaders) false false He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . nsubj(made_VBN_2_7, He_PRP_0_0); aux(made_VBN_2_7, has_VBZ_1_3); dobj(made_VBN_2_7, trips_NNS_4_21); cc(made_VBN_2_7, and_CC_9_47); conj(made_VBN_2_7, met_VBD_11_56); punct(made_VBN_2_7, ,_,_19_101); amod(trips_NNS_4_21, frequent_JJ_3_12); prep(trips_NNS_4_21, to_TO_5_27); pobj(to_TO_5_27, Laos_NNP_6_30); cc(Laos_NNP_6_30, and_CC_7_35); conj(Laos_NNP_6_30, Vietnam_NNP_8_39); advmod(met_VBD_11_56, also_RB_10_51); prep(met_VBD_11_56, with_IN_12_60); pobj(with_IN_12_60, Lao_NNP_13_65); cc(Lao_NNP_13_65, and_CC_14_69); conj(Lao_NNP_13_65, leaders_NNS_16_84); prep(Lao_NNP_13_65, in_IN_17_92); amod(leaders_NNS_16_84, Vietnamese_JJ_15_73); pobj(in_IN_17_92, Hanoi_NNP_18_95); null(,_,_19_101, City_NNP_23_115); nn(City_NNP_23_115, Ho_NNP_20_103); nn(City_NNP_23_115, Chi_NNP_21_106); nn(City_NNP_23_115, Minh_NNP_22_110); punct(City_NNP_23_115, ,_,_24_120); conj(City_NNP_23_115, Jakarta_NNP_25_122); punct(City_NNP_23_115, ,_,_26_130); conj(City_NNP_23_115, York_NNP_28_136); punct(City_NNP_23_115, ,_,_31_153); cc(City_NNP_23_115, and_CC_32_155); conj(City_NNP_23_115, Paris_NNP_33_159); punct(City_NNP_23_115, ._._34_165); nn(York_NNP_28_136, New_NNP_27_132); punct(York_NNP_28_136, ,_,_29_141); conj(York_NNP_28_136, Vientiane_NNP_30_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7532251863150602 0.7345 147 0.8305084745762712 (He; played eleven seasons as; an outfielder) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7532251863150602 0.7345 148 0.8314606741573034 (He; played eleven seasons in; the majors) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7532251863150602 0.7345 149 0.8324022346368715 (They; headlined in; late 2006) false false They headlined in late 2006 with Saosin and Bleeding Through as supporters . nsubj(headlined_VBD_1_5, They_PRP_0_0); prep(headlined_VBD_1_5, in_IN_2_15); prep(headlined_VBD_1_5, Through_IN_9_53); punct(headlined_VBD_1_5, ._._12_75); pobj(in_IN_2_15, 2006_CD_4_23); amod(2006_CD_4_23, late_JJ_3_18); prep(2006_CD_4_23, with_IN_5_28); pobj(with_IN_5_28, Saosin_NNP_6_33); cc(Saosin_NNP_6_33, and_CC_7_40); conj(Saosin_NNP_6_33, Bleeding_NNP_8_44); dep(Through_IN_9_53, as_IN_10_61); pobj(as_IN_10_61, supporters_NNS_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7519030881345958 0.7345 150 0.8333333333333334 (shareholder Max Grill of New York; charged Imperial , its top executives and directors in; a separate complaint also filed in federal court) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.750546447057629 0.3797 151 0.8342541436464088 (The car; has had; two revisions) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.7497565669216433 0.0086 151 0.8296703296703297 (a Whore; was a co-founder member with; Sir Ian McKellen and Edward Petherbridge , of the democratically run) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0086 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.749327494115084 0.3797 151 0.825136612021858 (2005 Coup; d; 'etat plot) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.748879728343442 0.0416 152 0.8260869565217391 (the hydrogen bonds; Collectively hold together a phenomenon called cohesion; the substance) false false Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . det(bonds_NNS_4_28, the_DT_2_15); nn(bonds_NNS_4_28, hydrogen_NN_3_19); advmod(hold_VBP_5_34, Collectively_RB_0_0); punct(hold_VBP_5_34, ,_,_1_13); nsubj(hold_VBP_5_34, bonds_NNS_4_28); dobj(hold_VBP_5_34, substance_NN_7_43); advmod(hold_VBP_5_34, together_RB_8_53); punct(hold_VBP_5_34, ,_,_9_62); dobj(hold_VBP_5_34, phenomenon_NN_11_66); punct(hold_VBP_5_34, ._._14_93); det(substance_NN_7_43, the_DT_6_39); det(phenomenon_NN_11_66, a_DT_10_64); partmod(phenomenon_NN_11_66, called_VBN_12_77); dep(called_VBN_12_77, cohesion_NN_13_84) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.746204714628645 0.9555 152 0.8216216216216217 (the squadron; be an airfield on; Bougainville) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7412433242588633 0.0577 153 0.8225806451612904 (He; was elected; a member of the Alabama House of Representatives) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7401960931883838 0.7345 154 0.8235294117647058 (Riley; re-emerged as; a star) false false After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7401960931883838 0.7345 155 0.824468085106383 (Riley; re-emerged in; the early 2000s) false false After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7401960931883838 0.7345 156 0.8253968253968254 (he; was on; 4) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7401960931883838 0.7345 156 0.8210526315789474 (it; appeared to; Flemming) false false During the period between one cell division and the next , it appeared to Flemming that the cell was simply growing larger . pobj(During_IN_0_0, period_NN_2_11); punct(During_IN_0_0, ._._22_123); det(period_NN_2_11, the_DT_1_7); prep(period_NN_2_11, between_IN_3_18); pobj(between_IN_3_18, division_NN_6_35); num(division_NN_6_35, one_CD_4_26); nn(division_NN_6_35, cell_NN_5_30); cc(division_NN_6_35, and_CC_7_44); conj(division_NN_6_35, next_JJ_9_52); det(next_JJ_9_52, the_DT_8_48); punct(next_JJ_9_52, ,_,_10_57); ccomp(next_JJ_9_52, appeared_VBD_12_62); nsubj(appeared_VBD_12_62, it_PRP_11_59); prep(appeared_VBD_12_62, to_TO_13_71); ccomp(appeared_VBD_12_62, growing_VBG_20_108); pobj(to_TO_13_71, Flemming_NNP_14_74); det(cell_NN_17_92, the_DT_16_88); complm(growing_VBG_20_108, that_IN_15_83); nsubj(growing_VBG_20_108, cell_NN_17_92); aux(growing_VBG_20_108, was_VBD_18_97); advmod(growing_VBG_20_108, simply_RB_19_101); acomp(growing_VBG_20_108, larger_JJR_21_116) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7401960931883838 0.7345 157 0.8219895287958116 (researchers; transformed the differentiated cells into; ES cells) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7401960931883838 0.7345 158 0.8229166666666666 (Manager Bill McKechnie; called on; Nuxhall) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7363722315391956 0.0444 159 0.8238341968911918 (He; was elected a member of the Alabama House of Representatives in; 1826) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7363722315391956 0.0444 160 0.8247422680412371 (His regiments; had been decimated in; earlier fighting) false false His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7362263765677146 0.0416 161 0.8256410256410256 (Land snails; play; a key role)[enabler=while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes] true false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7360683474444599 0.0432 162 0.826530612244898 (Byrom; was born in; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0432 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7351868107430106 1.0 163 0.8274111675126904 (him; be decapitated by; the Hyperforce) false false The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . det(King_NNP_2_13, The_DT_0_0); nn(King_NNP_2_13, Skeleton_NNP_1_4); nsubj(merged_VBD_4_24, King_NNP_2_13); advmod(merged_VBD_4_24, later_RB_3_18); prep(merged_VBD_4_24, with_IN_5_31); tmod(merged_VBD_4_24, Dark_NNP_8_46); punct(merged_VBD_4_24, ,_,_10_55); xcomp(merged_VBD_4_24, have_VB_13_65); punct(merged_VBD_4_24, ._._19_104); pobj(with_IN_5_31, demon_NN_7_40); det(demon_NN_7_40, the_DT_6_36); num(Dark_NNP_8_46, One_CD_9_51); advmod(have_VB_13_65, only_RB_11_57); aux(have_VB_13_65, to_TO_12_62); ccomp(have_VB_13_65, decapitated_VBN_15_74); nsubjpass(decapitated_VBN_15_74, him_PRP_14_70); prep(decapitated_VBN_15_74, by_IN_16_86); pobj(by_IN_16_86, Hyperforce_NNP_18_93); det(Hyperforce_NNP_18_93, the_DT_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7326146164862852 0.3797 164 0.8282828282828283 (Rage; left; Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel) false false After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7326146164862852 0.3797 165 0.8291457286432161 (the American scientist Wendell Stanley; crystallized; the infectious particle now known as tobacco mosaic virus) false false His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . poss(suspicions_NNS_1_4, His_PRP$_0_0); nsubjpass(confirmed_VBN_3_20, suspicions_NNS_1_4); auxpass(confirmed_VBN_3_20, were_VBD_2_15); prep(confirmed_VBN_3_20, in_IN_4_30); punct(confirmed_VBN_3_20, ._._23_155); pobj(in_IN_4_30, 1935_CD_5_33); dep(1935_CD_5_33, crystallized_VBD_12_82); det(Stanley_NNP_11_74, the_DT_7_43); amod(Stanley_NNP_11_74, American_JJ_8_47); nn(Stanley_NNP_11_74, scientist_NN_9_56); nn(Stanley_NNP_11_74, Wendell_NNP_10_66); advmod(crystallized_VBD_12_82, when_WRB_6_38); nsubj(crystallized_VBD_12_82, Stanley_NNP_11_74); dobj(crystallized_VBD_12_82, particle_NN_15_110); det(particle_NN_15_110, the_DT_13_95); amod(particle_NN_15_110, infectious_JJ_14_99); punct(particle_NN_15_110, ,_,_16_119); partmod(particle_NN_15_110, known_VBN_18_125); advmod(known_VBN_18_125, now_RB_17_121); prep(known_VBN_18_125, as_IN_19_131); pobj(as_IN_19_131, virus_NN_22_149); nn(virus_NN_22_149, tobacco_NN_20_134); nn(virus_NN_22_149, mosaic_NN_21_142) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7320577633232332 0.7345 166 0.83 (Rage; left Death Row Records after; the release of her album and a guest-appearance) false false After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7311170863177398 0.0444 167 0.8308457711442786 (its efforts begun in 1989; have led to; the introduction of bills to establish evenhanded procedures)[attrib=The group 's Mark Cahoon says] false true The group 's Mark Cahoon says its efforts begun in 1989 have led to the introduction of bills in Massachusetts , Minnesota and Colorado to establish evenhanded procedures affecting all kinds of taxpayers . det(group_NN_1_4, The_DT_0_0); possessive(group_NN_1_4, 's_POS_2_10); poss(Cahoon_NNP_4_18, group_NN_1_4); nn(Cahoon_NNP_4_18, Mark_NNP_3_13); nsubj(says_VBZ_5_25, Cahoon_NNP_4_18); ccomp(says_VBZ_5_25, led_VBN_12_61); punct(says_VBZ_5_25, ._._33_204); poss(efforts_NNS_7_34, its_PRP$_6_30); partmod(efforts_NNS_7_34, begun_VBN_8_42); prep(begun_VBN_8_42, in_IN_9_48); pobj(in_IN_9_48, 1989_CD_10_51); nsubj(led_VBN_12_61, efforts_NNS_7_34); aux(led_VBN_12_61, have_VBP_11_56); prep(led_VBN_12_61, to_TO_13_65); pobj(to_TO_13_65, introduction_NN_15_72); det(introduction_NN_15_72, the_DT_14_68); prep(introduction_NN_15_72, of_IN_16_85); prep(introduction_NN_15_72, in_IN_18_94); infmod(introduction_NN_15_72, establish_VB_25_139); pobj(of_IN_16_85, bills_NNS_17_88); pobj(in_IN_18_94, Massachusetts_NNP_19_97); punct(Massachusetts_NNP_19_97, ,_,_20_111); conj(Massachusetts_NNP_19_97, Minnesota_NNP_21_113); cc(Massachusetts_NNP_19_97, and_CC_22_123); conj(Massachusetts_NNP_19_97, Colorado_NNP_23_127); aux(establish_VB_25_139, to_TO_24_136); dobj(establish_VB_25_139, procedures_NNS_27_160); amod(procedures_NNS_27_160, evenhanded_JJ_26_149); partmod(procedures_NNS_27_160, affecting_VBG_28_171); dobj(affecting_VBG_28_171, kinds_NNS_30_185); det(kinds_NNS_30_185, all_DT_29_181); prep(kinds_NNS_30_185, of_IN_31_191); pobj(of_IN_31_191, taxpayers_NNS_32_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0444 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7305601511181097 0.0216 167 0.8267326732673267 (Cell walls; were; first) false false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7305053467832321 0.7345 168 0.8275862068965517 (Greyston Bakery; moved in; 2004) false false In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . pobj(In_IN_0_0, 2004_CD_1_3); nn(Bakery_NNP_4_19, Greyston_NNP_3_10); prep(moved_VBD_5_26, In_IN_0_0); punct(moved_VBD_5_26, ,_,_2_8); nsubj(moved_VBD_5_26, Bakery_NNP_4_19); prep(moved_VBD_5_26, to_TO_6_32); punct(moved_VBD_5_26, ._._17_96); pobj(to_TO_6_32, facility_NN_9_44); det(facility_NN_9_44, a_DT_7_35); amod(facility_NN_9_44, larger_JJR_8_37); partmod(facility_NN_9_44, designed_VBN_10_53); prep(designed_VBN_10_53, by_IN_11_62); xcomp(designed_VBN_10_53, accommodate_VB_15_77); pobj(by_IN_11_62, Lin_NNP_13_70); nn(Lin_NNP_13_70, Maya_NNP_12_65); aux(accommodate_VB_15_77, to_TO_14_74); dobj(accommodate_VB_15_77, growth_NN_16_89) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7305053467832321 0.7345 169 0.8284313725490197 (Gruner + Jahr; exited the U.S. magazine business in; 2005) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7305053467832321 0.7345 170 0.8292682926829268 (he; returned once again in; 2008) false false In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . pobj(In_IN_0_0, 2008_CD_1_3); prep(returned_VBD_3_11, In_IN_0_0); nsubj(returned_VBD_3_11, he_PRP_2_8); advmod(returned_VBD_3_11, again_RB_5_25); xcomp(returned_VBD_3_11, perform_VB_7_34); punct(returned_VBD_3_11, ._._28_142); advmod(again_RB_5_25, once_RB_4_20); aux(perform_VB_7_34, to_TO_6_31); prep(perform_VB_7_34, as_IN_8_42); pobj(as_IN_8_42, part_NN_10_47); det(part_NN_10_47, a_DT_9_45); prep(part_NN_10_47, of_IN_11_52); pobj(of_IN_11_52, two-hander_JJ_13_57); det(two-hander_JJ_13_57, a_DT_12_55); prep(two-hander_JJ_13_57, with_IN_14_68); prep(two-hander_JJ_13_57, in_IN_17_85); punct(two-hander_JJ_13_57, -_:_20_99); dep(two-hander_JJ_13_57, Predator_NNP_27_133); pobj(with_IN_14_68, Robins_NNP_16_78); nn(Robins_NNP_16_78, John_NNP_15_73); pobj(in_IN_17_85, show_NN_19_94); poss(show_NN_19_94, their_PRP$_18_88); nn(Predator_NNP_27_133, Carl_NNP_21_101); nn(Predator_NNP_27_133, Donnelly_NNP_22_106); nn(Predator_NNP_27_133, Vs_NNP_23_115); nn(Predator_NNP_27_133, John_NNP_24_118); nn(Predator_NNP_27_133, Robins_NNP_25_123); nn(Predator_NNP_27_133, Vs_NNP_26_130) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7305053467832321 0.7345 171 0.8300970873786407 (Lenin; dispatched Stalin in; May 1918) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7305053467832321 0.7345 171 0.8260869565217391 (Loral; closed down 37.5 cents in; New York Stock Exchange composite trading) false false In New York Stock Exchange composite trading , Loral closed at $ 33.25 , down 37.5 cents . pobj(In_IN_0_0, trading_NN_6_37); nn(trading_NN_6_37, New_NNP_1_3); nn(trading_NN_6_37, York_NNP_2_7); nn(trading_NN_6_37, Stock_NNP_3_12); nn(trading_NN_6_37, Exchange_NNP_4_18); amod(trading_NN_6_37, composite_JJ_5_27); prep(closed_VBD_9_53, In_IN_0_0); punct(closed_VBD_9_53, ,_,_7_45); nsubj(closed_VBD_9_53, Loral_NNP_8_47); prep(closed_VBD_9_53, at_IN_10_60); punct(closed_VBD_9_53, ,_,_13_71); advmod(closed_VBD_9_53, down_RB_14_73); punct(closed_VBD_9_53, ._._17_89); pobj(at_IN_10_60, $_$_11_63); num($_$_11_63, 33.25_CD_12_65); dep(down_RB_14_73, cents_NNS_16_83); num(cents_NNS_16_83, 37.5_CD_15_78) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7305053467832321 0.7345 171 0.8221153846153846 (Knight-Ridder; closed down 37.5 cents in; New York Stock Exchange composite trading) false false In New York Stock Exchange composite trading yesterday , Knight-Ridder closed at $ 51.75 , down 37.5 cents . pobj(In_IN_0_0, trading_NN_6_37); nn(trading_NN_6_37, New_NNP_1_3); nn(trading_NN_6_37, York_NNP_2_7); nn(trading_NN_6_37, Stock_NNP_3_12); nn(trading_NN_6_37, Exchange_NNP_4_18); amod(trading_NN_6_37, composite_JJ_5_27); prep(closed_VBD_10_71, In_IN_0_0); tmod(closed_VBD_10_71, yesterday_NN_7_45); punct(closed_VBD_10_71, ,_,_8_55); nsubj(closed_VBD_10_71, Knight-Ridder_NNP_9_57); prep(closed_VBD_10_71, at_IN_11_78); punct(closed_VBD_10_71, ,_,_14_89); advmod(closed_VBD_10_71, down_RB_15_91); punct(closed_VBD_10_71, ._._18_107); pobj(at_IN_11_78, $_$_12_81); num($_$_12_81, 51.75_CD_13_83); dep(down_RB_15_91, cents_NNS_17_101); num(cents_NNS_17_101, 37.5_CD_16_96) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7305053467832321 0.7345 172 0.8229665071770335 (the number of jobless; rose 0.1 % in; September) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7305053467832321 0.7345 173 0.8238095238095238 (he; married natural resources attorney Susan Daggett on; October 26 , 1997) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7302887378689945 0.7345 173 0.8199052132701422 (the mining company; posted a 40 % drop in profit on; a 6 % rise) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7302887378689945 0.7345 174 0.8207547169811321 (the number of jobless; rose 0.1 % from; the previous month) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7302887378689945 0.7345 175 0.8215962441314554 (the number of jobless; rose 0.1 % to; 2.5 million) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7302600584980709 0.4031 176 0.822429906542056 (annuals; as are staple food crops including; legumes and cereal grains) false false Many wildflowers are annuals , as are most staple food crops , including legumes and cereal grains such as wheat and rice . amod(wildflowers_NNS_1_5, Many_JJ_0_0); nsubj(annuals_NNS_3_21, wildflowers_NNS_1_5); cop(annuals_NNS_3_21, are_VBP_2_17); punct(annuals_NNS_3_21, ,_,_4_29); appos(annuals_NNS_3_21, crops_NNS_10_55); punct(annuals_NNS_3_21, ._._22_122); advmod(staple_JJ_8_43, most_RBS_7_38); advmod(crops_NNS_10_55, as_RB_5_31); cop(crops_NNS_10_55, are_VBP_6_34); amod(crops_NNS_10_55, staple_JJ_8_43); nn(crops_NNS_10_55, food_NN_9_50); punct(crops_NNS_10_55, ,_,_11_61); prep(crops_NNS_10_55, including_VBG_12_63); pobj(including_VBG_12_63, legumes_NNS_13_73); cc(legumes_NNS_13_73, and_CC_14_81); conj(legumes_NNS_13_73, grains_NNS_16_92); prep(legumes_NNS_13_73, as_IN_18_104); nn(grains_NNS_16_92, cereal_NN_15_85); dep(as_IN_18_104, such_JJ_17_99); pobj(as_IN_18_104, wheat_NN_19_107); cc(wheat_NN_19_107, and_CC_20_113); conj(wheat_NN_19_107, rice_NN_21_117) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7292680217851115 0.0155 177 0.8232558139534883 (its pacemaker operations; be sold two years ago to; Telectronics Holding Ltd. of Australia) false false Cordis sold its pacemaker operations two years ago to Telectronics Holding Ltd. of Australia . nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_TO_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); dep(ago_RB_7_47, years_NNS_6_41); pobj(to_TO_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7292680217851115 0.0155 178 0.8240740740740741 (Jonathan Groff; be replaced in; the Broadway production of the musical Spring Awakening) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7292680217851115 0.0155 179 0.8248847926267281 (Jonathan Groff; be replaced in; the lead role of Melchior Gabor) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7292680217851115 0.0155 180 0.8256880733944955 (Stalin; be dispatched to; the city of Tsaritsyn) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7292680217851115 0.0155 181 0.8264840182648402 (a Master of Arts; be received from; Royal Military College of Canada) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.7288884613298925 0.0151 181 0.8227272727272728 (The Skeleton King; later merged in; Dark One) false false The Skeleton King later merged with the demon Dark One , only to have him decapitated by the Hyperforce . det(King_NNP_2_13, The_DT_0_0); nn(King_NNP_2_13, Skeleton_NNP_1_4); nsubj(merged_VBD_4_24, King_NNP_2_13); advmod(merged_VBD_4_24, later_RB_3_18); prep(merged_VBD_4_24, with_IN_5_31); tmod(merged_VBD_4_24, Dark_NNP_8_46); punct(merged_VBD_4_24, ,_,_10_55); xcomp(merged_VBD_4_24, have_VB_13_65); punct(merged_VBD_4_24, ._._19_104); pobj(with_IN_5_31, demon_NN_7_40); det(demon_NN_7_40, the_DT_6_36); num(Dark_NNP_8_46, One_CD_9_51); advmod(have_VB_13_65, only_RB_11_57); aux(have_VB_13_65, to_TO_12_62); ccomp(have_VB_13_65, decapitated_VBN_15_74); nsubjpass(decapitated_VBN_15_74, him_PRP_14_70); prep(decapitated_VBN_15_74, by_IN_16_86); pobj(by_IN_16_86, Hyperforce_NNP_18_93); det(Hyperforce_NNP_18_93, the_DT_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0151 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.728699979239643 0.0067 182 0.8235294117647058 (Lenneth; to forget about; her and kisses)[enabler=before he departs but Lucian continues to brood upon Lenneth and Platina] true false Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.7270291579207211 0.0079 182 0.8198198198198198 (He; died; Washington) false false He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.7264529336979277 1.0 182 0.8161434977578476 (Five million shares; will be offered in; concurrent international offerings) false false Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.7264076234110055 0.0055 182 0.8125 (Byrom; was born on; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0055 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7252808388285222 0.1349 183 0.8133333333333334 (the two companies; could n't agree on; terms of a definitive agreement)[attrib=Clarcor said] false true Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . punct(Clarcor_NNP_0_0, ,_,_1_8); appos(Clarcor_NNP_0_0, maker_NN_3_12); punct(Clarcor_NNP_0_0, ,_,_9_55); det(maker_NN_3_12, a_DT_2_10); prep(maker_NN_3_12, of_IN_4_18); pobj(of_IN_4_18, products_NNS_8_46); cc(packaging_NN_5_21, and_CC_6_31); conj(packaging_NN_5_21, filtration_NN_7_35); nn(products_NNS_8_46, packaging_NN_5_21); nsubj(said_VBD_10_57, Clarcor_NNP_0_0); ccomp(said_VBD_10_57, agree_VB_16_90); punct(said_VBD_10_57, ._._23_131); det(companies_NNS_13_70, the_DT_11_62); num(companies_NNS_13_70, two_CD_12_66); nsubj(agree_VB_16_90, companies_NNS_13_70); aux(agree_VB_16_90, could_MD_14_80); neg(agree_VB_16_90, n't_RB_15_86); prep(agree_VB_16_90, on_IN_17_96); pobj(on_IN_17_96, terms_NNS_18_99); prep(terms_NNS_18_99, of_IN_19_105); pobj(of_IN_19_105, agreement_NN_22_121); det(agreement_NN_22_121, a_DT_20_108); amod(agreement_NN_22_121, definitive_JJ_21_110) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.7244174911479532 0.0052 183 0.8097345132743363 (The water; moved into; a second) false false The water was heated so that some vaporized and moved into a second , higher flask containing the " "atmosphere " " -- a mixture of gases . det(water_NN_1_4, The_DT_0_0); nsubjpass(heated_VBN_3_14, water_NN_1_4); auxpass(heated_VBN_3_14, was_VBD_2_10); ccomp(heated_VBN_3_14, vaporized_JJ_7_34); cc(heated_VBN_3_14, and_CC_8_44); conj(heated_VBN_3_14, moved_VBD_9_48); punct(heated_VBN_3_14, ,_,_13_68); dobj(heated_VBN_3_14, flask_NN_15_77); punct(heated_VBN_3_14, ._._27_136); advmod(vaporized_JJ_7_34, so_RB_4_21); dep(vaporized_JJ_7_34, that_IN_5_24); quantmod(vaporized_JJ_7_34, some_DT_6_29); prep(moved_VBD_9_48, into_IN_10_54); pobj(into_IN_10_54, second_JJ_12_61); det(second_JJ_12_61, a_DT_11_59); amod(flask_NN_15_77, higher_JJR_14_70); partmod(flask_NN_15_77, containing_VBG_16_83); dobj(containing_VBG_16_83, "_''_21_112); det("_''_21_112, the_DT_17_94); punct("_''_21_112, "_``_18_98); advmod("_''_21_112, "atmosphere_RB_19_99); punct("_''_21_112, "_``_20_111); punct("_''_21_112, --_:_22_114); dep("_''_21_112, mixture_NN_24_119); det(mixture_NN_24_119, a_DT_23_117); prep(mixture_NN_24_119, of_IN_25_127); pobj(of_IN_25_127, gases_NNS_26_130) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0052 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0 0.7243871453208417 0.3797 183 0.8061674008810573 (She; spent some time managing; her son 's jazz group) false false She appears not to have recorded after 1935 , and spent some time managing her son 's jazz group , Bogan 's Birmingham Busters , before moving to Los Angeles , California shortly before her death from coronary sclerosis in 1948 . nsubj(appears_VBZ_1_4, She_PRP_0_0); ccomp(appears_VBZ_1_4, recorded_VBN_5_24); punct(appears_VBZ_1_4, ,_,_8_44); cc(appears_VBZ_1_4, and_CC_9_46); conj(appears_VBZ_1_4, spent_VBD_10_50); punct(appears_VBZ_1_4, ,_,_30_158); punct(appears_VBZ_1_4, ._._41_228); neg(recorded_VBN_5_24, not_RB_2_12); aux(recorded_VBN_5_24, to_TO_3_16); aux(recorded_VBN_5_24, have_VB_4_19); prep(recorded_VBN_5_24, after_IN_6_33); pobj(after_IN_6_33, 1935_CD_7_39); dobj(spent_VBD_10_50, time_NN_12_61); xcomp(spent_VBD_10_50, managing_VBG_13_66); punct(spent_VBD_10_50, ,_,_19_97); appos(spent_VBD_10_50, Busters_NNP_23_119); punct(spent_VBD_10_50, ,_,_24_127); prep(spent_VBD_10_50, before_IN_25_129); det(time_NN_12_61, some_DT_11_56); dobj(managing_VBG_13_66, group_NN_18_91); poss(son_NN_15_79, her_PRP$_14_75); possessive(son_NN_15_79, 's_POS_16_83); poss(group_NN_18_91, son_NN_15_79); nn(group_NN_18_91, jazz_NN_17_86); possessive(Bogan_NNP_20_99, 's_POS_21_105); poss(Busters_NNP_23_119, Bogan_NNP_20_99); nn(Busters_NNP_23_119, Birmingham_NNP_22_108); pcomp(before_IN_25_129, moving_VBG_26_136); prep(moving_VBG_26_136, to_TO_27_143); pobj(to_TO_27_143, Angeles_NNP_29_150); nn(Angeles_NNP_29_150, Los_NNP_28_146); dobj(,_,_30_158, California_NNP_31_160); prep(California_NNP_31_160, before_IN_33_179); prep(California_NNP_31_160, in_IN_39_220); dep(before_IN_33_179, shortly_RB_32_171); pobj(before_IN_33_179, death_NN_35_190); poss(death_NN_35_190, her_PRP$_34_186); prep(death_NN_35_190, from_IN_36_196); pobj(from_IN_36_196, sclerosis_NN_38_210); amod(sclerosis_NN_38_210, coronary_JJ_37_201); pobj(in_IN_39_220, 1948_CD_40_223) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7186204373216412 0.3797 184 0.8070175438596491 (he; conquered; the Crissaean plain) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.7186204373216412 0.3797 185 0.8078602620087336 (the Roman general Manius Acilius Glabrio; seized; Lamia) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.7172636808792543 0.3797 186 0.808695652173913 (The issue 's smooth absorption; eased; fears)[attrib=traders said] false true The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7159436441483162 0.3797 187 0.8095238095238095 (small dinosaurs; may have had; difficulty) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.7118177465023502 0.3797 188 0.8103448275862069 (he; received; a Master of Arts) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7115304748211617 0.3797 189 0.8111587982832618 (Amuro; returned to solo; activities) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7115304748211617 0.3797 190 0.811965811965812 (Christie; made; a splash) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.7115304748211617 0.3797 190 0.8085106382978723 (Coca-Cola Enterprises; blamed; the lower volume) false false Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . nn(Enterprises_NNPS_1_10, Coca-Cola_NNP_0_0); nsubj(blamed_VBD_2_22, Enterprises_NNPS_1_10); dobj(blamed_VBD_2_22, volume_NN_5_39); prep(blamed_VBD_2_22, on_IN_6_46); punct(blamed_VBD_2_22, ._._21_122); det(volume_NN_5_39, the_DT_3_29); amod(volume_NN_5_39, lower_JJR_4_33); pobj(on_IN_6_46, prices_NNS_9_64); poss(prices_NNS_9_64, its_PRP$_7_49); nn(prices_NNS_9_64, soft-drink_NN_8_53); punct(prices_NNS_9_64, ,_,_10_71); rcmod(prices_NNS_9_64, higher_JJR_16_94); quantmod(3_CD_14_90, about_IN_13_84); num(%_NN_15_92, 3_CD_14_90); nsubj(higher_JJR_16_94, which_WDT_11_73); cop(higher_JJR_16_94, were_VBD_12_79); measure(higher_JJR_16_94, %_NN_15_92); prep(higher_JJR_16_94, in_IN_17_101); pobj(in_IN_17_101, quarter_NN_20_114); det(quarter_NN_20_114, the_DT_18_104); amod(quarter_NN_20_114, third_JJ_19_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7115304748211617 0.3797 191 0.809322033898305 (He; also scored; the second and decisive try) false false He also scored the second and decisive try against Munster when Tigers retained the cup the following year . nsubj(scored_VBD_2_8, He_PRP_0_0); advmod(scored_VBD_2_8, also_RB_1_3); dobj(scored_VBD_2_8, try_NN_7_39); punct(scored_VBD_2_8, ._._18_107); cc(second_JJ_4_19, and_CC_5_26); conj(second_JJ_4_19, decisive_JJ_6_30); det(try_NN_7_39, the_DT_3_15); amod(try_NN_7_39, second_JJ_4_19); prep(try_NN_7_39, against_IN_8_43); pobj(against_IN_8_43, Munster_NNP_9_51); dep(Munster_NNP_9_51, retained_VBD_12_71); advmod(retained_VBD_12_71, when_WRB_10_59); nsubj(retained_VBD_12_71, Tigers_NNP_11_64); dobj(retained_VBD_12_71, cup_NN_14_84); det(cup_NN_14_84, the_DT_13_80); dep(cup_NN_14_84, year_NN_17_102); det(year_NN_17_102, the_DT_15_88); amod(year_NN_17_102, following_JJ_16_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7115304748211617 0.3797 192 0.810126582278481 (He; reached; the third round) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7115304748211617 0.3797 193 0.8109243697478992 (Singer Bette Midler; won; a $ 400,000 federal court jury verdict) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7113287905531539 0.0416 194 0.8117154811715481 (Macromolecules translocated through the phloem; include; proteins and various types of RNA) false false Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . partmod(Macromolecules_NNS_0_0, translocated_VBN_1_15); prep(translocated_VBN_1_15, through_IN_2_28); pobj(through_IN_2_28, phloem_NN_4_40); det(phloem_NN_4_40, the_DT_3_36); nsubj(include_VBP_5_47, Macromolecules_NNS_0_0); dobj(include_VBP_5_47, proteins_NNS_6_55); punct(include_VBP_5_47, ._._19_138); cc(proteins_NNS_6_55, and_CC_7_64); conj(proteins_NNS_6_55, types_NNS_9_76); dep(proteins_NNS_6_55, enter_VBP_13_94); amod(types_NNS_9_76, various_JJ_8_68); prep(types_NNS_9_76, of_IN_10_82); pobj(of_IN_10_82, RNA_NNP_11_85); dep(enter_VBP_13_94, that_IN_12_89); dobj(enter_VBP_13_94, tubes_NNS_16_110); prep(enter_VBP_13_94, through_IN_17_116); det(tubes_NNS_16_110, the_DT_14_100); amod(tubes_NNS_16_110, sieve_JJ_15_104); pobj(through_IN_17_116, plasmodesmata_NN_18_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.7101944860312797 0.3797 195 0.8125 (Tigers; retained; the cup) false false He also scored the second and decisive try against Munster when Tigers retained the cup the following year . nsubj(scored_VBD_2_8, He_PRP_0_0); advmod(scored_VBD_2_8, also_RB_1_3); dobj(scored_VBD_2_8, try_NN_7_39); punct(scored_VBD_2_8, ._._18_107); cc(second_JJ_4_19, and_CC_5_26); conj(second_JJ_4_19, decisive_JJ_6_30); det(try_NN_7_39, the_DT_3_15); amod(try_NN_7_39, second_JJ_4_19); prep(try_NN_7_39, against_IN_8_43); pobj(against_IN_8_43, Munster_NNP_9_51); dep(Munster_NNP_9_51, retained_VBD_12_71); advmod(retained_VBD_12_71, when_WRB_10_59); nsubj(retained_VBD_12_71, Tigers_NNP_11_64); dobj(retained_VBD_12_71, cup_NN_14_84); det(cup_NN_14_84, the_DT_13_80); dep(cup_NN_14_84, year_NN_17_102); det(year_NN_17_102, the_DT_15_88); amod(year_NN_17_102, following_JJ_16_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7101944860312797 0.3797 196 0.8132780082987552 (Prince Kitashirakawa; married; Princess Kane-no-Miya Fusako) false false On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7101944860312797 0.3797 197 0.8140495867768595 (Manager Bill McKechnie; called to enter; the game) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7101944860312797 0.3797 198 0.8148148148148148 (the stock; dropped; nearly 19 %) false false When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . det(company_NN_2_9, the_DT_1_5); det(month_NN_4_22, this_DT_3_17); advmod(announced_VBD_5_28, When_WRB_0_0); nsubj(announced_VBD_5_28, company_NN_2_9); dep(announced_VBD_5_28, month_NN_4_22); dobj(announced_VBD_5_28, sales_NNS_7_58); amod(sales_NNS_7_58, lower-than-forecast_JJ_6_38); prep(sales_NNS_7_58, of_IN_8_64); pobj(of_IN_8_64, Eggs_NNP_10_72); nn(Eggs_NNP_10_72, Easy_NNP_9_67); det(stock_NN_13_83, the_DT_12_79); dep(dropped_VBD_14_89, announced_VBD_5_28); punct(dropped_VBD_14_89, ,_,_11_77); nsubj(dropped_VBD_14_89, stock_NN_13_83); dobj(dropped_VBD_14_89, %_NN_17_107); punct(dropped_VBD_14_89, ._._18_109); quantmod(19_CD_16_104, nearly_RB_15_97); num(%_NN_17_107, 19_CD_16_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7101944860312797 0.3797 199 0.8155737704918032 (he; met again; Beatrice) false false Years after his marriage to Gemma , he met Beatrice again . prep(Years_NNS_0_0, after_IN_1_6); pobj(after_IN_1_6, marriage_NN_3_16); poss(marriage_NN_3_16, his_PRP$_2_12); prep(marriage_NN_3_16, to_TO_4_25); pobj(to_TO_4_25, Gemma_NNP_5_28); nsubj(met_VBD_8_39, Years_NNS_0_0); punct(met_VBD_8_39, ,_,_6_34); nsubj(met_VBD_8_39, he_PRP_7_36); dobj(met_VBD_8_39, Beatrice_NNP_9_43); advmod(met_VBD_8_39, again_RB_10_52); punct(met_VBD_8_39, ._._11_58) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7098444699714459 0.3797 200 0.8163265306122449 (the Appropriations Committee leadership; turned back; efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7082146507227227 0.3797 200 0.8130081300813008 (a large amount of an oxygen-storing protein; called; myoglobin) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.7072668103739835 0.0416 201 0.8137651821862348 (the filtering activities of freshwater bivalves; purify; the waters of streams) false false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.7045767096027521 0.7345 202 0.8145161290322581 (a brief electrical pulse; applied to; a solution containing cells) false false In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . pobj(In_IN_0_0, electroporation_NN_1_3); det(pulse_NN_6_40, a_DT_3_21); amod(pulse_NN_6_40, brief_JJ_4_23); amod(pulse_NN_6_40, electrical_JJ_5_29); prep(applied_VBD_7_46, In_IN_0_0); punct(applied_VBD_7_46, ,_,_2_19); nsubj(applied_VBD_7_46, pulse_NN_6_40); prep(applied_VBD_7_46, to_TO_8_54); dep(applied_VBD_7_46, creates_VBZ_13_85); punct(applied_VBD_7_46, ._._26_165); pobj(to_TO_8_54, solution_NN_10_59); det(solution_NN_10_59, a_DT_9_57); partmod(solution_NN_10_59, containing_VBG_11_68); dobj(containing_VBG_11_68, cells_NNS_12_79); dobj(creates_VBZ_13_85, holes_NNS_15_103); prep(creates_VBZ_13_85, in_IN_16_109); amod(holes_NNS_15_103, temporary_JJ_14_93); pobj(in_IN_16_109, membranes_NNS_19_125); poss(membranes_NNS_19_125, their_PRP$_17_112); nn(membranes_NNS_19_125, plasma_NN_18_118); punct(membranes_NNS_19_125, ,_,_20_135); rcmod(membranes_NNS_19_125, enter_VB_25_159); pobj(through_IN_21_137, which_WDT_22_145); rel(enter_VB_25_159, through_IN_21_137); nsubj(enter_VB_25_159, DNA_NNP_23_151); aux(enter_VB_25_159, can_MD_24_155) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 1.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7030152095713891 0.0444 203 0.8152610441767069 (Functional brain imaging; has been applied to; the study of human cognition) false false Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion . amod(imaging_NN_2_17, Functional_JJ_0_0); nn(imaging_NN_2_17, brain_NN_1_11); nsubj(applied_VBN_5_34, imaging_NN_2_17); aux(applied_VBN_5_34, has_VBZ_3_25); auxpass(applied_VBN_5_34, been_VBN_4_29); prep(applied_VBN_5_34, to_TO_6_42); punct(applied_VBN_5_34, ,_,_14_90); cc(applied_VBN_5_34, and_CC_15_92); conj(applied_VBN_5_34, emotion_NN_16_96); punct(applied_VBN_5_34, ._._17_104); pobj(to_TO_6_42, study_NN_8_49); det(study_NN_8_49, the_DT_7_45); prep(study_NN_8_49, of_IN_9_55); pobj(of_IN_9_55, cognition_NN_11_64); amod(cognition_NN_11_64, human_JJ_10_58); punct(cognition_NN_11_64, ,_,_12_74); conj(cognition_NN_11_64, consciousness_NN_13_76) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0444 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7025491579576496 0.0216 204 0.816 (The Mount Royal Arena; was; an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0216 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.7022426277306183 1.0 204 0.8127490039840638 (the potentially fatal disease botulism; is caused vegetables in; another example) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.7018674537112141 0.0191 204 0.8095238095238095 (The water; was heated; higher flask containing the " "atmosphere " " -- a mixture of gases) false false The water was heated so that some vaporized and moved into a second , higher flask containing the " "atmosphere " " -- a mixture of gases . det(water_NN_1_4, The_DT_0_0); nsubjpass(heated_VBN_3_14, water_NN_1_4); auxpass(heated_VBN_3_14, was_VBD_2_10); ccomp(heated_VBN_3_14, vaporized_JJ_7_34); cc(heated_VBN_3_14, and_CC_8_44); conj(heated_VBN_3_14, moved_VBD_9_48); punct(heated_VBN_3_14, ,_,_13_68); dobj(heated_VBN_3_14, flask_NN_15_77); punct(heated_VBN_3_14, ._._27_136); advmod(vaporized_JJ_7_34, so_RB_4_21); dep(vaporized_JJ_7_34, that_IN_5_24); quantmod(vaporized_JJ_7_34, some_DT_6_29); prep(moved_VBD_9_48, into_IN_10_54); pobj(into_IN_10_54, second_JJ_12_61); det(second_JJ_12_61, a_DT_11_59); amod(flask_NN_15_77, higher_JJR_14_70); partmod(flask_NN_15_77, containing_VBG_16_83); dobj(containing_VBG_16_83, "_''_21_112); det("_''_21_112, the_DT_17_94); punct("_''_21_112, "_``_18_98); advmod("_''_21_112, "atmosphere_RB_19_99); punct("_''_21_112, "_``_20_111); punct("_''_21_112, --_:_22_114); dep("_''_21_112, mixture_NN_24_119); det(mixture_NN_24_119, a_DT_23_117); prep(mixture_NN_24_119, of_IN_25_127); pobj(of_IN_25_127, gases_NNS_26_130) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0191 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.701170771384888 0.1473 205 0.8102766798418972 (the U.S.; can bomb; Tripoli)[enabler=As it now stands] true false As it now stands , the U.S. can bomb Tripoli , but ca n't " assassinate " Colonel Gadhafi . mark(stands_VBZ_3_10, As_IN_0_0); nsubj(stands_VBZ_3_10, it_PRP_1_3); advmod(stands_VBZ_3_10, now_RB_2_6); det(U.S._NNP_6_23, the_DT_5_19); advcl(bomb_VB_8_32, stands_VBZ_3_10); punct(bomb_VB_8_32, ,_,_4_17); nsubj(bomb_VB_8_32, U.S._NNP_6_23); aux(bomb_VB_8_32, can_MD_7_28); dobj(bomb_VB_8_32, Tripoli_NNP_9_37); punct(bomb_VB_8_32, ,_,_10_45); cc(bomb_VB_8_32, but_CC_11_47); conj(bomb_VB_8_32, assassinate_VB_15_60); punct(bomb_VB_8_32, ._._19_90); aux(assassinate_VB_15_60, ca_MD_12_51); neg(assassinate_VB_15_60, n't_RB_13_54); punct(assassinate_VB_15_60, "_``_14_58); punct(assassinate_VB_15_60, "_''_16_72); dobj(assassinate_VB_15_60, Gadhafi_NNP_18_82); nn(Gadhafi_NNP_18_82, Colonel_NNP_17_74) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.7009715957021118 0.3797 206 0.8110236220472441 (Revenue; dropped; 5.4 %) false false Revenue dropped 5.4 % to $ 3.48 billion from $ 3.68 billion . nsubj(dropped_VBD_1_8, Revenue_NN_0_0); dobj(dropped_VBD_1_8, %_NN_3_20); prep(dropped_VBD_1_8, to_TO_4_22); prep(dropped_VBD_1_8, from_IN_8_40); punct(dropped_VBD_1_8, ._._12_60); num(%_NN_3_20, 5.4_CD_2_16); pobj(to_TO_4_22, $_$_5_25); number($_$_5_25, 3.48_CD_6_27); number($_$_5_25, billion_CD_7_32); pobj(from_IN_8_40, $_$_9_45); number($_$_9_45, 3.68_CD_10_47); number($_$_9_45, billion_CD_11_52) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.7005550594198744 0.4031 207 0.8117647058823529 (Petone; be a suburb of the city of Lower Hutt in; the Wellington region of New Zealand) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.700111485477657 0.3797 208 0.8125 (the company; announced; lower-than-forecast sales of Easy Eggs) false false When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . det(company_NN_2_9, the_DT_1_5); det(month_NN_4_22, this_DT_3_17); advmod(announced_VBD_5_28, When_WRB_0_0); nsubj(announced_VBD_5_28, company_NN_2_9); dep(announced_VBD_5_28, month_NN_4_22); dobj(announced_VBD_5_28, sales_NNS_7_58); amod(sales_NNS_7_58, lower-than-forecast_JJ_6_38); prep(sales_NNS_7_58, of_IN_8_64); pobj(of_IN_8_64, Eggs_NNP_10_72); nn(Eggs_NNP_10_72, Easy_NNP_9_67); det(stock_NN_13_83, the_DT_12_79); dep(dropped_VBD_14_89, announced_VBD_5_28); punct(dropped_VBD_14_89, ,_,_11_77); nsubj(dropped_VBD_14_89, stock_NN_13_83); dobj(dropped_VBD_14_89, %_NN_17_107); punct(dropped_VBD_14_89, ._._18_109); quantmod(19_CD_16_104, nearly_RB_15_97); num(%_NN_17_107, 19_CD_16_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.6991064348732651 0.0416 209 0.8132295719844358 (Amoebozoans; include; slime molds) false false Amoebozoans include slime molds , gymnamoebas , and entamoebas . nsubj(include_VBP_1_12, Amoebozoans_NNS_0_0); dobj(include_VBP_1_12, molds_NNS_3_26); punct(include_VBP_1_12, ._._9_63); amod(molds_NNS_3_26, slime_JJ_2_20); punct(molds_NNS_3_26, ,_,_4_32); appos(molds_NNS_3_26, gymnamoebas_NNP_5_34); punct(molds_NNS_3_26, ,_,_6_46); cc(molds_NNS_3_26, and_CC_7_48); advmod(molds_NNS_3_26, entamoebas_RB_8_52) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6988226296797597 0.2444 210 0.813953488372093 (adaptive immunity; offers significant protection against; a wide range of pathogens) false false Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . amod(immunity_NN_2_18, adaptive_JJ_1_9); mark(offers_VBZ_3_27, Although_IN_0_0); nsubj(offers_VBZ_3_27, immunity_NN_2_18); dobj(offers_VBZ_3_27, protection_NN_5_46); prep(offers_VBZ_3_27, against_IN_6_57); amod(protection_NN_5_46, significant_JJ_4_34); pobj(against_IN_6_57, range_NN_9_72); det(range_NN_9_72, a_DT_7_65); amod(range_NN_9_72, wide_JJ_8_67); prep(range_NN_9_72, of_IN_10_78); pobj(of_IN_10_78, pathogens_NNS_11_81); advcl(fail-safe_JJ_16_103, offers_VBZ_3_27); punct(fail-safe_JJ_16_103, ,_,_12_91); nsubj(fail-safe_JJ_16_103, it_PRP_13_93); cop(fail-safe_JJ_16_103, is_VBZ_14_96); neg(fail-safe_JJ_16_103, not_RB_15_99); punct(fail-safe_JJ_16_103, ._._17_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.698781039260481 1.0 211 0.8146718146718147 ($ 100 million issue of collateralized mortgage obligations; is being offered by; a Morgan Stanley group) false false $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . number($_$_0_0, 100_CD_1_2); number($_$_0_0, million_CD_2_6); num(issue_NN_3_14, $_$_0_0); prep(issue_NN_3_14, of_IN_4_20); pobj(of_IN_4_20, obligations_NNS_7_47); amod(obligations_NNS_7_47, collateralized_JJ_5_23); nn(obligations_NNS_7_47, mortgage_NN_6_38); nsubjpass(offered_VBN_10_68, issue_NN_3_14); aux(offered_VBN_10_68, is_VBZ_8_59); auxpass(offered_VBN_10_68, being_VBG_9_62); prep(offered_VBN_10_68, in_IN_11_76); prep(offered_VBN_10_68, by_IN_14_92); punct(offered_VBN_10_68, ._._19_118); pobj(in_IN_11_76, classes_NNS_13_84); num(classes_NNS_13_84, four_CD_12_79); pobj(by_IN_14_92, group_NN_18_112); det(group_NN_18_112, a_DT_15_95); nn(group_NN_18_112, Morgan_NNP_16_97); nn(group_NN_18_112, Stanley_NNP_17_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.698331924273114 0.1443 212 0.8153846153846154 (food; enters; the oral cavity and orchestrate swallowing)[enabler=when a bolus of food reaches the pharynx] true false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.6949728519048148 0.9555 213 0.8160919540229885 (Dell Curry; is the father of; Stephen Curry) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.9555 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6921947353265185 1.0 214 0.816793893129771 (he; is prohibited by; takeover regulations)[attrib=Mr. Fournier said] false true Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . nn(Fournier_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_13, Fournier_NNP_1_4); ccomp(said_VBD_2_13, prohibited_VBN_11_60); punct(said_VBD_2_13, ._._28_187); pobj(as_IN_4_23, chairman_NN_7_43); nn(chairman_NN_7_43, Navigation_NNP_5_26); nn(chairman_NN_7_43, Mixte_NNP_6_37); complm(prohibited_VBN_11_60, that_IN_3_18); prep(prohibited_VBN_11_60, as_IN_4_23); punct(prohibited_VBN_11_60, ,_,_8_52); nsubjpass(prohibited_VBN_11_60, he_PRP_9_54); auxpass(prohibited_VBN_11_60, is_VBZ_10_57); prep(prohibited_VBN_11_60, by_IN_12_71); prep(prohibited_VBN_11_60, from_IN_15_95); pobj(by_IN_12_71, regulations_NNS_14_83); nn(regulations_NNS_14_83, takeover_NN_13_74); pcomp(from_IN_15_95, organizing_VBG_16_100); dobj(organizing_VBG_16_100, defense_NN_19_119); cc(organizing_VBG_16_100, or_CC_20_127); conj(organizing_VBG_16_100, doing_VBG_21_130); poss(defense_NN_19_119, his_PRP$_17_111); amod(defense_NN_19_119, own_JJ_18_115); dobj(doing_VBG_21_130, anything_NN_22_136); prep(anything_NN_22_136, besides_IN_23_145); pcomp(besides_IN_23_145, managing_VBG_24_153); dobj(managing_VBG_24_153, business_NN_27_178); amod(business_NN_27_178, current_JJ_25_162); nn(business_NN_27_178, company_NN_26_170) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.6920856372671877 0.7345 215 0.8174904942965779 (Chesler; taught one of the first Women 's Studies classes during; the 1969-1970 school year) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1 0.6894154719303 0.7345 216 0.8181818181818182 (Hatch; worked as; an Attorney) false false For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.6894154719303 0.7345 216 0.8150943396226416 (Hatch; worked at; law) false false For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6894154719303 0.7345 217 0.8157894736842105 (a Best of compilation album; released in; January 2002) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6894154719303 0.7345 218 0.8164794007490637 (the airline; launched codeshare flights with Lufthansa to; Germany) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.6894154719303 0.7345 218 0.8134328358208955 (Conn; acquired most of its stake in; an $ 11-a-share tender offer) false false Mr. Hollander 's High Technology Holding Co. of Stamford , Conn . , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6894154719303 0.7345 219 0.8141263940520446 (he; tapped Connor to serve as; the Deputy Secretary) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6894154719303 0.7345 220 0.8148148148148148 (he; received a Master of Arts in; war studies degree) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.6879529347056156 0.0216 220 0.8118081180811808 (he; was; a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0216 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6875925127628725 0.7345 221 0.8125 (he; went native in; essence) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.6871608418210067 0.1473 222 0.8131868131868132 (Social Security benefits; will rise; 4.7 %)[attrib=the Department of Health and Human Services announced] false true Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6867309114343867 0.02 223 0.8138686131386861 (Kotte; lay on; the opposite side of the Diyawanna Oya) false false Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . nsubj(adjunct_JJ_5_32, Battaramulla_NNP_0_0); aux(adjunct_JJ_5_32, has_VBZ_1_13); advmod(adjunct_JJ_5_32, always_RB_2_17); cop(adjunct_JJ_5_32, been_VBN_3_24); det(adjunct_JJ_5_32, an_DT_4_29); prep(adjunct_JJ_5_32, to_TO_6_40); punct(adjunct_JJ_5_32, ._._19_103); pobj(to_TO_6_40, Kotte_NNP_7_43); punct(Kotte_NNP_7_43, ,_,_8_49); rcmod(Kotte_NNP_7_43, lay_VBD_10_57); nsubj(lay_VBD_10_57, which_WDT_9_51); prep(lay_VBD_10_57, on_IN_11_61); pobj(on_IN_11_61, side_NN_14_77); det(side_NN_14_77, the_DT_12_64); amod(side_NN_14_77, opposite_JJ_13_68); prep(side_NN_14_77, of_IN_15_82); pobj(of_IN_15_82, Oya_NNP_18_99); det(Oya_NNP_18_99, the_DT_16_85); nn(Oya_NNP_18_99, Diyawanna_NNP_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.6863325222781806 0.3797 223 0.8109090909090909 (hybrid sterility; pseudoobscura; results) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6863325222781806 0.3797 224 0.8115942028985508 (researchers; transformed; the differentiated cells) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6860679254290757 1.0 225 0.8122743682310469 (he; was involved during; his time) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6852489081587368 1.0 226 0.8129496402877698 (Byrom; is commemorated by; a plaque) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6852489081587368 1.0 227 0.8136200716845878 (The Notre Dame Academy and Convent; is located at; 3501 State Street) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6852489081587368 1.0 228 0.8142857142857143 (The Notre Dame Academy and Convent; is located in; the Florence neighborhood) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6851621109140491 0.0444 229 0.8149466192170819 (He; was elected a member of the Alabama House of Representatives until; 1828) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6851122354728214 0.0216 230 0.8156028368794326 (the climate; was; milder when dinosaurs existed than it is today , it was cool) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0216 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6844171600236496 0.0416 231 0.8162544169611308 (primates; have; a large brain and short jaws) false false Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . prep(Relative_JJ_0_0, to_TO_1_9); pobj(to_TO_1_9, mammals_NNS_3_18); amod(mammals_NNS_3_18, other_JJ_2_12); dep(have_VBP_6_37, Relative_JJ_0_0); punct(have_VBP_6_37, ,_,_4_26); nsubj(have_VBP_6_37, primates_NNS_5_28); dobj(have_VBP_6_37, brain_NN_9_50); punct(have_VBP_6_37, ,_,_13_71); xcomp(have_VBP_6_37, giving_VBG_14_73); punct(have_VBP_6_37, ._._19_97); det(brain_NN_9_50, a_DT_7_42); amod(brain_NN_9_50, large_JJ_8_44); cc(brain_NN_9_50, and_CC_10_56); conj(brain_NN_9_50, jaws_NNS_12_66); amod(jaws_NNS_12_66, short_JJ_11_60); iobj(giving_VBG_14_73, them_PRP_15_80); dobj(giving_VBG_14_73, face_NN_18_92); det(face_NN_18_92, a_DT_16_85); amod(face_NN_18_92, flat_JJ_17_87) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6842661201285292 0.0393 232 0.8169014084507042 (1944 the squadron; was operating from; an airfield at Cape Torokina on Bougainville and from here the squadron began) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6836743744725042 0.1349 233 0.8175438596491228 (Social Security benefits; will rise 4.7 % to keep pace with; inflation)[attrib=the Department of Health and Human Services announced] false true Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6814839861060161 1.0 234 0.8181818181818182 (he; is prohibited as; Navigation Mixte chairman)[attrib=Mr. Fournier said] false true Mr. Fournier said that as Navigation Mixte chairman , he is prohibited by takeover regulations from organizing his own defense or doing anything besides managing current company business . nn(Fournier_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_13, Fournier_NNP_1_4); ccomp(said_VBD_2_13, prohibited_VBN_11_60); punct(said_VBD_2_13, ._._28_187); pobj(as_IN_4_23, chairman_NN_7_43); nn(chairman_NN_7_43, Navigation_NNP_5_26); nn(chairman_NN_7_43, Mixte_NNP_6_37); complm(prohibited_VBN_11_60, that_IN_3_18); prep(prohibited_VBN_11_60, as_IN_4_23); punct(prohibited_VBN_11_60, ,_,_8_52); nsubjpass(prohibited_VBN_11_60, he_PRP_9_54); auxpass(prohibited_VBN_11_60, is_VBZ_10_57); prep(prohibited_VBN_11_60, by_IN_12_71); prep(prohibited_VBN_11_60, from_IN_15_95); pobj(by_IN_12_71, regulations_NNS_14_83); nn(regulations_NNS_14_83, takeover_NN_13_74); pcomp(from_IN_15_95, organizing_VBG_16_100); dobj(organizing_VBG_16_100, defense_NN_19_119); cc(organizing_VBG_16_100, or_CC_20_127); conj(organizing_VBG_16_100, doing_VBG_21_130); poss(defense_NN_19_119, his_PRP$_17_111); amod(defense_NN_19_119, own_JJ_18_115); dobj(doing_VBG_21_130, anything_NN_22_136); prep(anything_NN_22_136, besides_IN_23_145); pcomp(besides_IN_23_145, managing_VBG_24_153); dobj(managing_VBG_24_153, business_NN_27_178); amod(business_NN_27_178, current_JJ_25_162); nn(business_NN_27_178, company_NN_26_170) 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.6814249419026649 0.0195 235 0.818815331010453 (researchers; to carry out; several rounds of DNA cutting) false false With such a large genome , researchers had to carry out several rounds of DNA cutting , cloning , and physical mapping . pobj(With_IN_0_0, genome_NN_4_18); predet(genome_NN_4_18, such_PDT_1_5); det(genome_NN_4_18, a_DT_2_10); amod(genome_NN_4_18, large_JJ_3_12); prep(had_VBD_7_39, With_IN_0_0); punct(had_VBD_7_39, ,_,_5_25); nsubj(had_VBD_7_39, researchers_NNS_6_27); xcomp(had_VBD_7_39, carry_VB_9_46); punct(had_VBD_7_39, ,_,_16_86); xcomp(had_VBD_7_39, cloning_VBG_17_88); punct(had_VBD_7_39, ._._22_119); aux(carry_VB_9_46, to_TO_8_43); prt(carry_VB_9_46, out_RP_10_52); dobj(carry_VB_9_46, rounds_NNS_12_64); amod(rounds_NNS_12_64, several_JJ_11_56); prep(rounds_NNS_12_64, of_IN_13_71); pobj(of_IN_13_71, cutting_NN_15_78); nn(cutting_NN_15_78, DNA_NNP_14_74); punct(cloning_VBG_17_88, ,_,_18_96); cc(cloning_VBG_17_88, and_CC_19_98); conj(cloning_VBG_17_88, mapping_NN_21_111); amod(mapping_NN_21_111, physical_JJ_20_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0195 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.6800252840740403 0.7345 235 0.8159722222222222 (the squadron; began taking part in; the air) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 1 0.6797932006082301 0.0254 236 0.8166089965397924 (The Mount Royal Arena; was an indoor arena in; Montreal) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0254 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6773746556171704 0.0307 237 0.8172413793103448 (They; merely collect campaign contributions from; developers that help keep them in office) false false They merely collect campaign contributions from developers that help keep them in office . nsubj(collect_VBP_2_12, They_PRP_0_0); advmod(collect_VBP_2_12, merely_RB_1_5); dobj(collect_VBP_2_12, contributions_NNS_4_29); prep(collect_VBP_2_12, from_IN_5_43); punct(collect_VBP_2_12, ._._13_89); nn(contributions_NNS_4_29, campaign_NN_3_20); pobj(from_IN_5_43, developers_NNS_6_48); rcmod(developers_NNS_6_48, help_VBP_8_64); nsubj(help_VBP_8_64, that_WDT_7_59); ccomp(help_VBP_8_64, keep_VB_9_69); dobj(keep_VB_9_69, them_PRP_10_74); prep(keep_VB_9_69, in_IN_11_79); pobj(in_IN_11_79, office_NN_12_82) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0307 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6756543805538955 0.9555 238 0.8178694158075601 (the share issue; is part of; a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.9555 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.6750917121018809 0.0089 238 0.815068493150685 (She; was born at; Berkeley) false false She was born April 3 , 1951 in Berkeley , California . nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0089 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6747828012049464 0.2444 239 0.8156996587030717 (it; extends finger-like projections into; the surrounding maternal tissue)[enabler=As the trophoblast thickens through cell division] true false As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . det(trophoblast_NN_2_7, the_DT_1_3); mark(thickens_VBZ_3_19, As_IN_0_0); nsubj(thickens_VBZ_3_19, trophoblast_NN_2_7); prep(thickens_VBZ_3_19, through_IN_4_28); pobj(through_IN_4_28, division_NN_6_41); nn(division_NN_6_41, cell_NN_5_36); advcl(extends_VBZ_9_55, thickens_VBZ_3_19); punct(extends_VBZ_9_55, ,_,_7_50); nsubj(extends_VBZ_9_55, it_PRP_8_52); dobj(extends_VBZ_9_55, projections_NNS_11_75); prep(extends_VBZ_9_55, into_IN_12_87); punct(extends_VBZ_9_55, ._._17_124); amod(projections_NNS_11_75, finger-like_JJ_10_63); pobj(into_IN_12_87, tissue_NN_16_117); det(tissue_NN_16_117, the_DT_13_92); amod(tissue_NN_16_117, surrounding_VBG_14_96); amod(tissue_NN_16_117, maternal_JJ_15_108) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.6739752301274893 0.005 239 0.8129251700680272 (She; was born on; Berkeley) false false She was born April 3 , 1951 in Berkeley , California . nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.005 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.6738672882427084 0.3797 239 0.8101694915254237 (Rome; asked; Antiochus III) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.6738672882427084 0.3797 240 0.8108108108108109 (Rome; was to rule; the Greek cities) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0 0.6734019076491942 0.003 240 0.8080808080808081 (He; was descended from; Mecklenburg) false false He was descended from the B low family , an old aristocratic family from Mecklenburg . nsubjpass(descended_VBN_2_7, He_PRP_0_0); auxpass(descended_VBN_2_7, was_VBD_1_3); prep(descended_VBN_2_7, from_IN_3_17); punct(descended_VBN_2_7, ,_,_8_39); dobj(descended_VBN_2_7, family_NN_12_61); punct(descended_VBN_2_7, ._._15_85); pobj(from_IN_3_17, family_NN_7_32); det(family_NN_7_32, the_DT_4_22); nn(family_NN_7_32, B_NNP_5_26); amod(family_NN_7_32, low_JJ_6_28); det(family_NN_12_61, an_DT_9_41); amod(family_NN_12_61, old_JJ_10_44); amod(family_NN_12_61, aristocratic_JJ_11_48); prep(family_NN_12_61, from_IN_13_68); pobj(from_IN_13_68, Mecklenburg_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.003 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.672959250624098 1.0 241 0.8087248322147651 (The Edward C. Peters House; be also known as; Ivy Hall) false false The Edward C. Peters House , also known as Ivy Hall , is a Queen Anne style house in Atlanta , Georgia . det(House_NNP_4_21, The_DT_0_0); nn(House_NNP_4_21, Edward_NNP_1_4); nn(House_NNP_4_21, C._NNP_2_11); nn(House_NNP_4_21, Peters_NNP_3_14); punct(House_NNP_4_21, ,_,_5_27); nsubjpass(known_VBN_7_34, House_NNP_4_21); advmod(known_VBN_7_34, also_RB_6_29); prep(known_VBN_7_34, as_IN_8_40); parataxis(known_VBN_7_34, house_NN_17_76); punct(known_VBN_7_34, ._._22_102); pobj(as_IN_8_40, Hall_NNP_10_47); nn(Hall_NNP_10_47, Ivy_NNP_9_43); punct(house_NN_17_76, ,_,_11_52); cop(house_NN_17_76, is_VBZ_12_54); det(house_NN_17_76, a_DT_13_57); nn(house_NN_17_76, Queen_NNP_14_59); nn(house_NN_17_76, Anne_NNP_15_65); nn(house_NN_17_76, style_NN_16_70); prep(house_NN_17_76, in_IN_18_82); pobj(in_IN_18_82, Atlanta_NNP_19_85); punct(Atlanta_NNP_19_85, ,_,_20_92); appos(Atlanta_NNP_19_85, Georgia_NNP_21_94) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 1 0.672600851247067 0.9555 242 0.8093645484949833 (Lorenzo R. Stone House; is a historic house at; 218 South Street) false false Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts . nn(House_NNP_3_17, Lorenzo_NNP_0_0); nn(House_NNP_3_17, R._NNP_1_8); nn(House_NNP_3_17, Stone_NNP_2_11); nsubj(house_NN_7_37, House_NNP_3_17); cop(house_NN_7_37, is_VBZ_4_23); det(house_NN_7_37, a_DT_5_26); amod(house_NN_7_37, historic_JJ_6_28); prep(house_NN_7_37, at_IN_8_43); punct(house_NN_7_37, ._._16_94); pobj(at_IN_8_43, Street_NNP_11_56); num(Street_NNP_11_56, 218_CD_9_46); nn(Street_NNP_11_56, South_NNP_10_50); prep(Street_NNP_11_56, in_IN_12_63); pobj(in_IN_12_63, Southbridge_NNP_13_66); punct(Southbridge_NNP_13_66, ,_,_14_78); appos(Southbridge_NNP_13_66, Massachusetts_NNP_15_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.672600851247067 0.9555 243 0.81 (Plouzani; is a commune in; the Finistre department) false false Plouzani is a commune in the Finistre department in Bretagne in northwestern France . nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6716567794981523 0.7345 244 0.8106312292358804 (a brief electrical pulse; applied in; electroporation) false false In electroporation , a brief electrical pulse applied to a solution containing cells creates temporary holes in their plasma membranes , through which DNA can enter . pobj(In_IN_0_0, electroporation_NN_1_3); det(pulse_NN_6_40, a_DT_3_21); amod(pulse_NN_6_40, brief_JJ_4_23); amod(pulse_NN_6_40, electrical_JJ_5_29); prep(applied_VBD_7_46, In_IN_0_0); punct(applied_VBD_7_46, ,_,_2_19); nsubj(applied_VBD_7_46, pulse_NN_6_40); prep(applied_VBD_7_46, to_TO_8_54); dep(applied_VBD_7_46, creates_VBZ_13_85); punct(applied_VBD_7_46, ._._26_165); pobj(to_TO_8_54, solution_NN_10_59); det(solution_NN_10_59, a_DT_9_57); partmod(solution_NN_10_59, containing_VBG_11_68); dobj(containing_VBG_11_68, cells_NNS_12_79); dobj(creates_VBZ_13_85, holes_NNS_15_103); prep(creates_VBZ_13_85, in_IN_16_109); amod(holes_NNS_15_103, temporary_JJ_14_93); pobj(in_IN_16_109, membranes_NNS_19_125); poss(membranes_NNS_19_125, their_PRP$_17_112); nn(membranes_NNS_19_125, plasma_NN_18_118); punct(membranes_NNS_19_125, ,_,_20_135); rcmod(membranes_NNS_19_125, enter_VB_25_159); pobj(through_IN_21_137, which_WDT_22_145); rel(enter_VB_25_159, through_IN_21_137); nsubj(enter_VB_25_159, DNA_NNP_23_151); aux(enter_VB_25_159, can_MD_24_155) 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6702022622188899 1.0 245 0.8112582781456954 (Blue Water High; is aired twice on; Go) false false In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . pobj(In_IN_0_0, Africa_NNP_2_9); nn(Africa_NNP_2_9, South_NNP_1_3); nn(High_NNP_6_29, Blue_NNP_4_18); nn(High_NNP_6_29, Water_NNP_5_23); prep(aired_VBN_8_37, In_IN_0_0); punct(aired_VBN_8_37, ,_,_3_16); nsubjpass(aired_VBN_8_37, High_NNP_6_29); auxpass(aired_VBN_8_37, is_VBZ_7_34); advmod(aired_VBN_8_37, twice_RB_9_43); tmod(aired_VBN_8_37, week_NN_11_51); prep(aired_VBN_8_37, on_IN_12_56); prep(aired_VBN_8_37, on_IN_14_62); punct(aired_VBN_8_37, ,_,_19_92); conj(aired_VBN_8_37, DSTV_VB_20_94); punct(aired_VBN_8_37, ._._24_114); det(week_NN_11_51, a_DT_10_49); pobj(on_IN_12_56, Go_NNP_13_59); pobj(on_IN_14_62, system_NN_18_85); det(system_NN_18_85, the_DT_15_65); amod(system_NN_18_85, local_JJ_16_69); nn(system_NN_18_85, satellite_NN_17_75); prep(DSTV_VB_20_94, on_IN_21_99); pobj(on_IN_21_99, channel_NN_22_102); num(channel_NN_22_102, 123_CD_23_110) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.6655282801338094 0.3797 245 0.8085808580858086 (They; called; myoglobin) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.6646039439836912 0.1473 246 0.8092105263157895 (scientists and the public; Therefore must assess; the possible benefits of transgenic products) false false Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6641048085215293 0.0577 247 0.8098360655737705 (The Commodore 64 and 128; had surprised; market researchers) false false The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . det(Commodore_NNP_1_4, The_DT_0_0); num(Commodore_NNP_1_4, 64_CD_2_14); cc(Commodore_NNP_1_4, and_CC_3_17); conj(Commodore_NNP_1_4, 128_CD_4_21); punct(Commodore_NNP_1_4, ,_,_5_25); partmod(Commodore_NNP_1_4, used_VBN_7_34); punct(Commodore_NNP_1_4, ,_,_15_86); advmod(used_VBN_7_34, mainly_RB_6_27); prep(used_VBN_7_34, for_IN_8_39); pobj(for_IN_8_39, software_NN_12_67); possessive(children_NNS_9_43, 's_POS_10_52); poss(software_NN_12_67, children_NNS_9_43); amod(software_NN_12_67, educational_JJ_11_55); cc(software_NN_12_67, and_CC_13_76); conj(software_NN_12_67, games_NNS_14_80); nsubj(surprised_VBN_17_92, Commodore_NNP_1_4); aux(surprised_VBN_17_92, had_VBD_16_88); dobj(surprised_VBN_17_92, researchers_NNS_19_109); prep(surprised_VBN_17_92, by_IN_20_121); punct(surprised_VBN_17_92, ._._43_267); nn(researchers_NNS_19_109, market_NN_18_102); pcomp(by_IN_20_121, continuing_VBG_21_124); xcomp(continuing_VBG_21_124, produce_VB_23_138); aux(produce_VB_23_138, to_TO_22_135); dobj(produce_VB_23_138, sales_NNS_25_153); dep(produce_VB_23_138, operate_VBP_33_211); amod(sales_NNS_25_153, strong_JJ_24_146); amod(computers_NNS_31_197, other_JJ_28_171); amod(computers_NNS_31_197, low-profit_JJ_29_177); amod(computers_NNS_31_197, personal_JJ_30_188); advmod(operate_VBP_33_211, even_RB_26_159); dep(operate_VBP_33_211, though_IN_27_164); nsubj(operate_VBP_33_211, computers_NNS_31_197); advmod(operate_VBP_33_211, now_RB_32_207); dobj(operate_VBP_33_211, times_NNS_35_227); amod(times_NNS_35_227, several_JJ_34_219); amod(times_NNS_35_227, fast_RB_37_236); advmod(fast_RB_37_236, as_RB_36_233); cc(fast_RB_37_236, and_CC_38_241); conj(fast_RB_37_236, have_VBP_39_245); dobj(have_VBP_39_245, memory_NN_42_260); advmod(more_JJR_41_255, much_RB_40_250); amod(memory_NN_42_260, more_JJR_41_255) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6635079695655993 0.0216 248 0.8104575163398693 (Wolfowitz 's tenure; was; a notable success) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6635079695655993 0.0216 249 0.8110749185667753 (it; was enough; cool) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6631535112146543 0.1473 250 0.8116883116883117 (birth control pills; slightly raise; a woman 's risk of abnormal blood clotting) false false Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . pobj(Among_IN_0_0, nonsmokers_NNS_1_6); nn(pills_NNS_5_33, birth_NN_3_19); nn(pills_NNS_5_33, control_NN_4_25); prep(raise_VB_7_48, Among_IN_0_0); punct(raise_VB_7_48, ,_,_2_17); nsubj(raise_VB_7_48, pills_NNS_5_33); advmod(raise_VB_7_48, slightly_RB_6_39); dobj(raise_VB_7_48, risk_NN_11_65); det(woman_NN_9_56, a_DT_8_54); possessive(woman_NN_9_56, 's_POS_10_62); poss(risk_NN_11_65, woman_NN_9_56); prep(risk_NN_11_65, of_IN_12_70); pobj(of_IN_12_70, clotting_NN_15_88); amod(clotting_NN_15_88, abnormal_JJ_13_73); nn(clotting_NN_15_88, blood_NN_14_82); advcl(pressure_NN_19_110, raise_VB_7_48); punct(pressure_NN_19_110, ,_,_16_97); amod(pressure_NN_19_110, high_JJ_17_99); nn(pressure_NN_19_110, blood_NN_18_104); punct(pressure_NN_19_110, ,_,_20_119); conj(pressure_NN_19_110, attack_NN_22_127); punct(pressure_NN_19_110, ,_,_23_134); cc(pressure_NN_19_110, and_CC_24_136); conj(pressure_NN_19_110, stroke_NN_25_140); punct(pressure_NN_19_110, ._._26_147); nn(attack_NN_22_127, heart_NN_21_121) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6628407065119962 0.1473 251 0.8122977346278317 (the phloem; Thus can serve; a nerve-like function) false false Thus , the phloem can serve a nerve-like function , allowing for swift electrical communication between widely separated organs . det(phloem_NN_3_11, the_DT_2_7); advmod(serve_VB_5_22, Thus_RB_0_0); punct(serve_VB_5_22, ,_,_1_5); nsubj(serve_VB_5_22, phloem_NN_3_11); aux(serve_VB_5_22, can_MD_4_18); dobj(serve_VB_5_22, function_NN_8_41); punct(serve_VB_5_22, ,_,_9_50); xcomp(serve_VB_5_22, allowing_VBG_10_52); punct(serve_VB_5_22, ._._19_128); det(function_NN_8_41, a_DT_6_28); amod(function_NN_8_41, nerve-like_JJ_7_30); prep(allowing_VBG_10_52, for_IN_11_61); pobj(for_IN_11_61, communication_NN_14_82); amod(communication_NN_14_82, swift_JJ_12_65); amod(communication_NN_14_82, electrical_JJ_13_71); prep(communication_NN_14_82, between_IN_15_96); pobj(between_IN_15_96, organs_NNS_18_121); advmod(separated_VBN_17_111, widely_RB_16_104); amod(organs_NNS_18_121, separated_VBN_17_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.6625170270016472 0.0478 251 0.8096774193548387 (He; are afraid of; him) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6617297258836088 0.0155 252 0.8102893890675241 (Senator Panfilo Lacson; be linked to; the February 6) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6617297258836088 0.0155 253 0.8108974358974359 (Hutt Park Railway; be operated in; Petone) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6617297258836088 0.0155 254 0.8115015974440895 (the year-long course; be completed at; the Canadian Forces Command and Staff College) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.660268730880021 0.0105 254 0.8089171974522293 (the Aetolians; realised; Rome) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0105 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6596249234989158 0.0083 255 0.8095238095238095 (Federico Arturo Cordero Salguero; was born in; Rio Piedras) false false Cordero was born Federico Arturo Cordero Salguero in Rio Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0083 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6596249234989158 0.0083 256 0.810126582278481 (Francesco Sparanero; was born in; San Prospero) false false Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0083 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6592176164356323 0.1349 257 0.8107255520504731 (Both radial glia and astrocytes; can also act as; stem cells) false false Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . det(glia_NN_2_12, Both_DT_0_0); amod(glia_NN_2_12, radial_JJ_1_5); cc(glia_NN_2_12, and_CC_3_17); conj(glia_NN_2_12, astrocytes_NNS_4_21); nsubj(act_VB_7_41, glia_NN_2_12); aux(act_VB_7_41, can_MD_5_32); advmod(act_VB_7_41, also_RB_6_36); prep(act_VB_7_41, as_IN_8_45); punct(act_VB_7_41, ,_,_11_59); xcomp(act_VB_7_41, generating_VBG_12_61); punct(act_VB_7_41, ._._17_93); pobj(as_IN_8_45, cells_NNS_10_53); nn(cells_NNS_10_53, stem_NN_9_48); dobj(generating_VBG_12_61, neurons_NNS_14_76); amod(neurons_NNS_14_76, new_JJ_13_72); cc(neurons_NNS_14_76, and_CC_15_84); conj(neurons_NNS_14_76, glia_NNP_16_88) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6591031256357218 1.0 258 0.8113207547169812 (Blue Water High; is aired twice in; South Africa) false false In South Africa , Blue Water High is aired twice a week on Go on the local satellite system , DSTV on channel 123 . pobj(In_IN_0_0, Africa_NNP_2_9); nn(Africa_NNP_2_9, South_NNP_1_3); nn(High_NNP_6_29, Blue_NNP_4_18); nn(High_NNP_6_29, Water_NNP_5_23); prep(aired_VBN_8_37, In_IN_0_0); punct(aired_VBN_8_37, ,_,_3_16); nsubjpass(aired_VBN_8_37, High_NNP_6_29); auxpass(aired_VBN_8_37, is_VBZ_7_34); advmod(aired_VBN_8_37, twice_RB_9_43); tmod(aired_VBN_8_37, week_NN_11_51); prep(aired_VBN_8_37, on_IN_12_56); prep(aired_VBN_8_37, on_IN_14_62); punct(aired_VBN_8_37, ,_,_19_92); conj(aired_VBN_8_37, DSTV_VB_20_94); punct(aired_VBN_8_37, ._._24_114); det(week_NN_11_51, a_DT_10_49); pobj(on_IN_12_56, Go_NNP_13_59); pobj(on_IN_14_62, system_NN_18_85); det(system_NN_18_85, the_DT_15_65); amod(system_NN_18_85, local_JJ_16_69); nn(system_NN_18_85, satellite_NN_17_75); prep(DSTV_VB_20_94, on_IN_21_99); pobj(on_IN_21_99, channel_NN_22_102); num(channel_NN_22_102, 123_CD_23_110) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6588559275827122 1.0 259 0.8119122257053292 (3.4 million additional shares; will be offered in; concurrent international offerings) false false Five million shares will be offered in the U.S. , and 3.4 million additional shares will be offered in concurrent international offerings outside the U.S. . number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6577376960677589 0.3797 260 0.8125 (Dhoni; completed; his 4,000 runs) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6577376960677589 0.3797 261 0.8130841121495327 (Dominion Textile Inc. holders; adopted; a shareholder-rights plan) false false Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . nn(holders_NNS_3_22, Dominion_NNP_0_0); nn(holders_NNS_3_22, Textile_NNP_1_9); nn(holders_NNS_3_22, Inc._NNP_2_17); nsubj(adopted_VBD_4_30, holders_NNS_3_22); dobj(adopted_VBD_4_30, plan_NN_7_59); prep(adopted_VBD_4_30, at_IN_8_64); punct(adopted_VBD_4_30, ._._12_86); det(plan_NN_7_59, a_DT_5_38); nn(plan_NN_7_59, shareholder-rights_NNS_6_40); pobj(at_IN_8_64, meeting_NN_11_78); det(meeting_NN_11_78, the_DT_9_67); amod(meeting_NN_11_78, annual_JJ_10_71) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6577376960677589 0.3797 262 0.8136645962732919 (He; completed; his move) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6577376960677589 0.3797 263 0.8142414860681114 (He; played; eleven seasons) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6577376960677589 0.3797 264 0.8148148148148148 (He; replaced; Jonathan Groff) false false He replaced Jonathan Groff in the Broadway production of the musical Spring Awakening , in the lead role of Melchior Gabor , on May 23 2008 . nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6572154096707211 0.1349 265 0.8153846153846154 (the investors; would pay only a symbolic one lira for; the station)[attrib=Florio Fiorini said] false true Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.6554307574846172 0.2444 265 0.8128834355828221 (it; that contains at; the time of death) false false However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . det(carbon-14_NN_3_14, the_DT_2_10); rcmod(carbon-14_NN_3_14, contains_VBZ_6_32); dobj(contains_VBZ_6_32, that_IN_4_24); nsubj(contains_VBZ_6_32, it_PRP_5_29); prep(contains_VBZ_6_32, at_IN_7_41); pobj(at_IN_7_41, time_NN_9_48); det(time_NN_9_48, the_DT_8_44); prep(time_NN_9_48, of_IN_10_53); pobj(of_IN_10_53, death_NN_11_56); advmod(decays_VBZ_13_69, However_RB_0_0); punct(decays_VBZ_13_69, ,_,_1_8); nsubj(decays_VBZ_13_69, carbon-14_NN_3_14); advmod(decays_VBZ_13_69, slowly_RB_12_62); prep(decays_VBZ_13_69, into_IN_14_76); punct(decays_VBZ_13_69, ._._19_111); pobj(into_IN_14_76, element_NN_16_89); det(element_NN_16_89, another_DT_15_81); punct(element_NN_16_89, ,_,_17_97); appos(element_NN_16_89, nitrogen-14_CD_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6534611163450441 0.7345 266 0.8134556574923547 (orders; were up a nominal 5 % before; adjustment) false false Before adjustment for inflation , the association said , orders were up a nominal 5 % . pobj(Before_IN_0_0, adjustment_NN_1_7); prep(adjustment_NN_1_7, for_IN_2_18); pobj(for_IN_2_18, inflation_NN_3_22); det(association_NN_6_38, the_DT_5_34); punct(said_VBD_7_50, ,_,_4_32); nsubj(said_VBD_7_50, association_NN_6_38); punct(said_VBD_7_50, ,_,_8_55); prep(were_VBD_10_64, Before_IN_0_0); parataxis(were_VBD_10_64, said_VBD_7_50); nsubj(were_VBD_10_64, orders_NNS_9_57); advmod(were_VBD_10_64, up_RB_11_69); punct(were_VBD_10_64, ._._16_86); dep(up_RB_11_69, %_NN_15_84); det(%_NN_15_84, a_DT_12_72); amod(%_NN_15_84, nominal_JJ_13_74); num(%_NN_15_84, 5_CD_14_82) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6521819297665553 0.111 267 0.8140243902439024 (Macromolecules; be translocated through; the phloem) false false Macromolecules translocated through the phloem include proteins and various types of RNA that enter the sieve tubes through plasmodesmata . partmod(Macromolecules_NNS_0_0, translocated_VBN_1_15); prep(translocated_VBN_1_15, through_IN_2_28); pobj(through_IN_2_28, phloem_NN_4_40); det(phloem_NN_4_40, the_DT_3_36); nsubj(include_VBP_5_47, Macromolecules_NNS_0_0); dobj(include_VBP_5_47, proteins_NNS_6_55); punct(include_VBP_5_47, ._._19_138); cc(proteins_NNS_6_55, and_CC_7_64); conj(proteins_NNS_6_55, types_NNS_9_76); dep(proteins_NNS_6_55, enter_VBP_13_94); amod(types_NNS_9_76, various_JJ_8_68); prep(types_NNS_9_76, of_IN_10_82); pobj(of_IN_10_82, RNA_NNP_11_85); dep(enter_VBP_13_94, that_IN_12_89); dobj(enter_VBP_13_94, tubes_NNS_16_110); prep(enter_VBP_13_94, through_IN_17_116); det(tubes_NNS_16_110, the_DT_14_100); amod(tubes_NNS_16_110, sieve_JJ_15_104); pobj(through_IN_17_116, plasmodesmata_NN_18_124) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6521819297665553 0.111 268 0.8145896656534954 (The Commodore 64 and 128; be mainly used for; children 's educational software and games) false false The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . det(Commodore_NNP_1_4, The_DT_0_0); num(Commodore_NNP_1_4, 64_CD_2_14); cc(Commodore_NNP_1_4, and_CC_3_17); conj(Commodore_NNP_1_4, 128_CD_4_21); punct(Commodore_NNP_1_4, ,_,_5_25); partmod(Commodore_NNP_1_4, used_VBN_7_34); punct(Commodore_NNP_1_4, ,_,_15_86); advmod(used_VBN_7_34, mainly_RB_6_27); prep(used_VBN_7_34, for_IN_8_39); pobj(for_IN_8_39, software_NN_12_67); possessive(children_NNS_9_43, 's_POS_10_52); poss(software_NN_12_67, children_NNS_9_43); amod(software_NN_12_67, educational_JJ_11_55); cc(software_NN_12_67, and_CC_13_76); conj(software_NN_12_67, games_NNS_14_80); nsubj(surprised_VBN_17_92, Commodore_NNP_1_4); aux(surprised_VBN_17_92, had_VBD_16_88); dobj(surprised_VBN_17_92, researchers_NNS_19_109); prep(surprised_VBN_17_92, by_IN_20_121); punct(surprised_VBN_17_92, ._._43_267); nn(researchers_NNS_19_109, market_NN_18_102); pcomp(by_IN_20_121, continuing_VBG_21_124); xcomp(continuing_VBG_21_124, produce_VB_23_138); aux(produce_VB_23_138, to_TO_22_135); dobj(produce_VB_23_138, sales_NNS_25_153); dep(produce_VB_23_138, operate_VBP_33_211); amod(sales_NNS_25_153, strong_JJ_24_146); amod(computers_NNS_31_197, other_JJ_28_171); amod(computers_NNS_31_197, low-profit_JJ_29_177); amod(computers_NNS_31_197, personal_JJ_30_188); advmod(operate_VBP_33_211, even_RB_26_159); dep(operate_VBP_33_211, though_IN_27_164); nsubj(operate_VBP_33_211, computers_NNS_31_197); advmod(operate_VBP_33_211, now_RB_32_207); dobj(operate_VBP_33_211, times_NNS_35_227); amod(times_NNS_35_227, several_JJ_34_219); amod(times_NNS_35_227, fast_RB_37_236); advmod(fast_RB_37_236, as_RB_36_233); cc(fast_RB_37_236, and_CC_38_241); conj(fast_RB_37_236, have_VBP_39_245); dobj(have_VBP_39_245, memory_NN_42_260); advmod(more_JJR_41_255, much_RB_40_250); amod(memory_NN_42_260, more_JJR_41_255) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6502440207966621 0.0155 269 0.8151515151515152 (a shareholder-rights plan; be adopted at; the annual meeting) false false Dominion Textile Inc. holders adopted a shareholder-rights plan at the annual meeting . nn(holders_NNS_3_22, Dominion_NNP_0_0); nn(holders_NNS_3_22, Textile_NNP_1_9); nn(holders_NNS_3_22, Inc._NNP_2_17); nsubj(adopted_VBD_4_30, holders_NNS_3_22); dobj(adopted_VBD_4_30, plan_NN_7_59); prep(adopted_VBD_4_30, at_IN_8_64); punct(adopted_VBD_4_30, ._._12_86); det(plan_NN_7_59, a_DT_5_38); nn(plan_NN_7_59, shareholder-rights_NNS_6_40); pobj(at_IN_8_64, meeting_NN_11_78); det(meeting_NN_11_78, the_DT_9_67); amod(meeting_NN_11_78, annual_JJ_10_71) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6493204702709027 0.0084 270 0.8157099697885196 (It; is; a distinction that satisfies neither side in the debate) false false It is a distinction that satisfies neither side in the debate . nsubj(distinction_NN_3_8, It_PRP_0_0); cop(distinction_NN_3_8, is_VBZ_1_3); det(distinction_NN_3_8, a_DT_2_6); rcmod(distinction_NN_3_8, satisfies_NNS_5_25); punct(distinction_NN_3_8, ._._11_62); nsubj(satisfies_NNS_5_25, that_IN_4_20); dobj(satisfies_NNS_5_25, side_NN_7_43); det(side_NN_7_43, neither_DT_6_35); prep(side_NN_7_43, in_IN_8_48); pobj(in_IN_8_48, debate_NN_10_55); det(debate_NN_10_55, the_DT_9_51) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6493204702709027 0.0084 271 0.8162650602409639 (Umbriatico; is; a comune and town in the province of Crotone , in Calabria , southern Italy) false false Umbriatico is a comune and town in the province of Crotone , in Calabria , southern Italy . cc(comune_JJ_3_16, and_CC_4_23); conj(comune_JJ_3_16, town_NN_5_27); prep(comune_JJ_3_16, in_IN_6_32); pobj(in_IN_6_32, province_NN_8_39); det(province_NN_8_39, the_DT_7_35); prep(province_NN_8_39, of_IN_9_48); pobj(of_IN_9_48, Crotone_NNP_10_51); punct(Crotone_NNP_10_51, ,_,_11_59); prep(Crotone_NNP_10_51, in_IN_12_61); pobj(in_IN_12_61, Calabria_NNP_13_64); nsubj(Italy_NNP_16_84, Umbriatico_NNP_0_0); cop(Italy_NNP_16_84, is_VBZ_1_11); det(Italy_NNP_16_84, a_DT_2_14); ccomp(Italy_NNP_16_84, comune_JJ_3_16); punct(Italy_NNP_16_84, ,_,_14_73); amod(Italy_NNP_16_84, southern_JJ_15_75); punct(Italy_NNP_16_84, ._._17_90) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6485183512827597 0.0057 272 0.8168168168168168 (The Notre Dame Academy and Convent; is located on; the north end of Omaha) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0057 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.6483507498113193 0.2444 272 0.8143712574850299 (It; takes encouragement from; one of the schoolboys) false false It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6467374344684111 0.3797 273 0.8149253731343283 (Interspec Inc.; reported; a net loss of $ 2.4 million) false false Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . nn(Inc._NNP_1_10, Interspec_NNP_0_0); nsubj(reported_VBD_2_15, Inc._NNP_1_10); dobj(reported_VBD_2_15, loss_NN_5_30); punct(reported_VBD_2_15, ._._18_95); det(loss_NN_5_30, a_DT_3_24); amod(loss_NN_5_30, net_JJ_4_26); prep(loss_NN_5_30, of_IN_6_35); prep(loss_NN_5_30, for_IN_10_52); pobj(of_IN_6_35, $_$_7_38); number($_$_7_38, 2.4_CD_8_40); number($_$_7_38, million_CD_9_44); pobj(for_IN_10_52, quarter_NN_14_73); det(quarter_NN_14_73, the_DT_11_56); amod(quarter_NN_14_73, fiscal_JJ_12_60); amod(quarter_NN_14_73, third_JJ_13_67); partmod(quarter_NN_14_73, ended_VBN_15_81); tmod(ended_VBN_15_81, Aug._NNP_16_87); num(Aug._NNP_16_87, 31_CD_17_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0 0.6466548160114372 0.0068 273 0.8125 (This method; to produce; cloned animals whose nuclear genes are identical to those of the animal) false false This method is used to produce cloned animals whose nuclear genes are identical to those of the animal supplying the nucleus . det(method_NN_1_5, This_DT_0_0); nsubjpass(used_VBN_3_15, method_NN_1_5); auxpass(used_VBN_3_15, is_VBZ_2_12); xcomp(used_VBN_3_15, produce_VB_5_23); punct(used_VBN_3_15, ._._21_125); aux(produce_VB_5_23, to_TO_4_20); dobj(produce_VB_5_23, animals_NNS_7_38); amod(animals_NNS_7_38, cloned_JJ_6_31); rcmod(animals_NNS_7_38, identical_JJ_12_70); poss(genes_NNS_10_60, whose_WP$_8_46); amod(genes_NNS_10_60, nuclear_JJ_9_52); nsubj(identical_JJ_12_70, genes_NNS_10_60); cop(identical_JJ_12_70, are_VBP_11_66); prep(identical_JJ_12_70, to_TO_13_80); pobj(to_TO_13_80, those_DT_14_83); prep(those_DT_14_83, of_IN_15_89); pobj(of_IN_15_89, animal_NN_17_96); det(animal_NN_17_96, the_DT_16_92); partmod(animal_NN_17_96, supplying_VBG_18_103); dobj(supplying_VBG_18_103, nucleus_JJ_20_117); det(nucleus_JJ_20_117, the_DT_19_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0068 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.6458621850395169 1.0 273 0.8100890207715133 (he; is not captured home to; the plantation) false false However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0 0.6423292150313767 0.7345 273 0.8076923076923077 (he; dismissed for; Western Australia) false false Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.6423292150313767 0.7345 273 0.8053097345132744 (he; dismissed in; a tour match) false false Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6423292150313767 0.7345 274 0.8058823529411765 (he; looked at; dead cells) false false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6423292150313767 0.7345 275 0.8064516129032258 (he; looked through; a microscope) false false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6420628537310177 0.3797 276 0.8070175438596491 (he; lost to Thai; Paradorn Srichaphan) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6420628537310177 0.3797 277 0.8075801749271136 (government; operated; Hutt Park Railway) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.6420628537310177 0.3797 277 0.8052325581395349 (he; tapped; Connor) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6420628537310177 0.3797 278 0.8057971014492754 (he; completed; the year-long course) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6418361293595238 0.4031 279 0.8063583815028902 (Bruno DeGol; be chairman of; DeGol Brothers Lumber) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6418361293595238 0.4031 280 0.8069164265129684 (Terry L. Haines; be formerly general manager of; Canadian operations) false false Terry L. Haines , formerly general manager of Canadian operations , was elected to the new position of vice president , North American sales , of this plastics concern . nn(Haines_NNP_2_9, Terry_NNP_0_0); nn(Haines_NNP_2_9, L._NNP_1_6); punct(Haines_NNP_2_9, ,_,_3_16); appos(Haines_NNP_2_9, manager_NN_6_35); punct(Haines_NNP_2_9, ,_,_10_66); advmod(manager_NN_6_35, formerly_RB_4_18); amod(manager_NN_6_35, general_JJ_5_27); prep(manager_NN_6_35, of_IN_7_43); pobj(of_IN_7_43, operations_NNS_9_55); amod(operations_NNS_9_55, Canadian_JJ_8_46); nsubjpass(elected_VBN_12_72, Haines_NNP_2_9); auxpass(elected_VBN_12_72, was_VBD_11_68); prep(elected_VBN_12_72, to_TO_13_80); punct(elected_VBN_12_72, ,_,_20_118); punct(elected_VBN_12_72, ._._29_168); pobj(to_TO_13_80, position_NN_16_91); det(position_NN_16_91, the_DT_14_83); amod(position_NN_16_91, new_JJ_15_87); prep(position_NN_16_91, of_IN_17_100); pobj(of_IN_17_100, president_NN_19_108); nn(president_NN_19_108, vice_NN_18_103); dobj(,_,_20_118, sales_NNS_23_135); nn(sales_NNS_23_135, North_NNP_21_120); nn(sales_NNS_23_135, American_NNP_22_126); punct(sales_NNS_23_135, ,_,_24_141); prep(sales_NNS_23_135, of_IN_25_143); pobj(of_IN_25_143, concern_NN_28_160); det(concern_NN_28_160, this_DT_26_146); nn(concern_NN_28_160, plastics_NNS_27_151) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.6407452027724365 1.0 280 0.8045977011494253 (she; is nominated by; President Bush) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6401619679454134 0.1443 281 0.8051575931232091 (he; expects to name; a new group president to head that operation)[attrib=Mr. Bailey said] false true Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.1443 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6394396276660913 0.0432 282 0.8057142857142857 (his birth; was born in; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0432 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6390235990385105 0.3797 283 0.8062678062678063 (the band; struggled to find; support slots) false false As the band struggled to find support slots on upcoming tours without the help of a booking agent , they played locally in Southern California throughout the winter of 2004 and the spring of 2005 . det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6348307770777901 0.2444 284 0.8068181818181818 (the carbon-14 that it contains at the time of death; However slowly decays into; another element) false false However , the carbon-14 that it contains at the time of death slowly decays into another element , nitrogen-14 . det(carbon-14_NN_3_14, the_DT_2_10); rcmod(carbon-14_NN_3_14, contains_VBZ_6_32); dobj(contains_VBZ_6_32, that_IN_4_24); nsubj(contains_VBZ_6_32, it_PRP_5_29); prep(contains_VBZ_6_32, at_IN_7_41); pobj(at_IN_7_41, time_NN_9_48); det(time_NN_9_48, the_DT_8_44); prep(time_NN_9_48, of_IN_10_53); pobj(of_IN_10_53, death_NN_11_56); advmod(decays_VBZ_13_69, However_RB_0_0); punct(decays_VBZ_13_69, ,_,_1_8); nsubj(decays_VBZ_13_69, carbon-14_NN_3_14); advmod(decays_VBZ_13_69, slowly_RB_12_62); prep(decays_VBZ_13_69, into_IN_14_76); punct(decays_VBZ_13_69, ._._19_111); pobj(into_IN_14_76, element_NN_16_89); det(element_NN_16_89, another_DT_15_81); punct(element_NN_16_89, ,_,_17_97); appos(element_NN_16_89, nitrogen-14_CD_18_99) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6326329240515012 0.3797 285 0.8073654390934845 (Beecher; began collecting; fossils)[enabler=when his family moved to northwestern Pennsylvania] true false Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 1 0.630431221182116 0.1443 286 0.807909604519774 (The continuing debate; exemplifies; one of this textbook 's recurring ideas) false false The continuing debate about GMOs in agriculture exemplifies one of this textbook 's recurring ideas : the relationship of science and technology to society . det(debate_NN_2_15, The_DT_0_0); amod(debate_NN_2_15, continuing_VBG_1_4); prep(debate_NN_2_15, about_IN_3_22); pobj(about_IN_3_22, GMOs_NNS_4_28); prep(GMOs_NNS_4_28, in_IN_5_33); pobj(in_IN_5_33, agriculture_NN_6_36); nsubj(exemplifies_VBZ_7_48, debate_NN_2_15); dobj(exemplifies_VBZ_7_48, one_CD_8_60); punct(exemplifies_VBZ_7_48, ._._24_156); prep(one_CD_8_60, of_IN_9_64); punct(one_CD_8_60, :_:_15_100); dep(one_CD_8_60, relationship_NN_17_106); pobj(of_IN_9_64, ideas_NNS_14_94); det(textbook_NN_11_72, this_DT_10_67); possessive(textbook_NN_11_72, 's_POS_12_81); poss(ideas_NNS_14_94, textbook_NN_11_72); amod(ideas_NNS_14_94, recurring_VBG_13_84); det(relationship_NN_17_106, the_DT_16_102); prep(relationship_NN_17_106, of_IN_18_119); prep(relationship_NN_17_106, to_TO_22_145); pobj(of_IN_18_119, science_NN_19_122); cc(science_NN_19_122, and_CC_20_130); conj(science_NN_19_122, technology_NN_21_134); pobj(to_TO_22_145, society_NN_23_148) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.1443 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.630282469455543 0.3797 287 0.8084507042253521 (operating profit; declined; 35 %) false false Exclusive of the gain , operating profit declined 35 % to $ 16.4 million , or 21 cents a share , from $ 25.2 million , or 31 cents a share . prep(Exclusive_JJ_0_0, of_IN_1_10); pobj(of_IN_1_10, gain_NN_3_17); det(gain_NN_3_17, the_DT_2_13); nn(profit_NN_6_34, operating_NN_5_24); ccomp(declined_VBD_7_41, Exclusive_JJ_0_0); punct(declined_VBD_7_41, ,_,_4_22); nsubj(declined_VBD_7_41, profit_NN_6_34); dobj(declined_VBD_7_41, %_NN_9_53); prep(declined_VBD_7_41, to_TO_10_55); prep(declined_VBD_7_41, from_IN_21_97); punct(declined_VBD_7_41, ._._31_139); num(%_NN_9_53, 35_CD_8_50); pobj(to_TO_10_55, $_$_11_58); number($_$_11_58, 16.4_CD_12_60); number($_$_11_58, million_CD_13_65); punct($_$_11_58, ,_,_14_73); cc($_$_11_58, or_CC_15_75); conj($_$_11_58, cents_NNS_17_81); punct($_$_11_58, ,_,_20_95); num(cents_NNS_17_81, 21_CD_16_78); dep(cents_NNS_17_81, share_NN_19_89); det(share_NN_19_89, a_DT_18_87); pobj(from_IN_21_97, $_$_22_102); number($_$_22_102, 25.2_CD_23_104); number($_$_22_102, million_CD_24_109); punct($_$_22_102, ,_,_25_117); cc($_$_22_102, or_CC_26_119); conj($_$_22_102, cents_NNS_28_125); num(cents_NNS_28_125, 31_CD_27_122); dep(cents_NNS_28_125, share_NN_30_133); det(share_NN_30_133, a_DT_29_131) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.630282469455543 0.3797 288 0.8089887640449438 (the mining company; posted; a 40 % drop) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.630282469455543 0.3797 289 0.8095238095238095 (the airline; launched; codeshare flights) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.630282469455543 0.3797 290 0.8100558659217877 (the number of jobless; rose; 0.1 %) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6301853387464892 0.0155 291 0.8105849582172702 (the lower volume; be blamed on; its soft-drink prices which were about 3 % higher in the third quarter) false false Coca-Cola Enterprises blamed the lower volume on its soft-drink prices , which were about 3 % higher in the third quarter . nn(Enterprises_NNPS_1_10, Coca-Cola_NNP_0_0); nsubj(blamed_VBD_2_22, Enterprises_NNPS_1_10); dobj(blamed_VBD_2_22, volume_NN_5_39); prep(blamed_VBD_2_22, on_IN_6_46); punct(blamed_VBD_2_22, ._._21_122); det(volume_NN_5_39, the_DT_3_29); amod(volume_NN_5_39, lower_JJR_4_33); pobj(on_IN_6_46, prices_NNS_9_64); poss(prices_NNS_9_64, its_PRP$_7_49); nn(prices_NNS_9_64, soft-drink_NN_8_53); punct(prices_NNS_9_64, ,_,_10_71); rcmod(prices_NNS_9_64, higher_JJR_16_94); quantmod(3_CD_14_90, about_IN_13_84); num(%_NN_15_92, 3_CD_14_90); nsubj(higher_JJR_16_94, which_WDT_11_73); cop(higher_JJR_16_94, were_VBD_12_79); measure(higher_JJR_16_94, %_NN_15_92); prep(higher_JJR_16_94, in_IN_17_101); pobj(in_IN_17_101, quarter_NN_20_114); det(quarter_NN_20_114, the_DT_18_104); amod(quarter_NN_20_114, third_JJ_19_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.629727135069219 0.0416 291 0.8083333333333333 (Populations of all species; have; the potential) false false Populations of all species have the potential to expand greatly when resources are abundant . prep(Populations_NNS_0_0, of_IN_1_12); pobj(of_IN_1_12, species_NNS_3_19); det(species_NNS_3_19, all_DT_2_15); nsubj(have_VBP_4_27, Populations_NNS_0_0); dobj(have_VBP_4_27, potential_JJ_6_36); punct(have_VBP_4_27, ._._14_92); det(potential_JJ_6_36, the_DT_5_32); xcomp(potential_JJ_6_36, expand_VB_8_49); aux(expand_VB_8_49, to_TO_7_46); advmod(expand_VB_8_49, greatly_RB_9_56); advcl(expand_VB_8_49, abundant_JJ_13_83); advmod(abundant_JJ_13_83, when_WRB_10_64); nsubj(abundant_JJ_13_83, resources_NNS_11_69); cop(abundant_JJ_13_83, are_VBP_12_79) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.629727135069219 0.0416 292 0.8088642659279779 (The data; support; the hypothesis) false false The data support the hypothesis that garlic mustard suppresses growth of native trees by affecting the soil in a way that disrupts mutualistic associations between the trees and arbuscular mycorrhizal fungi . det(data_NNS_1_4, The_DT_0_0); nsubj(support_VBP_2_9, data_NNS_1_4); dobj(support_VBP_2_9, hypothesis_NN_4_21); punct(support_VBP_2_9, ._._31_207); det(hypothesis_NN_4_21, the_DT_3_17); prep(hypothesis_NN_4_21, that_IN_5_32); pobj(that_IN_5_32, growth_NN_9_63); amod(growth_NN_9_63, garlic_JJ_6_37); nn(growth_NN_9_63, mustard_NN_7_44); nn(growth_NN_9_63, suppresses_NNS_8_52); prep(growth_NN_9_63, of_IN_10_70); prep(growth_NN_9_63, by_IN_13_86); pobj(of_IN_10_70, trees_NNS_12_80); amod(trees_NNS_12_80, native_JJ_11_73); pcomp(by_IN_13_86, affecting_VBG_14_89); dobj(affecting_VBG_14_89, soil_NN_16_103); prep(affecting_VBG_14_89, in_IN_17_108); det(soil_NN_16_103, the_DT_15_99); pobj(in_IN_17_108, way_NN_19_113); det(way_NN_19_113, a_DT_18_111); prep(way_NN_19_113, that_IN_20_117); nsubj(that_IN_20_117, associations_NNS_23_143); nn(associations_NNS_23_143, disrupts_NNS_21_122); amod(associations_NNS_23_143, mutualistic_JJ_22_131); prep(associations_NNS_23_143, between_IN_24_156); pobj(between_IN_24_156, trees_NNS_26_168); det(trees_NNS_26_168, the_DT_25_164); cc(trees_NNS_26_168, and_CC_27_174); conj(trees_NNS_26_168, fungi_NNS_30_201); amod(fungi_NNS_30_201, arbuscular_JJ_28_178); amod(fungi_NNS_30_201, mycorrhizal_JJ_29_189) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.6282102506752052 0.0416 292 0.8066298342541437 (aquaporin channels; allow to cross; the epithelium) false false When the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium . det(kidneys_NNS_2_9, the_DT_1_5); advmod(conserving_VBG_4_21, When_WRB_0_0); nsubj(conserving_VBG_4_21, kidneys_NNS_2_9); aux(conserving_VBG_4_21, are_VBP_3_17); dobj(conserving_VBG_4_21, water_NN_5_32); nn(channels_NNS_8_50, aquaporin_NN_7_40); prep(channels_NNS_8_50, in_IN_9_59); pobj(in_IN_9_59, duct_NN_12_77); det(duct_NN_12_77, the_DT_10_62); nn(duct_NN_12_77, collecting_NN_11_66); dep(allow_VBP_13_82, conserving_VBG_4_21); punct(allow_VBP_13_82, ,_,_6_38); nsubj(allow_VBP_13_82, channels_NNS_8_50); xcomp(allow_VBP_13_82, cross_VB_17_107); punct(allow_VBP_13_82, ._._20_128); nn(molecules_NNS_15_94, water_NN_14_88); nsubj(cross_VB_17_107, molecules_NNS_15_94); aux(cross_VB_17_107, to_TO_16_104); dobj(cross_VB_17_107, epithelium_NN_19_117); det(epithelium_NN_19_117, the_DT_18_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.6280293622098216 0.0055 292 0.8044077134986226 (his birth; was born on; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0055 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.6264160448732808 0.9555 292 0.8021978021978022 (the squadron; be an airfield at; Cape Torokina) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.626406871283665 0.0307 293 0.8027397260273973 (Most coastal scyphozoans; go as; small polyps) false false Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . amod(scyphozoans_NNS_2_13, Most_JJS_0_0); amod(scyphozoans_NNS_2_13, coastal_JJ_1_5); nsubj(go_VBP_3_25, scyphozoans_NNS_2_13); prep(go_VBP_3_25, through_IN_4_28); prep(go_VBP_3_25, as_IN_7_44); punct(go_VBP_3_25, ,_,_14_84); prep(go_VBP_3_25, whereas_IN_15_86); punct(go_VBP_3_25, ._._29_170); pobj(through_IN_4_28, stage_NN_6_38); det(stage_NN_6_38, a_DT_5_36); pobj(as_IN_7_44, polyps_NNS_9_53); amod(polyps_NNS_9_53, small_JJ_8_47); prep(polyps_NNS_9_53, during_IN_10_60); pobj(during_IN_10_60, cycle_NN_13_78); poss(cycle_NN_13_78, their_PRP$_11_67); nn(cycle_NN_13_78, life_NN_12_73); pobj(whereas_IN_15_86, those_DT_16_94); rcmod(those_DT_16_94, live_VBP_18_105); nsubj(live_VBP_18_105, that_WDT_17_100); prep(live_VBP_18_105, in_IN_19_110); dep(live_VBP_18_105, lack_VBP_24_138); pobj(in_IN_19_110, ocean_NN_22_122); det(ocean_NN_22_122, the_DT_20_113); amod(ocean_NN_22_122, open_JJ_21_117); advmod(lack_VBP_24_138, generally_RB_23_128); dobj(lack_VBP_24_138, stage_NN_27_153); advmod(lack_VBP_24_138, altogether_RB_28_159); det(stage_NN_27_153, the_DT_25_143); nn(stage_NN_27_153, polyp_NN_26_147) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0307 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.626406871283665 0.0307 294 0.8032786885245902 (Most coastal scyphozoans; go through; a stage) false false Most coastal scyphozoans go through a stage as small polyps during their life cycle , whereas those that live in the open ocean generally lack the polyp stage altogether . amod(scyphozoans_NNS_2_13, Most_JJS_0_0); amod(scyphozoans_NNS_2_13, coastal_JJ_1_5); nsubj(go_VBP_3_25, scyphozoans_NNS_2_13); prep(go_VBP_3_25, through_IN_4_28); prep(go_VBP_3_25, as_IN_7_44); punct(go_VBP_3_25, ,_,_14_84); prep(go_VBP_3_25, whereas_IN_15_86); punct(go_VBP_3_25, ._._29_170); pobj(through_IN_4_28, stage_NN_6_38); det(stage_NN_6_38, a_DT_5_36); pobj(as_IN_7_44, polyps_NNS_9_53); amod(polyps_NNS_9_53, small_JJ_8_47); prep(polyps_NNS_9_53, during_IN_10_60); pobj(during_IN_10_60, cycle_NN_13_78); poss(cycle_NN_13_78, their_PRP$_11_67); nn(cycle_NN_13_78, life_NN_12_73); pobj(whereas_IN_15_86, those_DT_16_94); rcmod(those_DT_16_94, live_VBP_18_105); nsubj(live_VBP_18_105, that_WDT_17_100); prep(live_VBP_18_105, in_IN_19_110); dep(live_VBP_18_105, lack_VBP_24_138); pobj(in_IN_19_110, ocean_NN_22_122); det(ocean_NN_22_122, the_DT_20_113); amod(ocean_NN_22_122, open_JJ_21_117); advmod(lack_VBP_24_138, generally_RB_23_128); dobj(lack_VBP_24_138, stage_NN_27_153); advmod(lack_VBP_24_138, altogether_RB_28_159); det(stage_NN_27_153, the_DT_25_143); nn(stage_NN_27_153, polyp_NN_26_147) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0307 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6260007085325703 0.0444 295 0.8038147138964578 (you; Now 've learned about; restriction enzymes and DNA ligase)[attrib=we can see] false true Now that you 've learned about restriction enzymes and DNA ligase , we can see how genes are cloned in plasmids . advmod(learned_VBN_4_17, Now_RB_0_0); dep(learned_VBN_4_17, that_IN_1_4); nsubj(learned_VBN_4_17, you_PRP_2_9); aux(learned_VBN_4_17, 've_VBP_3_13); prep(learned_VBN_4_17, about_IN_5_25); pobj(about_IN_5_25, enzymes_NNS_7_43); nn(enzymes_NNS_7_43, restriction_NN_6_31); cc(enzymes_NNS_7_43, and_CC_8_51); conj(enzymes_NNS_7_43, ligase_NN_10_59); nn(ligase_NN_10_59, DNA_NNP_9_55); ccomp(see_VB_14_75, learned_VBN_4_17); punct(see_VB_14_75, ,_,_11_66); nsubj(see_VB_14_75, we_PRP_12_68); aux(see_VB_14_75, can_MD_13_71); ccomp(see_VB_14_75, cloned_VBN_18_93); punct(see_VB_14_75, ._._21_112); advmod(cloned_VBN_18_93, how_WRB_15_79); nsubjpass(cloned_VBN_18_93, genes_NNS_16_83); auxpass(cloned_VBN_18_93, are_VBP_17_89); prep(cloned_VBN_18_93, in_IN_19_100); pobj(in_IN_19_100, plasmids_NNS_20_103) 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0444 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6244380763448595 0.3797 296 0.8043478260869565 (Turner; also starred portraying; a young woman whose friends help her find a new girlfriend , Ely ,) false false Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6225063307930305 0.0125 297 0.8048780487804879 (The index; uses a base of 1981 as; 100) false false The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0125 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6212491480811011 0.0084 298 0.8054054054054054 (The other major communication and control system; is; the nervous system) false false The other major communication and control system is the nervous system , a network of specialized cells -- neurons -- that transmit signals along dedicated pathways . det(communication_NN_3_16, The_DT_0_0); amod(communication_NN_3_16, other_JJ_1_4); amod(communication_NN_3_16, major_JJ_2_10); cc(communication_NN_3_16, and_CC_4_30); conj(communication_NN_3_16, system_NN_6_42); nn(system_NN_6_42, control_NN_5_34); nsubj(system_NN_10_64, communication_NN_3_16); cop(system_NN_10_64, is_VBZ_7_49); det(system_NN_10_64, the_DT_8_52); amod(system_NN_10_64, nervous_JJ_9_56); punct(system_NN_10_64, ,_,_11_71); appos(system_NN_10_64, network_NN_13_75); punct(system_NN_10_64, --_:_19_115); dep(system_NN_10_64, that_IN_20_118); punct(system_NN_10_64, ._._26_165); det(network_NN_13_75, a_DT_12_73); prep(network_NN_13_75, of_IN_14_83); punct(network_NN_13_75, --_:_17_104); dep(network_NN_13_75, neurons_NNS_18_107); pobj(of_IN_14_83, cells_NNS_16_98); amod(cells_NNS_16_98, specialized_JJ_15_86); pobj(that_IN_20_118, signals_NNS_22_132); nn(signals_NNS_22_132, transmit_NN_21_123); prep(signals_NNS_22_132, along_IN_23_140); pobj(along_IN_23_140, pathways_NNS_25_156); amod(pathways_NNS_25_156, dedicated_VBN_24_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6212056639174542 0.0022 299 0.8059299191374663 (Certain species; be an especially large impact on; the structure of entire communities) false false Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . amod(species_NNS_1_8, Certain_JJ_0_0); nsubj(have_VBP_2_16, species_NNS_1_8); dobj(have_VBP_2_16, impact_NN_6_41); advcl(have_VBP_2_16, abundant_JJ_17_111); punct(have_VBP_2_16, ._._26_165); advmod(large_JJ_5_35, especially_RB_4_24); det(impact_NN_6_41, an_DT_3_21); amod(impact_NN_6_41, large_JJ_5_35); prep(impact_NN_6_41, on_IN_7_48); pobj(on_IN_7_48, structure_NN_9_55); det(structure_NN_9_55, the_DT_8_51); prep(structure_NN_9_55, of_IN_10_65); pobj(of_IN_10_65, communities_NNS_12_75); amod(communities_NNS_12_75, entire_JJ_11_68); mark(abundant_JJ_17_111, because_IN_13_87); nsubj(abundant_JJ_17_111, they_PRP_14_95); cop(abundant_JJ_17_111, are_VBP_15_100); advmod(abundant_JJ_17_111, highly_RB_16_104); cc(abundant_JJ_17_111, or_CC_18_120); conj(abundant_JJ_17_111, play_VB_19_123); dobj(play_VB_19_123, role_NN_22_138); prep(play_VB_19_123, in_IN_23_143); det(role_NN_22_138, a_DT_20_128); amod(role_NN_22_138, pivotal_JJ_21_130); pobj(in_IN_23_143, dynamics_NNS_25_156); nn(dynamics_NNS_25_156, community_NN_24_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0022 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6206275727578635 0.0132 300 0.8064516129032258 (a symbolic one lira; would be pay for; the station)[attrib=Florio Fiorini said] false true Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6198680020445336 0.7345 301 0.806970509383378 (it; added $ 121 million for; losses)[attrib=The Phoenix-based holding company said] false true The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . det(company_NN_3_26, The_DT_0_0); amod(company_NN_3_26, Phoenix-based_JJ_1_4); nn(company_NN_3_26, holding_NN_2_18); prep(company_NN_3_26, for_IN_4_34); pobj(for_IN_4_34, bank_NN_8_57); possessive(Arizona_NNP_5_38, 's_POS_6_46); poss(bank_NN_8_57, Arizona_NNP_5_38); amod(bank_NN_8_57, largest_JJS_7_49); nsubj(said_VBD_9_62, company_NN_3_26); ccomp(said_VBD_9_62, added_VBD_11_70); punct(said_VBD_9_62, ._._27_153); nsubj(added_VBD_11_70, it_PRP_10_67); dobj(added_VBD_11_70, $_$_12_76); prep(added_VBD_11_70, to_TO_15_90); prep(added_VBD_11_70, for_IN_18_107); number($_$_12_76, 121_CD_13_78); number($_$_12_76, million_CD_14_82); pobj(to_TO_15_90, allowance_NN_17_97); poss(allowance_NN_17_97, its_PRP$_16_93); pobj(for_IN_18_107, losses_NNS_19_111); prep(losses_NNS_19_111, on_IN_20_118); pobj(on_IN_20_118, loans_NNS_21_121); cc(on_IN_20_118, and_CC_22_127); conj(on_IN_20_118, for_IN_23_131); pobj(for_IN_23_131, estate_NN_25_140); amod(estate_NN_25_140, real_JJ_24_135); partmod(estate_NN_25_140, owned_VBN_26_147) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.6198680020445336 0.7345 302 0.8074866310160428 (it; added $ 121 million to; its allowance)[attrib=The Phoenix-based holding company said] false true The Phoenix-based holding company for Arizona 's largest bank said it added $ 121 million to its allowance for losses on loans and for real estate owned . det(company_NN_3_26, The_DT_0_0); amod(company_NN_3_26, Phoenix-based_JJ_1_4); nn(company_NN_3_26, holding_NN_2_18); prep(company_NN_3_26, for_IN_4_34); pobj(for_IN_4_34, bank_NN_8_57); possessive(Arizona_NNP_5_38, 's_POS_6_46); poss(bank_NN_8_57, Arizona_NNP_5_38); amod(bank_NN_8_57, largest_JJS_7_49); nsubj(said_VBD_9_62, company_NN_3_26); ccomp(said_VBD_9_62, added_VBD_11_70); punct(said_VBD_9_62, ._._27_153); nsubj(added_VBD_11_70, it_PRP_10_67); dobj(added_VBD_11_70, $_$_12_76); prep(added_VBD_11_70, to_TO_15_90); prep(added_VBD_11_70, for_IN_18_107); number($_$_12_76, 121_CD_13_78); number($_$_12_76, million_CD_14_82); pobj(to_TO_15_90, allowance_NN_17_97); poss(allowance_NN_17_97, its_PRP$_16_93); pobj(for_IN_18_107, losses_NNS_19_111); prep(losses_NNS_19_111, on_IN_20_118); pobj(on_IN_20_118, loans_NNS_21_121); cc(on_IN_20_118, and_CC_22_127); conj(on_IN_20_118, for_IN_23_131); pobj(for_IN_23_131, estate_NN_25_140); amod(estate_NN_25_140, real_JJ_24_135); partmod(estate_NN_25_140, owned_VBN_26_147) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.6187149953668409 0.2444 302 0.8053333333333333 (the blood supply; varies as; blood) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.6174359386153582 0.1473 302 0.8031914893617021 (Scorpio sales; would take Ford to sell off; the current Scorpio inventory of about 4,600 cars) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.6174359386153582 0.1473 302 0.8010610079575596 (it; would take Ford to sell off; the current Scorpio inventory of about 4,600 cars) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6171051919707703 0.1473 303 0.8015873015873016 (we; Later this chapter will also examine; factors) false false Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . dep(Later_RB_0_0, in_IN_1_6); pobj(in_IN_1_6, chapter_NN_3_14); det(chapter_NN_3_14, this_DT_2_9); advmod(examine_VB_8_37, Later_RB_0_0); punct(examine_VB_8_37, ,_,_4_22); nsubj(examine_VB_8_37, we_PRP_5_24); aux(examine_VB_8_37, will_MD_6_27); advmod(examine_VB_8_37, also_RB_7_32); advmod(examine_VB_8_37, how_WRB_9_45); punct(examine_VB_8_37, ,_,_17_79); dobj(examine_VB_8_37, factors_NNS_18_81); punct(examine_VB_8_37, ._._42_229); dep(how_WRB_9_45, all_DT_10_49); prep(all_DT_10_49, of_IN_11_53); punct(all_DT_10_49, ,_,_14_67); cc(all_DT_10_49, or_CC_15_69); conj(all_DT_10_49, living_VBG_16_72); pobj(of_IN_11_53, biotic_JJ_13_60); det(biotic_JJ_13_60, the_DT_12_56); dep(factors_NNS_18_81, organisms_NNS_22_102); punct(organisms_NNS_22_102, --_:_19_89); det(organisms_NNS_22_102, the_DT_20_92); amod(organisms_NNS_22_102, other_JJ_21_96); rcmod(organisms_NNS_22_102, part_NN_25_121); punct(organisms_NNS_22_102, --_:_31_158); dep(organisms_NNS_22_102, influence_NN_33_171); nsubj(part_NN_25_121, that_WDT_23_112); cop(part_NN_25_121, are_VBP_24_117); prep(part_NN_25_121, of_IN_26_126); pobj(of_IN_26_126, environment_NN_30_146); det(individual_NN_28_132, an_DT_27_129); possessive(individual_NN_28_132, 's_POS_29_143); poss(environment_NN_30_146, individual_NN_28_132); advmod(influence_NN_33_171, similarly_RB_32_161); dep(influence_NN_33_171, distribution_NN_35_185); det(distribution_NN_35_185, the_DT_34_181); cc(distribution_NN_35_185, and_CC_36_198); conj(distribution_NN_35_185, abundance_NN_37_202); prep(distribution_NN_35_185, on_IN_40_220); prep(abundance_NN_37_202, of_IN_38_212); pobj(of_IN_38_212, life_NN_39_215); pobj(on_IN_40_220, Earth_NNP_41_223) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6161804172013395 0.1443 304 0.8021108179419525 (He; threatens; us) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6161804172013395 0.1443 305 0.8026315789473685 (his father; However betrays; his whereabouts) false false However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.6140102483147367 0.0477 305 0.800524934383202 (pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation; be hybrid sterility between; two subspecies of the fruit fly Drosophila) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6138541947112091 0.4031 306 0.8010471204188482 (the nervous system; be a network of; specialized cells) false false The other major communication and control system is the nervous system , a network of specialized cells -- neurons -- that transmit signals along dedicated pathways . det(communication_NN_3_16, The_DT_0_0); amod(communication_NN_3_16, other_JJ_1_4); amod(communication_NN_3_16, major_JJ_2_10); cc(communication_NN_3_16, and_CC_4_30); conj(communication_NN_3_16, system_NN_6_42); nn(system_NN_6_42, control_NN_5_34); nsubj(system_NN_10_64, communication_NN_3_16); cop(system_NN_10_64, is_VBZ_7_49); det(system_NN_10_64, the_DT_8_52); amod(system_NN_10_64, nervous_JJ_9_56); punct(system_NN_10_64, ,_,_11_71); appos(system_NN_10_64, network_NN_13_75); punct(system_NN_10_64, --_:_19_115); dep(system_NN_10_64, that_IN_20_118); punct(system_NN_10_64, ._._26_165); det(network_NN_13_75, a_DT_12_73); prep(network_NN_13_75, of_IN_14_83); punct(network_NN_13_75, --_:_17_104); dep(network_NN_13_75, neurons_NNS_18_107); pobj(of_IN_14_83, cells_NNS_16_98); amod(cells_NNS_16_98, specialized_JJ_15_86); pobj(that_IN_20_118, signals_NNS_22_132); nn(signals_NNS_22_132, transmit_NN_21_123); prep(signals_NNS_22_132, along_IN_23_140); pobj(along_IN_23_140, pathways_NNS_25_156); amod(pathways_NNS_25_156, dedicated_VBN_24_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6136573404015875 0.0155 307 0.8015665796344648 (Antiochus III; be asked for; help) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.6132773710699799 0.1349 308 0.8020833333333334 (Action potentials; can therefore spread along; axons) false false Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . nn(potentials_NNS_1_7, Action_NNP_0_0); nsubj(spread_VB_4_32, potentials_NNS_1_7); aux(spread_VB_4_32, can_MD_2_18); advmod(spread_VB_4_32, therefore_RB_3_22); prep(spread_VB_4_32, along_IN_5_39); punct(spread_VB_4_32, ,_,_7_51); xcomp(spread_VB_4_32, making_VBG_8_53); punct(spread_VB_4_32, ._._19_123); pobj(along_IN_5_39, axons_NNS_6_45); xcomp(making_VBG_8_53, suited_VBN_11_70); nsubj(suited_VBN_11_70, them_PRP_9_60); advmod(suited_VBN_11_70, well_RB_10_65); prep(suited_VBN_11_70, for_IN_12_77); pcomp(for_IN_12_77, transmitting_VBG_13_81); dobj(transmitting_VBG_13_81, signal_NN_15_96); prep(transmitting_VBG_13_81, over_IN_16_103); det(signal_NN_15_96, a_DT_14_94); pobj(over_IN_16_103, distances_NNS_18_113); amod(distances_NNS_18_113, long_JJ_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6132773710699799 0.1349 309 0.8025974025974026 (He; will succeed Arthur E. Himebaugh as; general manager) false false He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . nsubj(succeed_VB_2_8, He_PRP_0_0); aux(succeed_VB_2_8, will_MD_1_3); dobj(succeed_VB_2_8, Himebaugh_NNP_5_26); prep(succeed_VB_2_8, as_IN_6_36); punct(succeed_VB_2_8, ._._16_91); nn(Himebaugh_NNP_5_26, Arthur_NNP_3_16); nn(Himebaugh_NNP_5_26, E._NNP_4_23); pobj(as_IN_6_36, manager_NN_8_47); amod(manager_NN_8_47, general_JJ_7_39); dep(manager_NN_8_47, Feb._NNP_9_55); num(Feb._NNP_9_55, 1_CD_10_60); punct(Feb._NNP_9_55, ,_,_11_62); dep(Feb._NNP_9_55, retires_VBZ_15_83); nn(Himebaugh_NNP_14_73, Mr._NNP_13_69); advmod(retires_VBZ_15_83, when_WRB_12_64); nsubj(retires_VBZ_15_83, Himebaugh_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6128955555409064 1.0 310 0.8031088082901554 (his birth; is commemorated by; a plaque) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6113307943068114 0.1349 311 0.8036175710594315 (a freely mating population; will give rise to; a uniform population of individuals) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.6111644575327525 0.1349 312 0.8041237113402062 (management; would recommend to; its board)[attrib=CMS ENERGY Corp. said] false true CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a " modest level " later this year . nn(Corp._NNP_2_11, CMS_NNP_0_0); nn(Corp._NNP_2_11, ENERGY_NNP_1_4); nsubj(said_VBD_3_17, Corp._NNP_2_11); ccomp(said_VBD_3_17, recommend_VB_6_39); punct(said_VBD_3_17, ._._27_151); nsubj(recommend_VB_6_39, management_NN_4_22); aux(recommend_VB_6_39, would_MD_5_33); prep(recommend_VB_6_39, to_TO_7_49); tmod(recommend_VB_6_39, today_NN_10_62); ccomp(recommend_VB_6_39, reinstated_VBN_17_102); pobj(to_TO_7_49, board_NN_9_56); poss(board_NN_9_56, its_PRP$_8_52); poss(dividend_NN_15_90, its_PRP$_12_73); amod(dividend_NN_15_90, common_JJ_13_77); nn(dividend_NN_15_90, stock_NN_14_84); complm(reinstated_VBN_17_102, that_IN_11_68); nsubjpass(reinstated_VBN_17_102, dividend_NN_15_90); auxpass(reinstated_VBN_17_102, be_VB_16_99); prep(reinstated_VBN_17_102, at_IN_18_113); tmod(reinstated_VBN_17_102, year_NN_26_146); pobj(at_IN_18_113, level_NN_22_127); det(level_NN_22_127, a_DT_19_116); punct(level_NN_22_127, "_``_20_118); amod(level_NN_22_127, modest_JJ_21_120); punct(level_NN_22_127, "_''_23_133); advmod(year_NN_26_146, later_RB_24_135); det(year_NN_26_146, this_DT_25_141) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6087751192587815 0.0216 313 0.8046272493573264 (Carroll; became; an international cause clbre) false false Carroll became an international cause clbre when she was kidnapped in Baghdad on January 7 , 2006 . nsubj(clbre_NN_5_38, Carroll_NNP_0_0); cop(clbre_NN_5_38, became_VBD_1_8); det(clbre_NN_5_38, an_DT_2_15); amod(clbre_NN_5_38, international_JJ_3_18); nn(clbre_NN_5_38, cause_NN_4_32); advcl(clbre_NN_5_38, kidnapped_VBN_9_57); punct(clbre_NN_5_38, ._._17_98); advmod(kidnapped_VBN_9_57, when_WRB_6_44); nsubjpass(kidnapped_VBN_9_57, she_PRP_7_49); auxpass(kidnapped_VBN_9_57, was_VBD_8_53); prep(kidnapped_VBN_9_57, in_IN_10_67); prep(kidnapped_VBN_9_57, on_IN_12_78); pobj(in_IN_10_67, Baghdad_NNP_11_70); pobj(on_IN_12_78, January_NNP_13_81); num(January_NNP_13_81, 7_CD_14_89); punct(January_NNP_13_81, ,_,_15_91); num(January_NNP_13_81, 2006_CD_16_93) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 1 0.6078845816228985 0.3797 314 0.8051282051282052 (the band; reached; a wider audience supporting U.S. goth-metal act Type O Negative) false false In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . pobj(In_IN_0_0, 1997_CD_1_3); det(band_NN_3_12, the_DT_2_8); prep(reached_VBD_4_17, In_IN_0_0); nsubj(reached_VBD_4_17, band_NN_3_12); dobj(reached_VBD_4_17, audience_NN_7_33); punct(reached_VBD_4_17, ._._15_89); det(audience_NN_7_33, a_DT_5_25); amod(audience_NN_7_33, wider_JJR_6_27); partmod(audience_NN_7_33, supporting_VBG_8_42); dobj(supporting_VBG_8_42, Negative_NNP_14_80); nn(Negative_NNP_14_80, U.S._NNP_9_53); nn(Negative_NNP_14_80, goth-metal_NN_10_58); nn(Negative_NNP_14_80, act_NN_11_69); nn(Negative_NNP_14_80, Type_NNP_12_73); nn(Negative_NNP_14_80, O_NNP_13_78) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6078845816228985 0.3797 315 0.8056265984654731 (he and his students; spent; several decades observing these bees) false false Using glass-walled observation hives , he and his students spent several decades observing these bees . dobj(Using_VBG_0_0, hives_NNS_3_31); amod(hives_NNS_3_31, glass-walled_JJ_1_6); nn(hives_NNS_3_31, observation_NN_2_19); cc(he_PRP_5_39, and_CC_6_42); conj(he_PRP_5_39, students_NNS_8_50); poss(students_NNS_8_50, his_PRP$_7_46); dep(spent_VBD_9_59, Using_VBG_0_0); punct(spent_VBD_9_59, ,_,_4_37); nsubj(spent_VBD_9_59, he_PRP_5_39); dobj(spent_VBD_9_59, decades_NNS_11_73); punct(spent_VBD_9_59, ._._15_102); amod(decades_NNS_11_73, several_JJ_10_65); partmod(decades_NNS_11_73, observing_VBG_12_81); dobj(observing_VBG_12_81, bees_NNS_14_97); det(bees_NNS_14_97, these_DT_13_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6072736370517114 0.0216 316 0.8061224489795918 (He; was; a producer) false false He was a producer on several Australian television series for Crawford Productions including soap opera The Box in 1976-77 , and police procedural drama series Bluey and Homicide . nsubj(producer_NN_3_9, He_PRP_0_0); cop(producer_NN_3_9, was_VBD_1_3); det(producer_NN_3_9, a_DT_2_7); prep(producer_NN_3_9, on_IN_4_18); punct(producer_NN_3_9, ._._28_179); pobj(on_IN_4_18, series_NN_8_51); amod(series_NN_8_51, several_JJ_5_21); amod(series_NN_8_51, Australian_JJ_6_29); nn(series_NN_8_51, television_NN_7_40); prep(series_NN_8_51, for_IN_9_58); pobj(for_IN_9_58, Productions_NNPS_11_71); nn(Productions_NNPS_11_71, Crawford_NNP_10_62); prep(Productions_NNPS_11_71, including_VBG_12_83); punct(Productions_NNPS_11_71, ,_,_19_123); cc(Productions_NNPS_11_71, and_CC_20_125); conj(Productions_NNPS_11_71, Bluey_NNP_25_160); cc(Productions_NNPS_11_71, and_CC_26_166); conj(Productions_NNPS_11_71, Homicide_NNP_27_170); pobj(including_VBG_12_83, opera_NN_14_98); nn(opera_NN_14_98, soap_NN_13_93); dep(opera_NN_14_98, Box_NNP_16_108); prep(opera_NN_14_98, in_IN_17_112); det(Box_NNP_16_108, The_DT_15_104); pobj(in_IN_17_112, 1976-77_CD_18_115); nn(Bluey_NNP_25_160, police_NN_21_129); amod(Bluey_NNP_25_160, procedural_JJ_22_136); nn(Bluey_NNP_25_160, drama_NN_23_147); nn(Bluey_NNP_25_160, series_NN_24_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6072072387942423 0.7345 317 0.806615776081425 (Riley; re-emerged after; a hiatus) false false After a hiatus from the entertainment industry , Riley re-emerged in the early 2000s as a star in a number of gospel plays for best-selling playwright Tyler Perry , including Madea 's Class Reunion , Madea Goes to Jail , Why Did I Get Married ? pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6072072387942423 0.7345 318 0.8071065989847716 (the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad; were amongst; his victims) false false Amongst his victims in first-class cricket were the Pakistani pair of Zaheer Abbas and Mushtaq Mohammad , whom he dismissed in a tour match for Western Australia against the touring nation . pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.6072072387942423 0.7345 318 0.8050632911392405 (he; had during; his freshman year) false false During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6072072387942423 0.7345 319 0.8055555555555556 (Hatch; worked for; fourteen years) false false For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6064958806339743 0.0191 320 0.8060453400503779 (Cordero; was born; Federico Arturo Cordero Salguero) false false Cordero was born Federico Arturo Cordero Salguero in Rio Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.6064958806339743 0.0191 321 0.8065326633165829 (Nero; was born; Francesco Sparanero) false false Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.6062667449433333 0.0416 321 0.8045112781954887 (a large amount of an oxygen-storing protein; have; many mitochondria) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.6061945575127506 0.111 322 0.805 (an indoor arena; be located at; the corner of Mount Royal and St . Urbain Street) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6060486407224099 0.0057 323 0.8054862842892768 (he; was involved of; the 145 m long) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0057 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6059686076427026 0.2444 324 0.8059701492537313 (Lenneth; tells him to forget about; her and kisses)[enabler=before he departs but Lucian continues to brood upon Lenneth and Platina] true false Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 1 0.6040734781624321 0.1443 325 0.8064516129032258 (A myelinated axon; has; a conduction speed) false false A myelinated axon 20 m in diameter has a conduction speed faster than that of a squid giant axon with a diameter 40 times greater . det(axon_NN_2_13, A_DT_0_0); amod(axon_NN_2_13, myelinated_JJ_1_2); dep(axon_NN_2_13, m_NN_4_21); num(m_NN_4_21, 20_CD_3_18); prep(m_NN_4_21, in_IN_5_23); pobj(in_IN_5_23, diameter_NN_6_26); nsubj(has_VBZ_7_35, axon_NN_2_13); dobj(has_VBZ_7_35, speed_NN_10_52); advmod(has_VBZ_7_35, faster_RBR_11_58); punct(has_VBZ_7_35, ._._25_130); det(speed_NN_10_52, a_DT_8_39); nn(speed_NN_10_52, conduction_NN_9_41); dep(faster_RBR_11_58, than_IN_12_65); pobj(than_IN_12_65, that_DT_13_70); prep(that_DT_13_70, of_IN_14_75); pobj(of_IN_14_75, axon_NN_18_92); det(axon_NN_18_92, a_DT_15_78); amod(axon_NN_18_92, squid_JJ_16_80); amod(axon_NN_18_92, giant_JJ_17_86); prep(axon_NN_18_92, with_IN_19_97); pobj(with_IN_19_97, diameter_NN_21_104); det(diameter_NN_21_104, a_DT_20_102); dep(diameter_NN_21_104, greater_JJR_24_122); number(times_NNS_23_116, 40_CD_22_113); num(greater_JJR_24_122, times_NNS_23_116) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6040734781624321 0.1443 326 0.806930693069307 (Animal reproduction; however takes; many forms) false false Animal reproduction , however , takes many forms . amod(reproduction_NN_1_7, Animal_JJ_0_0); nsubj(takes_VBZ_5_32, reproduction_NN_1_7); punct(takes_VBZ_5_32, ,_,_2_20); advmod(takes_VBZ_5_32, however_RB_3_22); punct(takes_VBZ_5_32, ,_,_4_30); dobj(takes_VBZ_5_32, forms_NNS_7_43); punct(takes_VBZ_5_32, ._._8_49); amod(forms_NNS_7_43, many_JJ_6_38) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.6040734781624321 0.1443 327 0.8074074074074075 (The metal products concern; currently has; 7.2 million common shares outstanding) false false The metal products concern currently has 7.2 million common shares outstanding . det(concern_NN_3_19, The_DT_0_0); nn(concern_NN_3_19, metal_NN_1_4); nn(concern_NN_3_19, products_NNS_2_10); nsubj(has_VBZ_5_37, concern_NN_3_19); advmod(has_VBZ_5_37, currently_RB_4_27); dobj(has_VBZ_5_37, shares_NNS_9_60); punct(has_VBZ_5_37, ._._11_79); number(million_CD_7_45, 7.2_CD_6_41); num(shares_NNS_9_60, million_CD_7_45); amod(shares_NNS_9_60, common_JJ_8_53); amod(shares_NNS_9_60, outstanding_JJ_10_67) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.6038210796438683 0.0155 327 0.8054187192118226 (miniseries Lost; be acclaimed in; Austen) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6038210796438683 0.0155 328 0.8058968058968059 (his move; be completed for; an undisclosed fee) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6038210796438683 0.0155 329 0.8063725490196079 (his move; be completed on; a two-year deal) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6038210796438683 0.0155 330 0.8068459657701712 (codeshare flights; be launched from; Shanghai) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6038210796438683 0.0155 331 0.8073170731707318 (natural resources attorney Susan Daggett; be married in; Marianna) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6029785225890165 0.0128 332 0.8077858880778589 (prices; were broadly lower in; Milan , Paris and Brussels) false false Elsewhere , prices surged for a second day in Frankfurt , closed higher in Zurich , Stockholm and Amsterdam and were broadly lower in Milan , Paris and Brussels . advmod(surged_VBD_3_19, Elsewhere_RB_0_0); punct(surged_VBD_3_19, ,_,_1_10); nsubj(surged_VBD_3_19, prices_NNS_2_12); prep(surged_VBD_3_19, for_IN_4_26); punct(surged_VBD_3_19, ,_,_10_56); conj(surged_VBD_3_19, closed_VBD_11_58); cc(surged_VBD_3_19, and_CC_19_108); conj(surged_VBD_3_19, lower_JJR_22_125); punct(surged_VBD_3_19, ._._29_161); pobj(for_IN_4_26, day_NN_7_39); det(day_NN_7_39, a_DT_5_30); amod(day_NN_7_39, second_JJ_6_32); prep(day_NN_7_39, in_IN_8_43); pobj(in_IN_8_43, Frankfurt_NNP_9_46); dep(closed_VBD_11_58, higher_JJR_12_65); prep(closed_VBD_11_58, in_IN_13_72); pobj(in_IN_13_72, Zurich_NNP_14_75); punct(Zurich_NNP_14_75, ,_,_15_82); conj(Zurich_NNP_14_75, Stockholm_NNP_16_84); cc(Zurich_NNP_14_75, and_CC_17_94); conj(Zurich_NNP_14_75, Amsterdam_NNP_18_98); cop(lower_JJR_22_125, were_VBD_20_112); advmod(lower_JJR_22_125, broadly_RB_21_117); prep(lower_JJR_22_125, in_IN_23_131); pobj(in_IN_23_131, Milan_NNP_24_134); punct(Milan_NNP_24_134, ,_,_25_140); conj(Milan_NNP_24_134, Paris_NNP_26_142); cc(Milan_NNP_24_134, and_CC_27_148); conj(Milan_NNP_24_134, Brussels_NNP_28_152) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0128 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6017224575651481 0.0393 333 0.808252427184466 (the Reds; trailing 13-0 in; the ninth inning)[enabler=when Manager Bill McKechnie called on Nuxhall to enter the game] true false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.6014478796460334 0.0079 334 0.8087167070217918 (he; married natural resources attorney Susan Daggett; Marianna) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.6007912803652483 0.0058 335 0.8091787439613527 (a Best of compilation album; be released in; Columbia Records) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0058 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5980787835722664 0.0216 336 0.8096385542168675 (most of the people; were; young men) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5976379426356158 0.0307 337 0.8100961538461539 (I; read a sign in; the usual pronunciation of the name)[enabler=as we whoosh through] true false " Tivoli Motel , " I read a sign in the usual pronunciation of the name as we whoosh through . nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0307 1.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.5976379426356158 0.0307 337 0.8081534772182254 (Tivoli Motel; read a sign in; the usual pronunciation of the name)[enabler=as we whoosh through] true false " Tivoli Motel , " I read a sign in the usual pronunciation of the name as we whoosh through . nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0307 1.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.5951137499313156 0.0416 338 0.8086124401913876 (the hydrogen bonds; Collectively hold the substance together; a phenomenon called cohesion) false false Collectively , the hydrogen bonds hold the substance together , a phenomenon called cohesion . det(bonds_NNS_4_28, the_DT_2_15); nn(bonds_NNS_4_28, hydrogen_NN_3_19); advmod(hold_VBP_5_34, Collectively_RB_0_0); punct(hold_VBP_5_34, ,_,_1_13); nsubj(hold_VBP_5_34, bonds_NNS_4_28); dobj(hold_VBP_5_34, substance_NN_7_43); advmod(hold_VBP_5_34, together_RB_8_53); punct(hold_VBP_5_34, ,_,_9_62); dobj(hold_VBP_5_34, phenomenon_NN_11_66); punct(hold_VBP_5_34, ._._14_93); det(substance_NN_7_43, the_DT_6_39); det(phenomenon_NN_11_66, a_DT_10_64); partmod(phenomenon_NN_11_66, called_VBN_12_77); dep(called_VBN_12_77, cohesion_NN_13_84) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5937789397514918 0.0724 339 0.8090692124105012 (Greatest Hits; is a Best of compilation album by; Will Smith) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5918700809054647 0.0079 340 0.8095238095238095 (fossils; be collecting from; local sandstones and shales)[enabler=when his family moved to northwestern Pennsylvania] true false Beecher began collecting fossils from local sandstones and shales when his family moved to northwestern Pennsylvania , resulting in a collection of fossil phyllocarids and freshwater unionids prior to his studying for an undergraduate degree from University of Michigan . nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5918436056751626 0.0105 340 0.8076009501187649 (borrowed spare grilles; left around; The car) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0105 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.5916538187221042 0.0191 340 0.8056872037914692 (The body of an arthropod; is completely covered; an exoskeleton constructed from layers of protein and the polysaccharide chitin) false false The body of an arthropod is completely covered by the cuticle , an exoskeleton constructed from layers of protein and the polysaccharide chitin . det(body_NN_1_4, The_DT_0_0); prep(body_NN_1_4, of_IN_2_9); pobj(of_IN_2_9, arthropod_NN_4_15); det(arthropod_NN_4_15, an_DT_3_12); nsubjpass(covered_VBN_7_39, body_NN_1_4); auxpass(covered_VBN_7_39, is_VBZ_5_25); advmod(covered_VBN_7_39, completely_RB_6_28); prep(covered_VBN_7_39, by_IN_8_47); punct(covered_VBN_7_39, ,_,_11_62); dobj(covered_VBN_7_39, exoskeleton_NN_13_67); punct(covered_VBN_7_39, ._._23_144); pobj(by_IN_8_47, cuticle_NN_10_54); det(cuticle_NN_10_54, the_DT_9_50); det(exoskeleton_NN_13_67, an_DT_12_64); partmod(exoskeleton_NN_13_67, constructed_VBN_14_79); cc(exoskeleton_NN_13_67, and_CC_19_114); conj(exoskeleton_NN_13_67, chitin_NN_22_137); prep(constructed_VBN_14_79, from_IN_15_91); pobj(from_IN_15_91, layers_NNS_16_96); prep(layers_NNS_16_96, of_IN_17_103); pobj(of_IN_17_103, protein_NN_18_106); det(chitin_NN_22_137, the_DT_20_118); nn(chitin_NN_22_137, polysaccharide_NN_21_122) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0191 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5916538187221042 0.0191 340 0.8037825059101655 (The term sensory receptor; is used; the subcellular structure that interacts directly with stimuli) false false The term sensory receptor is used to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli . det(receptor_NN_3_17, The_DT_0_0); nn(receptor_NN_3_17, term_NN_1_4); amod(receptor_NN_3_17, sensory_JJ_2_9); nsubjpass(used_VBN_5_29, receptor_NN_3_17); auxpass(used_VBN_5_29, is_VBZ_4_26); purpcl(used_VBN_5_29, describe_VB_7_37); punct(used_VBN_5_29, ,_,_13_70); cc(used_VBN_5_29, well_RB_15_75); dobj(used_VBN_5_29, structure_NN_19_99); punct(used_VBN_5_29, ._._25_146); aux(describe_VB_7_37, to_TO_6_34); dobj(describe_VB_7_37, cell_NN_10_56); det(cell_NN_10_56, a_DT_8_46); amod(cell_NN_10_56, sensory_JJ_9_48); cc(cell_NN_10_56, or_CC_11_61); conj(cell_NN_10_56, organ_NN_12_64); dep(well_RB_15_75, as_RB_14_72); dep(well_RB_15_75, as_IN_16_80); det(structure_NN_19_99, the_DT_17_83); amod(structure_NN_19_99, subcellular_JJ_18_87); rcmod(structure_NN_19_99, interacts_VBZ_21_114); nsubj(interacts_VBZ_21_114, that_WDT_20_109); advmod(interacts_VBZ_21_114, directly_RB_22_124); prep(interacts_VBZ_21_114, with_IN_23_133); pobj(with_IN_23_133, stimuli_NNS_24_138) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0191 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5907692685308328 0.0416 341 0.8042452830188679 (They; have; many mitochondria) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.5907127919780193 0.0132 342 0.8047058823529412 (a song; Also to be record in; 2003) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5907127919780193 0.0132 343 0.8051643192488263 (the possible benefits of transgenic products; Therefore must be assess on; a case-by-case basis) false false Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5897937457611827 0.0132 344 0.8056206088992974 (a song; Also to be record for; an upcoming compilation CD to be released by the studio) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0132 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5886303995215769 0.0066 344 0.8037383177570093 (heart; be Capillaries in; the brain) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.5886303995215769 0.0066 344 0.8018648018648019 (kidneys; be Capillaries in; the brain) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5882785665298204 0.0084 345 0.8023255813953488 (A seed; is; an embryo packaged with a supply of nutrients inside a protective coat) false false A seed is an embryo packaged with a supply of nutrients inside a protective coat . det(seed_NN_1_2, A_DT_0_0); nsubj(embryo_NN_4_13, seed_NN_1_2); cop(embryo_NN_4_13, is_VBZ_2_7); det(embryo_NN_4_13, an_DT_3_10); partmod(embryo_NN_4_13, packaged_VBN_5_20); punct(embryo_NN_4_13, ._._15_81); prep(packaged_VBN_5_20, with_IN_6_29); pobj(with_IN_6_29, supply_NN_8_36); det(supply_NN_8_36, a_DT_7_34); prep(supply_NN_8_36, of_IN_9_43); pobj(of_IN_9_43, nutrients_NNS_10_46); prep(nutrients_NNS_10_46, inside_IN_11_56); pobj(inside_IN_11_56, coat_NN_14_76); det(coat_NN_14_76, a_DT_12_63); amod(coat_NN_14_76, protective_JJ_13_65) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5880793611284831 0.0478 346 0.802784222737819 (we; are afraid of; him) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5878607445626668 0.3797 347 0.8032407407407407 (Chesler; taught; one of the first Women 's Studies classes) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1 0.5876593463232525 0.2444 348 0.8036951501154734 (G. Vogel and C. Holden; leaps forward with; new stem cell advances) false false G. Vogel and C. Holden , Field leaps forward with new stem cell advances , Science 318:1224-1225 . nn(Vogel_NNP_1_3, G._NNP_0_0); cc(Vogel_NNP_1_3, and_CC_2_9); conj(Vogel_NNP_1_3, Holden_NNP_4_16); punct(Vogel_NNP_1_3, ,_,_5_23); appos(Vogel_NNP_1_3, Field_NNP_6_25); nn(Holden_NNP_4_16, C._NNP_3_13); nsubj(leaps_VBZ_7_31, Vogel_NNP_1_3); advmod(leaps_VBZ_7_31, forward_RB_8_37); prep(leaps_VBZ_7_31, with_IN_9_45); punct(leaps_VBZ_7_31, ._._17_97); pobj(with_IN_9_45, advances_NNS_13_64); amod(advances_NNS_13_64, new_JJ_10_50); nn(advances_NNS_13_64, stem_NN_11_54); nn(advances_NNS_13_64, cell_NN_12_59); punct(advances_NNS_13_64, ,_,_14_73); appos(advances_NNS_13_64, Science_NNP_15_75); num(Science_NNP_15_75, 318:1224-1225_CD_16_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5876593463232525 0.2444 349 0.804147465437788 (He; increases the board to; seven) false false He increases the board to seven . nsubj(increases_VBZ_1_3, He_PRP_0_0); dobj(increases_VBZ_1_3, board_NN_3_17); prep(increases_VBZ_1_3, to_TO_4_23); punct(increases_VBZ_1_3, ._._6_32); det(board_NN_3_17, the_DT_2_13); pobj(to_TO_4_23, seven_CD_5_26) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5876593463232525 0.2444 349 0.8022988505747126 (The first step; is from; the species being studied) false false The first step after sequencing the molecules is to align comparable sequences from the species being studied . det(step_NN_2_10, The_DT_0_0); amod(step_NN_2_10, first_JJ_1_4); prep(step_NN_2_10, after_IN_3_15); pcomp(after_IN_3_15, sequencing_VBG_4_21); dobj(sequencing_VBG_4_21, molecules_NNS_6_36); det(molecules_NNS_6_36, the_DT_5_32); nsubj(is_VBZ_7_46, step_NN_2_10); prep(is_VBZ_7_46, to_TO_8_49); prep(is_VBZ_7_46, from_IN_12_79); punct(is_VBZ_7_46, ._._17_110); pobj(to_TO_8_49, sequences_NNS_11_69); amod(sequences_NNS_11_69, align_JJ_9_52); amod(sequences_NNS_11_69, comparable_JJ_10_58); pobj(from_IN_12_79, species_NNS_14_88); det(species_NNS_14_88, the_DT_13_84); partmod(species_NNS_14_88, studied_VBN_16_102); auxpass(studied_VBN_16_102, being_VBG_15_96) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5860187736032265 0.0478 350 0.8027522935779816 (Battaramulla; has always been an adjunct to; Kotte) false false Battaramulla has always been an adjunct to Kotte , which lay on the opposite side of the Diyawanna Oya . nsubj(adjunct_JJ_5_32, Battaramulla_NNP_0_0); aux(adjunct_JJ_5_32, has_VBZ_1_13); advmod(adjunct_JJ_5_32, always_RB_2_17); cop(adjunct_JJ_5_32, been_VBN_3_24); det(adjunct_JJ_5_32, an_DT_4_29); prep(adjunct_JJ_5_32, to_TO_6_40); punct(adjunct_JJ_5_32, ._._19_103); pobj(to_TO_6_40, Kotte_NNP_7_43); punct(Kotte_NNP_7_43, ,_,_8_49); rcmod(Kotte_NNP_7_43, lay_VBD_10_57); nsubj(lay_VBD_10_57, which_WDT_9_51); prep(lay_VBD_10_57, on_IN_11_61); pobj(on_IN_11_61, side_NN_14_77); det(side_NN_14_77, the_DT_12_64); amod(side_NN_14_77, opposite_JJ_13_68); prep(side_NN_14_77, of_IN_15_82); pobj(of_IN_15_82, Oya_NNP_18_99); det(Oya_NNP_18_99, the_DT_16_85); nn(Oya_NNP_18_99, Diyawanna_NNP_17_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5860181913612569 0.3797 351 0.8032036613272311 (He; began to practice; law) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 1 0.5849427702308576 0.0444 352 0.8036529680365296 (She; has practiced law with; Berry) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5849427702308576 0.0444 353 0.8041002277904328 (She; has practiced law with; Conners) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5849427702308576 0.0444 354 0.8045454545454546 (She; has practiced law with; Cummings) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5849427702308576 0.0444 355 0.8049886621315193 (She; has practiced law with; Berry) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5849427702308576 0.0444 356 0.8054298642533937 (She; has practiced law with; Conners) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5849427702308576 0.0444 357 0.8058690744920993 (She; has practiced law with; Cummings) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5829095199098192 0.3797 358 0.8063063063063063 (he; helped to lead; the Buckeyes) false false During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5829095199098192 0.3797 359 0.8067415730337079 (Lenin; dispatched; Stalin) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5829095199098192 0.3797 360 0.8071748878923767 (he; married; natural resources attorney Susan Daggett) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5829095199098192 0.3797 361 0.8076062639821029 (Strachan; entered; the World Gurning competition) false false While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5827155897889873 0.0478 362 0.8080357142857143 (populations; are now common on; larger coastal or inland lakes) false false In 1864 , the Australian Black Swan was introduced to New Zealand as an ornamental waterfowl , and populations are now common on larger coastal or inland lakes , especially Rotorua Lakes , Lake Wairarapa and Lake Ellesmere , and the Chatham Islands . pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5823301823411546 0.0416 363 0.8084632516703786 (They; merely collect; campaign contributions) false false They merely collect campaign contributions from developers that help keep them in office . nsubj(collect_VBP_2_12, They_PRP_0_0); advmod(collect_VBP_2_12, merely_RB_1_5); dobj(collect_VBP_2_12, contributions_NNS_4_29); prep(collect_VBP_2_12, from_IN_5_43); punct(collect_VBP_2_12, ._._13_89); nn(contributions_NNS_4_29, campaign_NN_3_20); pobj(from_IN_5_43, developers_NNS_6_48); rcmod(developers_NNS_6_48, help_VBP_8_64); nsubj(help_VBP_8_64, that_WDT_7_59); ccomp(help_VBP_8_64, keep_VB_9_69); dobj(keep_VB_9_69, them_PRP_10_74); prep(keep_VB_9_69, in_IN_11_79); pobj(in_IN_11_79, office_NN_12_82) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.5807484001086229 0.0416 363 0.8066666666666666 (their kidneys; have; small glomeruli or lack glomeruli) false false In addition , their kidneys have small glomeruli or lack glomeruli entirely . pobj(In_IN_0_0, addition_NN_1_3); poss(kidneys_NNS_4_20, their_PRP$_3_14); prep(have_VBP_5_28, In_IN_0_0); punct(have_VBP_5_28, ,_,_2_12); nsubj(have_VBP_5_28, kidneys_NNS_4_20); dobj(have_VBP_5_28, glomeruli_NNS_7_39); punct(have_VBP_5_28, ._._12_76); amod(glomeruli_NNS_7_39, small_JJ_6_33); cc(glomeruli_NNS_7_39, or_CC_8_49); conj(glomeruli_NNS_7_39, lack_NN_9_52); amod(lack_NN_9_52, glomeruli_JJ_10_57); advmod(glomeruli_JJ_10_57, entirely_RB_11_67) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5788234976971409 0.0314 364 0.8070953436807096 (organisms; be interact with; each other and with the physical environment) false false The upper layers of the soil , from which plants absorb nearly all of the water and minerals they require , contain a wide range of living organisms that interact with each other and with the physical environment . det(layers_NNS_2_10, The_DT_0_0); amod(layers_NNS_2_10, upper_JJ_1_4); prep(layers_NNS_2_10, of_IN_3_17); punct(layers_NNS_2_10, ._._38_213); pobj(of_IN_3_17, soil_NN_5_24); det(soil_NN_5_24, the_DT_4_20); punct(soil_NN_5_24, ,_,_6_29); prep(soil_NN_5_24, from_IN_7_31); pobj(from_IN_7_31, which_WDT_8_36); dep(from_IN_7_31, plants_NNS_9_42); dep(plants_NNS_9_42, all_DT_12_63); punct(plants_NNS_9_42, ,_,_20_106); conj(plants_NNS_9_42, contain_VBP_21_108); cop(all_DT_12_63, absorb_VBP_10_49); advmod(all_DT_12_63, nearly_RB_11_56); prep(all_DT_12_63, of_IN_13_67); pobj(of_IN_13_67, water_NN_15_74); det(water_NN_15_74, the_DT_14_70); cc(water_NN_15_74, and_CC_16_80); conj(water_NN_15_74, minerals_NNS_17_84); rcmod(minerals_NNS_17_84, require_VBP_19_98); nsubj(require_VBP_19_98, they_PRP_18_93); dobj(contain_VBP_21_108, range_NN_24_123); det(range_NN_24_123, a_DT_22_116); amod(range_NN_24_123, wide_JJ_23_118); prep(range_NN_24_123, of_IN_25_129); pcomp(of_IN_25_129, living_VBG_26_132); dobj(living_VBG_26_132, organisms_NNS_27_139); rcmod(organisms_NNS_27_139, interact_NN_29_154); nsubj(interact_NN_29_154, that_WDT_28_149); prep(interact_NN_29_154, with_IN_30_163); pobj(with_IN_30_163, other_JJ_32_173); cc(with_IN_30_163, and_CC_33_179); conj(with_IN_30_163, with_IN_34_183); det(other_JJ_32_173, each_DT_31_168); pobj(with_IN_34_183, environment_NN_37_201); det(environment_NN_37_201, the_DT_35_188); amod(environment_NN_37_201, physical_JJ_36_192) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0314 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.5784091996809637 0.0416 365 0.8075221238938053 (such features; reflect; evolutionary relationships) false false It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . nsubj(important_JJ_2_6, It_PRP_0_0); cop(important_JJ_2_6, is_VBZ_1_3); xcomp(important_JJ_2_6, focus_VB_4_19); aux(focus_VB_4_19, to_TO_3_16); prep(focus_VB_4_19, on_IN_5_25); pobj(on_IN_5_25, features_NNS_6_28); dep(features_NNS_6_28, that_IN_7_37); pobj(that_IN_7_37, result_NN_8_42); punct(that_IN_7_37, ,_,_12_70); prep(result_NN_8_42, from_IN_9_49); pobj(from_IN_9_49, ancestry_NN_11_61); amod(ancestry_NN_11_61, common_JJ_10_54); advcl(,_,_12_70, reflect_VBP_17_99); punct(,_,_12_70, ._._20_134); advmod(features_NNS_16_90, only_RB_14_80); amod(features_NNS_16_90, such_JJ_15_85); mark(reflect_VBP_17_99, because_IN_13_72); nsubj(reflect_VBP_17_99, features_NNS_16_90); dobj(reflect_VBP_17_99, relationships_NNS_19_120); amod(relationships_NNS_19_120, evolutionary_JJ_18_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.5783653057020448 0.0216 366 0.8079470198675497 (the final proration factor; was; 0.628394) false false CENTRUST SAVINGS BANK -LRB- Miami -RRB- -- McCormick Capital Inc. said the final proration factor was 0.628394 on its oversubscribed , $ 3-a-share tender offer to buy back as many as 1.1 million of its common shares . nn(BANK_NNP_2_17, CENTRUST_NNP_0_0); nn(BANK_NNP_2_17, SAVINGS_NNP_1_9); nsubj(-RRB-_-RRB-_5_34, BANK_NNP_2_17); advmod(-RRB-_-RRB-_5_34, -LRB-_-LRB-_3_22); nsubj(-RRB-_-RRB-_5_34, Miami_NNP_4_28); punct(-RRB-_-RRB-_5_34, --_:_6_40); parataxis(-RRB-_-RRB-_5_34, said_VBD_10_66); punct(-RRB-_-RRB-_5_34, ._._37_216); nn(Inc._NNP_9_61, McCormick_NNP_7_43); nn(Inc._NNP_9_61, Capital_NNP_8_53); nsubj(said_VBD_10_66, Inc._NNP_9_61); ccomp(said_VBD_10_66, 0.628394_CD_16_102); det(factor_NN_14_91, the_DT_11_71); amod(factor_NN_14_91, final_JJ_12_75); nn(factor_NN_14_91, proration_NN_13_81); nsubj(0.628394_CD_16_102, factor_NN_14_91); cop(0.628394_CD_16_102, was_VBD_15_98); prep(0.628394_CD_16_102, on_IN_17_111); pobj(on_IN_17_111, offer_NN_24_154); dep($_$_21_135, 3-a-share_JJ_22_137); poss(offer_NN_24_154, its_PRP$_18_114); amod(offer_NN_24_154, oversubscribed_JJ_19_118); punct(offer_NN_24_154, ,_,_20_133); amod(offer_NN_24_154, $_$_21_135); nn(offer_NN_24_154, tender_NN_23_147); infmod(offer_NN_24_154, buy_VB_26_163); aux(buy_VB_26_163, to_TO_25_160); prt(buy_VB_26_163, back_RP_27_167); dobj(buy_VB_26_163, million_CD_32_187); quantmod(million_CD_32_187, as_RB_28_172); quantmod(million_CD_32_187, many_JJ_29_175); quantmod(million_CD_32_187, as_IN_30_180); number(million_CD_32_187, 1.1_CD_31_183); prep(million_CD_32_187, of_IN_33_195); pobj(of_IN_33_195, shares_NNS_36_209); poss(shares_NNS_36_209, its_PRP$_34_198); amod(shares_NNS_36_209, common_JJ_35_202) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0216 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5765929136731114 0.0181 367 0.8083700440528634 (He; to practice law in; Montgomery) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0181 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.5761016414779094 0.0901 367 0.8065934065934066 (Berkeley; was born in; California) false false She was born April 3 , 1951 in Berkeley , California . nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0901 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5754331527329651 0.0084 368 0.8070175438596491 (Greatest Hits; is; a Best of compilation album) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5754331527329651 0.0084 369 0.8074398249452954 (The Cancer Genome Atlas; is; another example of systems biology) false false The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.5747772927304482 0.0124 369 0.8056768558951966 (Cordero; be Federico Arturo Cordero Salguero in; Rio Piedras) false false Cordero was born Federico Arturo Cordero Salguero in Rio Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0124 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.5747772927304482 0.0124 369 0.803921568627451 (Nero; be Francesco Sparanero in; San Prospero) false false Nero was born Francesco Sparanero in San Prospero , Emilia-Romagna , and grew up in Bedonia and in Milan . nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0124 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.5746179307179987 0.0119 369 0.8021739130434783 (Singer Bette Midler; be a $ 400,000 federal court jury verdict against; Young) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5744820207995127 0.0104 370 0.8026030368763557 (he; collaborate in; the design of post-war modern Puerto Rico) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0104 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5738443653632077 0.0084 371 0.803030303030303 (the average daily rate of energy consumption; is; 2 to 4 times BMR) false false For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . pobj(For_IN_0_0, animals_NNS_3_21); amod(animals_NNS_3_21, most_JJS_1_4); amod(animals_NNS_3_21, terrestrial_JJ_2_9); det(rate_NN_8_49, the_DT_5_31); amod(rate_NN_8_49, average_JJ_6_35); amod(rate_NN_8_49, daily_JJ_7_43); prep(rate_NN_8_49, of_IN_9_54); pobj(of_IN_9_54, consumption_NN_11_64); nn(consumption_NN_11_64, energy_NN_10_57); number(times_NNS_16_86, 2_CD_13_79); dep(times_NNS_16_86, to_TO_14_81); number(times_NNS_16_86, 4_CD_15_84); prep(BMR_NNP_17_92, For_IN_0_0); punct(BMR_NNP_17_92, ,_,_4_29); nsubj(BMR_NNP_17_92, rate_NN_8_49); cop(BMR_NNP_17_92, is_VBZ_12_76); num(BMR_NNP_17_92, times_NNS_16_86); punct(BMR_NNP_17_92, ._._18_96) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5738062155902964 0.0444 372 0.8034557235421166 (Dell Curry; was chosen 7th overall in; the 2009 NBA Draft) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0444 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5730271818746745 0.0132 372 0.8017241379310345 (rise; will be give to; a uniform population of individuals) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.5716672635784339 0.0117 373 0.8021505376344086 (acquisitions; to be made during; the next 12 to 18 months) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0117 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5713514580740163 0.1443 374 0.8025751072961373 (it; extends; finger-like projections)[enabler=As the trophoblast thickens through cell division] true false As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . det(trophoblast_NN_2_7, the_DT_1_3); mark(thickens_VBZ_3_19, As_IN_0_0); nsubj(thickens_VBZ_3_19, trophoblast_NN_2_7); prep(thickens_VBZ_3_19, through_IN_4_28); pobj(through_IN_4_28, division_NN_6_41); nn(division_NN_6_41, cell_NN_5_36); advcl(extends_VBZ_9_55, thickens_VBZ_3_19); punct(extends_VBZ_9_55, ,_,_7_50); nsubj(extends_VBZ_9_55, it_PRP_8_52); dobj(extends_VBZ_9_55, projections_NNS_11_75); prep(extends_VBZ_9_55, into_IN_12_87); punct(extends_VBZ_9_55, ._._17_124); amod(projections_NNS_11_75, finger-like_JJ_10_63); pobj(into_IN_12_87, tissue_NN_16_117); det(tissue_NN_16_117, the_DT_13_92); amod(tissue_NN_16_117, surrounding_VBG_14_96); amod(tissue_NN_16_117, maternal_JJ_15_108) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5695217074364729 1.0 375 0.8029978586723768 ($ 100 million issue of collateralized mortgage obligations; is being offered in; four classes) false false $ 100 million issue of collateralized mortgage obligations is being offered in four classes by a Morgan Stanley group . number($_$_0_0, 100_CD_1_2); number($_$_0_0, million_CD_2_6); num(issue_NN_3_14, $_$_0_0); prep(issue_NN_3_14, of_IN_4_20); pobj(of_IN_4_20, obligations_NNS_7_47); amod(obligations_NNS_7_47, collateralized_JJ_5_23); nn(obligations_NNS_7_47, mortgage_NN_6_38); nsubjpass(offered_VBN_10_68, issue_NN_3_14); aux(offered_VBN_10_68, is_VBZ_8_59); auxpass(offered_VBN_10_68, being_VBG_9_62); prep(offered_VBN_10_68, in_IN_11_76); prep(offered_VBN_10_68, by_IN_14_92); punct(offered_VBN_10_68, ._._19_118); pobj(in_IN_11_76, classes_NNS_13_84); num(classes_NNS_13_84, four_CD_12_79); pobj(by_IN_14_92, group_NN_18_112); det(group_NN_18_112, a_DT_15_95); nn(group_NN_18_112, Morgan_NNP_16_97); nn(group_NN_18_112, Stanley_NNP_17_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5684589343575805 0.0216 376 0.8034188034188035 (Joseph Lombardo; was; one of numerous defendants) false false Joseph Lombardo , who the government alleged was the " captain " of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . nn(Lombardo_NNP_1_7, Joseph_NNP_0_0); punct(Lombardo_NNP_1_7, ,_,_2_16); rcmod(Lombardo_NNP_1_7, alleged_VBD_6_37); punct(Lombardo_NNP_1_7, ,_,_17_95); det(government_NN_5_26, the_DT_4_22); rel(alleged_VBD_6_37, who_WP_3_18); nsubj(alleged_VBD_6_37, government_NN_5_26); ccomp(alleged_VBD_6_37, captain_NN_10_55); cop(captain_NN_10_55, was_VBD_7_45); det(captain_NN_10_55, the_DT_8_49); punct(captain_NN_10_55, "_``_9_53); punct(captain_NN_10_55, "_''_11_63); prep(captain_NN_10_55, of_IN_12_65); pobj(of_IN_12_65, crime_NN_14_78); amod(crime_NN_14_78, organized_JJ_13_68); prep(crime_NN_14_78, in_IN_15_84); pobj(in_IN_15_84, Chicago_NNP_16_87); nsubj(one_CD_19_101, Lombardo_NNP_1_7); cop(one_CD_19_101, was_VBD_18_97); prep(one_CD_19_101, of_IN_20_105); punct(one_CD_19_101, ._._33_198); pobj(of_IN_20_105, defendants_NNS_22_117); amod(defendants_NNS_22_117, numerous_JJ_21_108); prep(defendants_NNS_22_117, in_IN_23_128); pobj(in_IN_23_128, suit_NN_29_171); det(government_NN_25_135, the_DT_24_131); possessive(government_NN_25_135, 's_POS_26_146); poss(suit_NN_29_171, government_NN_25_135); amod(suit_NN_29_171, sweeping_JJ_27_149); nn(suit_NN_29_171, racketeering_NN_28_158); prep(suit_NN_29_171, against_IN_30_176); pobj(against_IN_30_176, Teamsters_NNPS_32_188); det(Teamsters_NNPS_32_188, the_DT_31_184) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0216 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5677917544433635 0.0393 377 0.8038379530916845 (He; continued studying traditional arrangements under; Mohammad Reza Lotfi and his brother Pashang) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5676323328094277 0.2444 378 0.8042553191489362 (the trophoblast; thickens through; cell division) false false As the trophoblast thickens through cell division , it extends finger-like projections into the surrounding maternal tissue . det(trophoblast_NN_2_7, the_DT_1_3); mark(thickens_VBZ_3_19, As_IN_0_0); nsubj(thickens_VBZ_3_19, trophoblast_NN_2_7); prep(thickens_VBZ_3_19, through_IN_4_28); pobj(through_IN_4_28, division_NN_6_41); nn(division_NN_6_41, cell_NN_5_36); advcl(extends_VBZ_9_55, thickens_VBZ_3_19); punct(extends_VBZ_9_55, ,_,_7_50); nsubj(extends_VBZ_9_55, it_PRP_8_52); dobj(extends_VBZ_9_55, projections_NNS_11_75); prep(extends_VBZ_9_55, into_IN_12_87); punct(extends_VBZ_9_55, ._._17_124); amod(projections_NNS_11_75, finger-like_JJ_10_63); pobj(into_IN_12_87, tissue_NN_16_117); det(tissue_NN_16_117, the_DT_13_92); amod(tissue_NN_16_117, surrounding_VBG_14_96); amod(tissue_NN_16_117, maternal_JJ_15_108) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5658262861937702 0.4031 379 0.8046709129511678 (Cordis; be a maker of; medical devices) false false Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . advmod(year_NN_2_13, Earlier_RBR_0_0); det(year_NN_2_13, this_DT_1_8); punct(Cordis_NNP_4_20, ,_,_5_27); appos(Cordis_NNP_4_20, maker_NN_7_31); punct(Cordis_NNP_4_20, ,_,_11_56); det(maker_NN_7_31, a_DT_6_29); prep(maker_NN_7_31, of_IN_8_37); pobj(of_IN_8_37, devices_NNS_10_48); amod(devices_NNS_10_48, medical_JJ_9_40); tmod(agreed_VBD_12_58, year_NN_2_13); punct(agreed_VBD_12_58, ,_,_3_18); nsubj(agreed_VBD_12_58, Cordis_NNP_4_20); xcomp(agreed_VBD_12_58, plead_VB_14_68); punct(agreed_VBD_12_58, ._._39_212); aux(plead_VB_14_68, to_TO_13_65); acomp(plead_VB_14_68, guilty_JJ_15_74); cc(plead_VB_14_68, and_CC_25_141); conj(plead_VB_14_68, pay_VB_27_148); prep(guilty_JJ_15_74, to_TO_16_81); pobj(to_TO_16_81, charges_NNS_20_107); cc(felony_NN_17_84, and_CC_18_91); conj(felony_NN_17_84, misdemeanor_NN_19_95); nn(charges_NNS_20_107, felony_NN_17_84); amod(charges_NNS_20_107, related_VBN_21_115); prep(related_VBN_21_115, to_TO_22_123); pobj(to_TO_22_123, pacemakers_NNS_24_130); det(pacemakers_NNS_24_130, the_DT_23_126); aux(pay_VB_27_148, to_TO_26_145); iobj(pay_VB_27_148, government_NN_29_156); dobj(pay_VB_27_148, $_$_31_173); det(government_NN_29_156, the_DT_28_152); quantmod($_$_31_173, about_RB_30_167); number($_$_31_173, 5.7_CD_32_175); number($_$_31_173, million_CD_33_179); prep($_$_31_173, in_IN_34_187); pobj(in_IN_34_187, fines_NNS_35_190); cc(fines_NNS_35_190, and_CC_36_196); conj(fines_NNS_35_190, costs_NNS_38_206); amod(costs_NNS_38_206, other_JJ_37_200) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5646060062730449 0.0292 379 0.8029661016949152 (the kidneys; are conserving; water) false false When the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium . det(kidneys_NNS_2_9, the_DT_1_5); advmod(conserving_VBG_4_21, When_WRB_0_0); nsubj(conserving_VBG_4_21, kidneys_NNS_2_9); aux(conserving_VBG_4_21, are_VBP_3_17); dobj(conserving_VBG_4_21, water_NN_5_32); nn(channels_NNS_8_50, aquaporin_NN_7_40); prep(channels_NNS_8_50, in_IN_9_59); pobj(in_IN_9_59, duct_NN_12_77); det(duct_NN_12_77, the_DT_10_62); nn(duct_NN_12_77, collecting_NN_11_66); dep(allow_VBP_13_82, conserving_VBG_4_21); punct(allow_VBP_13_82, ,_,_6_38); nsubj(allow_VBP_13_82, channels_NNS_8_50); xcomp(allow_VBP_13_82, cross_VB_17_107); punct(allow_VBP_13_82, ._._20_128); nn(molecules_NNS_15_94, water_NN_14_88); nsubj(cross_VB_17_107, molecules_NNS_15_94); aux(cross_VB_17_107, to_TO_16_104); dobj(cross_VB_17_107, epithelium_NN_19_117); det(epithelium_NN_19_117, the_DT_18_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0292 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5642212988344875 0.0155 380 0.8033826638477801 (a 40 % drop; be posted for; the nine months) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5642212988344875 0.0155 381 0.8037974683544303 (the U.S. magazine business; be exited in; 2005) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5642212988344875 0.0155 382 0.8042105263157895 (codeshare flights; be launched in; 2005) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5642212988344875 0.0155 382 0.8025210084033614 (the differentiated cells; be transformed in; these cases) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.562007744171487 0.0086 382 0.80083857442348 (a Whore; was a co-founder member in; 1972) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0086 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5617550745798667 0.7345 383 0.801255230125523 (Chesler; taught one of the first Women 's Studies classes at; Richmond College) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1 0.5610079074004282 0.0084 384 0.8016701461377871 (The other route of viral infection; is; vertical transmission) false false The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . det(route_NN_2_10, The_DT_0_0); amod(route_NN_2_10, other_JJ_1_4); prep(route_NN_2_10, of_IN_3_16); pobj(of_IN_3_16, infection_NN_5_25); amod(infection_NN_5_25, viral_JJ_4_19); nsubj(transmission_NN_8_47, route_NN_2_10); cop(transmission_NN_8_47, is_VBZ_6_35); amod(transmission_NN_8_47, vertical_JJ_7_38); punct(transmission_NN_8_47, ,_,_9_60); prep(transmission_NN_8_47, in_IN_10_62); punct(transmission_NN_8_47, ._._21_120); pobj(in_IN_10_62, which_WDT_11_65); dep(in_IN_10_62, plant_NN_13_73); det(plant_NN_13_73, a_DT_12_71); prep(plant_NN_13_73, inherits_IN_14_79); pobj(inherits_IN_14_79, infection_NN_17_96); det(infection_NN_17_96, a_DT_15_88); amod(infection_NN_17_96, viral_JJ_16_90); prep(infection_NN_17_96, from_IN_18_106); pobj(from_IN_18_106, parent_NN_20_113); det(parent_NN_20_113, a_DT_19_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5599594774405574 0.2444 384 0.8 (The first step; is to; align comparable sequences) false false The first step after sequencing the molecules is to align comparable sequences from the species being studied . det(step_NN_2_10, The_DT_0_0); amod(step_NN_2_10, first_JJ_1_4); prep(step_NN_2_10, after_IN_3_15); pcomp(after_IN_3_15, sequencing_VBG_4_21); dobj(sequencing_VBG_4_21, molecules_NNS_6_36); det(molecules_NNS_6_36, the_DT_5_32); nsubj(is_VBZ_7_46, step_NN_2_10); prep(is_VBZ_7_46, to_TO_8_49); prep(is_VBZ_7_46, from_IN_12_79); punct(is_VBZ_7_46, ._._17_110); pobj(to_TO_8_49, sequences_NNS_11_69); amod(sequences_NNS_11_69, align_JJ_9_52); amod(sequences_NNS_11_69, comparable_JJ_10_58); pobj(from_IN_12_79, species_NNS_14_88); det(species_NNS_14_88, the_DT_13_84); partmod(species_NNS_14_88, studied_VBN_16_102); auxpass(studied_VBN_16_102, being_VBG_15_96) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5582169594629622 0.3797 385 0.8004158004158004 (Another historian; wrote; a report) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 1 0.5573084488372717 0.0314 386 0.8008298755186722 (the Berlin Wall; was the escape route of 57 people to; the West) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0314 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5560828134606646 0.1473 387 0.8012422360248447 (Social Security benefits; will rise 4.7 % to keep; pace)[attrib=the Department of Health and Human Services announced] false true Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5557095375453526 0.1443 388 0.8016528925619835 (ShareData; Currently has; about 4.1 million common shares outstanding) false false Currently , ShareData has about 4.1 million common shares outstanding . advmod(has_VBZ_3_22, Currently_RB_0_0); punct(has_VBZ_3_22, ,_,_1_10); nsubj(has_VBZ_3_22, ShareData_NNP_2_12); dobj(has_VBZ_3_22, shares_NNS_8_51); punct(has_VBZ_3_22, ._._10_70); quantmod(million_CD_6_36, about_RB_4_26); number(million_CD_6_36, 4.1_CD_5_32); num(shares_NNS_8_51, million_CD_6_36); amod(shares_NNS_8_51, common_JJ_7_44); amod(shares_NNS_8_51, outstanding_JJ_9_58) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5552314946137654 0.0478 388 0.8 (he; are afraid of; him) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5546505942383269 0.1473 389 0.8004115226337448 (workers; would receive; a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.5545045552537647 0.7345 389 0.7987679671457906 (Pike; said at; the Southern Commercial Convention of 1854) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.7345 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.5537904298934632 0.0444 390 0.7991803278688525 (He; was interred in; Lakeside Cemetery) false false He died in Washington , D.C. on April 10 , 1907 and was interred in Lakeside Cemetery in Bryant Pond , Maine . nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5533380815807473 0.1443 391 0.7995910020449898 (The song; has; two demo working titles) false false The song has two demo working titles : " Cheat " and " Drunk Girl " , which leaked on the internet in November 2007 . det(song_NN_1_4, The_DT_0_0); nsubj(has_VBZ_2_9, song_NN_1_4); dobj(has_VBZ_2_9, titles_NNS_6_30); punct(has_VBZ_2_9, :_:_7_37); punct(has_VBZ_2_9, "_``_8_39); dep(has_VBZ_2_9, Cheat_VB_9_41); punct(has_VBZ_2_9, ._._25_116); num(demo_NN_4_17, two_CD_3_13); nn(titles_NNS_6_30, demo_NN_4_17); amod(titles_NNS_6_30, working_VBG_5_22); punct(Cheat_VB_9_41, "_''_10_47); cc(Cheat_VB_9_41, and_CC_11_49); conj(Cheat_VB_9_41, Girl_NNP_14_61); punct(Girl_NNP_14_61, "_``_12_53); nn(Girl_NNP_14_61, Drunk_NNP_13_55); punct(Girl_NNP_14_61, "_''_15_66); punct(Girl_NNP_14_61, ,_,_16_68); rcmod(Girl_NNP_14_61, leaked_VBD_18_76); nsubj(leaked_VBD_18_76, which_WDT_17_70); prep(leaked_VBD_18_76, on_IN_19_83); prep(leaked_VBD_18_76, in_IN_22_99); pobj(on_IN_19_83, internet_NN_21_90); det(internet_NN_21_90, the_DT_20_86); pobj(in_IN_22_99, November_NNP_23_102); num(November_NNP_23_102, 2007_CD_24_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5530772689180383 0.0155 392 0.8 (Plasmodium; be killed in; humans) false false The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0 0.5512642271568213 0.02 392 0.7983706720977597 (insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs; killed Plasmodium in; humans) false false The incidence of malaria was greatly diminished in the 1960s by insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans . det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.02 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.5508108013180459 0.0393 393 0.7987804878048781 (the Reds; were playing the first place St . Louis Cardinals at; Crosley Field) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5498510263942883 0.0022 393 0.7971602434077079 (the Berlin Wall; was; the escape route of 57 people) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0022 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.5495286421353275 0.0216 393 0.7955465587044535 (Wheeler Group; was; profitable) false false She said Wheeler Group was profitable but would n't give figures . nsubj(said_VBD_1_4, She_PRP_0_0); ccomp(said_VBD_1_4, profitable_JJ_5_27); punct(said_VBD_1_4, ._._11_65); nn(Group_NNP_3_17, Wheeler_NNP_2_9); nsubj(profitable_JJ_5_27, Group_NNP_3_17); cop(profitable_JJ_5_27, was_VBD_4_23); cc(profitable_JJ_5_27, but_CC_6_38); conj(profitable_JJ_5_27, give_VB_9_52); aux(give_VB_9_52, would_MD_7_42); neg(give_VB_9_52, n't_RB_8_48); dobj(give_VB_9_52, figures_NNS_10_57) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5473352207912758 0.0724 394 0.795959595959596 (Rick Perry; became Governor of Texas in; January 2001) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 1 0.5462589326873896 0.0216 395 0.7963709677419355 (officials; were; hopeful) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5459700113960823 0.0477 395 0.7947686116700201 (old; The oldest widely accepted fossils of; eukaryotic organisms) false false The oldest widely accepted fossils of eukaryotic organisms are about 2.1 billion years old . det(oldest_JJS_1_4, The_DT_0_0); advmod(accepted_VBN_3_18, widely_RB_2_11); amod(fossils_NNS_4_27, oldest_JJS_1_4); amod(fossils_NNS_4_27, accepted_VBN_3_18); prep(fossils_NNS_4_27, of_IN_5_35); pobj(of_IN_5_35, organisms_NNS_7_49); amod(organisms_NNS_7_49, eukaryotic_JJ_6_38); quantmod(billion_CD_11_73, about_IN_9_63); number(billion_CD_11_73, 2.1_CD_10_69); num(years_NNS_12_81, billion_CD_11_73); nsubj(old_JJ_13_87, fossils_NNS_4_27); cop(old_JJ_13_87, are_VBP_8_59); measure(old_JJ_13_87, years_NNS_12_81); punct(old_JJ_13_87, ._._14_91) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5459700113960823 0.0477 396 0.7951807228915663 (vertical transmission; be The other route of; viral infection) false false The other route of viral infection is vertical transmission , in which a plant inherits a viral infection from a parent . det(route_NN_2_10, The_DT_0_0); amod(route_NN_2_10, other_JJ_1_4); prep(route_NN_2_10, of_IN_3_16); pobj(of_IN_3_16, infection_NN_5_25); amod(infection_NN_5_25, viral_JJ_4_19); nsubj(transmission_NN_8_47, route_NN_2_10); cop(transmission_NN_8_47, is_VBZ_6_35); amod(transmission_NN_8_47, vertical_JJ_7_38); punct(transmission_NN_8_47, ,_,_9_60); prep(transmission_NN_8_47, in_IN_10_62); punct(transmission_NN_8_47, ._._21_120); pobj(in_IN_10_62, which_WDT_11_65); dep(in_IN_10_62, plant_NN_13_73); det(plant_NN_13_73, a_DT_12_71); prep(plant_NN_13_73, inherits_IN_14_79); pobj(inherits_IN_14_79, infection_NN_17_96); det(infection_NN_17_96, a_DT_15_88); amod(infection_NN_17_96, viral_JJ_16_90); prep(infection_NN_17_96, from_IN_18_106); pobj(from_IN_18_106, parent_NN_20_113); det(parent_NN_20_113, a_DT_19_111) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5459335222184484 0.0084 397 0.7955911823647295 (the share issue; is; part of a strategy) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5456243359986689 0.0191 397 0.794 (He; was descended; an old aristocratic family) false false He was descended from the B low family , an old aristocratic family from Mecklenburg . nsubjpass(descended_VBN_2_7, He_PRP_0_0); auxpass(descended_VBN_2_7, was_VBD_1_3); prep(descended_VBN_2_7, from_IN_3_17); punct(descended_VBN_2_7, ,_,_8_39); dobj(descended_VBN_2_7, family_NN_12_61); punct(descended_VBN_2_7, ._._15_85); pobj(from_IN_3_17, family_NN_7_32); det(family_NN_7_32, the_DT_4_22); nn(family_NN_7_32, B_NNP_5_26); amod(family_NN_7_32, low_JJ_6_28); det(family_NN_12_61, an_DT_9_41); amod(family_NN_12_61, old_JJ_10_44); amod(family_NN_12_61, aristocratic_JJ_11_48); prep(family_NN_12_61, from_IN_13_68); pobj(from_IN_13_68, Mecklenburg_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5456243359986689 0.0191 397 0.7924151696606786 (Wheeler; was astonished; an organic compound present) false false Wheeler was astonished to find that instead he had made urea , an organic compound present in the urine of animals . nsubjpass(astonished_VBN_2_12, Wheeler_NNP_0_0); auxpass(astonished_VBN_2_12, was_VBD_1_8); xcomp(astonished_VBN_2_12, find_VB_4_26); punct(astonished_VBN_2_12, ,_,_11_61); dobj(astonished_VBN_2_12, present_NN_15_83); punct(astonished_VBN_2_12, ._._21_115); aux(find_VB_4_26, to_TO_3_23); dobj(find_VB_4_26, urea_NN_10_56); advmod(made_VBN_9_51, instead_RB_6_36); nsubj(made_VBN_9_51, he_PRP_7_44); aux(made_VBN_9_51, had_VBD_8_47); det(urea_NN_10_56, that_DT_5_31); amod(urea_NN_10_56, made_VBN_9_51); det(present_NN_15_83, an_DT_12_63); amod(present_NN_15_83, organic_JJ_13_66); nn(present_NN_15_83, compound_NN_14_74); prep(present_NN_15_83, in_IN_16_91); pobj(in_IN_16_91, urine_NN_18_98); det(urine_NN_18_98, the_DT_17_94); prep(urine_NN_18_98, of_IN_19_104); pobj(of_IN_19_104, animals_NNS_20_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5455267535574706 0.0132 398 0.7928286852589641 (pace; to be keep with; inflation) false false Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5439744896422962 0.0084 399 0.7932405566600398 (The obligation; is totally; unwarranted) false false " The obligation is totally unwarranted , " the statement said . det(obligation_NN_2_6, The_DT_1_2); nsubj(unwarranted_JJ_5_28, obligation_NN_2_6); cop(unwarranted_JJ_5_28, is_VBZ_3_17); advmod(unwarranted_JJ_5_28, totally_RB_4_20); det(statement_NN_9_48, the_DT_8_44); punct(said_VBD_10_58, "_``_0_0); ccomp(said_VBD_10_58, unwarranted_JJ_5_28); punct(said_VBD_10_58, ,_,_6_40); punct(said_VBD_10_58, "_''_7_42); nsubj(said_VBD_10_58, statement_NN_9_48); punct(said_VBD_10_58, ._._11_63) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5426987466067459 0.0155 400 0.7936507936507936 (the invasion of the Philippines; be led as; Commanding General of the newly formed Eighth Army) false false As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5426987466067459 0.0155 401 0.7940594059405941 (Imperial; be charged in; a separate complaint also filed in federal court) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0155 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5426042393393016 0.0478 401 0.7924901185770751 (amphibians , lizards , snakes , turtles , many fishes , and most invertebrates; are mainly ectothermic in; contrast) false false In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5406604125320775 0.0079 402 0.7928994082840237 (the first place St . Louis Cardinals; were playing at; Crosley Field) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5396116147916034 0.1473 403 0.7933070866141733 (Prudential-Bache Securities; to reduce; its 1989 and 1990 earnings estimates) false false Disappointment with the company 's earnings for the quarter led Prudential-Bache Securities to reduce its 1989 and 1990 earnings estimates , according to Dow Jones Professional Investor Report . prep(Disappointment_NN_0_0, with_IN_1_15); pobj(with_IN_1_15, earnings_NNS_5_35); det(company_NN_3_24, the_DT_2_20); possessive(company_NN_3_24, 's_POS_4_32); poss(earnings_NNS_5_35, company_NN_3_24); prep(earnings_NNS_5_35, for_IN_6_44); pobj(for_IN_6_44, quarter_NN_8_52); det(quarter_NN_8_52, the_DT_7_48); nsubj(led_VBD_9_60, Disappointment_NN_0_0); xcomp(led_VBD_9_60, reduce_VB_13_95); punct(led_VBD_9_60, ,_,_20_139); prep(led_VBD_9_60, according_VBG_21_141); punct(led_VBD_9_60, ._._28_193); nn(Securities_NNPS_11_81, Prudential-Bache_NNP_10_64); nsubj(reduce_VB_13_95, Securities_NNPS_11_81); aux(reduce_VB_13_95, to_TO_12_92); dobj(reduce_VB_13_95, 1989_CD_15_106); poss(1989_CD_15_106, its_PRP$_14_102); cc(1989_CD_15_106, and_CC_16_111); conj(1989_CD_15_106, estimates_NNS_19_129); num(estimates_NNS_19_129, 1990_CD_17_115); nn(estimates_NNS_19_129, earnings_NNS_18_120); dep(according_VBG_21_141, to_TO_22_151); pobj(to_TO_22_151, Report_NNP_27_186); nn(Report_NNP_27_186, Dow_NNP_23_154); nn(Report_NNP_27_186, Jones_NNP_24_158); nn(Report_NNP_27_186, Professional_NNP_25_164); nn(Report_NNP_27_186, Investor_NNP_26_177) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5396116147916034 0.1473 403 0.7917485265225933 (Scorpio sales; would take; Ford) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5396116147916034 0.1473 403 0.7901960784313725 (it; would take; Ford) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5394561925616146 0.0084 404 0.7906066536203522 (7939 Asphaug; is; an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz) false false 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5382998270075379 1.0 404 0.7890625 (40F; be also known as; Cold Sunday) false false The coldest temperature ever recorded in the city was - 40F , on January 17 , 1982 , also known as Cold Sunday . det(temperature_NN_2_12, The_DT_0_0); amod(temperature_NN_2_12, coldest_JJS_1_4); nsubjpass(recorded_VBN_4_29, temperature_NN_2_12); advmod(recorded_VBN_4_29, ever_RB_3_24); prep(recorded_VBN_4_29, in_IN_5_38); dep(recorded_VBN_4_29, was_VBD_8_50); punct(recorded_VBN_4_29, ._._23_111); pobj(in_IN_5_38, city_NN_7_45); det(city_NN_7_45, the_DT_6_41); punct(was_VBD_8_50, -_:_9_54); dep(was_VBD_8_50, known_VBN_19_90); punct(40F_CD_10_56, ,_,_11_60); prep(40F_CD_10_56, on_IN_12_62); punct(40F_CD_10_56, ,_,_17_83); pobj(on_IN_12_62, January_NNP_13_65); num(January_NNP_13_65, 17_CD_14_73); punct(January_NNP_13_65, ,_,_15_76); appos(January_NNP_13_65, 1982_CD_16_78); nsubjpass(known_VBN_19_90, 40F_CD_10_56); advmod(known_VBN_19_90, also_RB_18_85); prep(known_VBN_19_90, as_IN_20_96); pobj(as_IN_20_96, Sunday_NNP_22_104); amod(Sunday_NNP_22_104, Cold_JJ_21_99) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1 0.5363306587629391 0.1473 405 0.7894736842105263 (these percentages; may seem; small , such immigration) false false Although these percentages may seem small , such immigration is a meaningful biological exchange between populations over time . det(percentages_NNS_2_15, these_DT_1_9); mark(seem_VB_4_31, Although_IN_0_0); nsubj(seem_VB_4_31, percentages_NNS_2_15); aux(seem_VB_4_31, may_MD_3_27); dobj(seem_VB_4_31, immigration_NN_8_49); amod(immigration_NN_8_49, small_JJ_5_36); punct(immigration_NN_8_49, ,_,_6_42); amod(immigration_NN_8_49, such_JJ_7_44); csubj(exchange_NN_13_88, seem_VB_4_31); cop(exchange_NN_13_88, is_VBZ_9_61); det(exchange_NN_13_88, a_DT_10_64); amod(exchange_NN_13_88, meaningful_JJ_11_66); amod(exchange_NN_13_88, biological_JJ_12_77); prep(exchange_NN_13_88, between_IN_14_97); punct(exchange_NN_13_88, ._._18_127); pobj(between_IN_14_97, populations_NNS_15_105); prep(populations_NNS_15_105, over_IN_16_117); pobj(over_IN_16_117, time_NN_17_122) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5328442366240017 0.0216 406 0.7898832684824902 (Rick Perry; became; Governor of Texas) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0216 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 1 0.532351738969508 0.7345 407 0.7902912621359224 (Mr. Miller; said after; the annual meeting) false false In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.530668651748959 0.3797 407 0.7887596899224806 (Jane Bennet; acclaimed; miniseries Lost) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5289125099564427 0.1473 408 0.7891682785299806 (an animal; must obtain; two types of organic precursors) false false To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . aux(build_VB_1_3, To_TO_0_0); dobj(build_VB_1_3, molecules_NNS_4_21); punct(build_VB_1_3, ,_,_12_66); cc(build_VB_1_3, and_CC_13_68); conj(build_VB_1_3, reproduce_VB_14_72); det(molecules_NNS_4_21, the_DT_2_9); amod(molecules_NNS_4_21, complex_JJ_3_13); rcmod(molecules_NNS_4_21, needs_VBZ_6_34); nsubj(needs_VBZ_6_34, it_PRP_5_31); xcomp(needs_VBZ_6_34, grow_VB_8_43); aux(grow_VB_8_43, to_TO_7_40); punct(grow_VB_8_43, ,_,_9_48); conj(grow_VB_8_43, maintain_VB_10_50); dobj(maintain_VB_10_50, itself_PRP_11_59); det(animal_NN_17_87, an_DT_16_84); dep(obtain_VB_19_99, build_VB_1_3); punct(obtain_VB_19_99, ,_,_15_82); nsubj(obtain_VB_19_99, animal_NN_17_87); aux(obtain_VB_19_99, must_MD_18_94); dobj(obtain_VB_19_99, types_NNS_21_110); prep(obtain_VB_19_99, from_IN_25_138); punct(obtain_VB_19_99, ._._28_152); num(types_NNS_21_110, two_CD_20_106); prep(types_NNS_21_110, of_IN_22_116); pobj(of_IN_22_116, precursors_NNS_24_127); amod(precursors_NNS_24_127, organic_JJ_23_119); pobj(from_IN_25_138, food_NN_27_147); poss(food_NN_27_147, its_PRP$_26_143) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5284558179822167 0.0416 409 0.7895752895752896 (other low-profit personal computers; even now operate; several times as fast and have) false false The Commodore 64 and 128 , mainly used for children 's educational software and games , had surprised market researchers by continuing to produce strong sales even though other low-profit personal computers now operate several times as fast and have much more memory . det(Commodore_NNP_1_4, The_DT_0_0); num(Commodore_NNP_1_4, 64_CD_2_14); cc(Commodore_NNP_1_4, and_CC_3_17); conj(Commodore_NNP_1_4, 128_CD_4_21); punct(Commodore_NNP_1_4, ,_,_5_25); partmod(Commodore_NNP_1_4, used_VBN_7_34); punct(Commodore_NNP_1_4, ,_,_15_86); advmod(used_VBN_7_34, mainly_RB_6_27); prep(used_VBN_7_34, for_IN_8_39); pobj(for_IN_8_39, software_NN_12_67); possessive(children_NNS_9_43, 's_POS_10_52); poss(software_NN_12_67, children_NNS_9_43); amod(software_NN_12_67, educational_JJ_11_55); cc(software_NN_12_67, and_CC_13_76); conj(software_NN_12_67, games_NNS_14_80); nsubj(surprised_VBN_17_92, Commodore_NNP_1_4); aux(surprised_VBN_17_92, had_VBD_16_88); dobj(surprised_VBN_17_92, researchers_NNS_19_109); prep(surprised_VBN_17_92, by_IN_20_121); punct(surprised_VBN_17_92, ._._43_267); nn(researchers_NNS_19_109, market_NN_18_102); pcomp(by_IN_20_121, continuing_VBG_21_124); xcomp(continuing_VBG_21_124, produce_VB_23_138); aux(produce_VB_23_138, to_TO_22_135); dobj(produce_VB_23_138, sales_NNS_25_153); dep(produce_VB_23_138, operate_VBP_33_211); amod(sales_NNS_25_153, strong_JJ_24_146); amod(computers_NNS_31_197, other_JJ_28_171); amod(computers_NNS_31_197, low-profit_JJ_29_177); amod(computers_NNS_31_197, personal_JJ_30_188); advmod(operate_VBP_33_211, even_RB_26_159); dep(operate_VBP_33_211, though_IN_27_164); nsubj(operate_VBP_33_211, computers_NNS_31_197); advmod(operate_VBP_33_211, now_RB_32_207); dobj(operate_VBP_33_211, times_NNS_35_227); amod(times_NNS_35_227, several_JJ_34_219); amod(times_NNS_35_227, fast_RB_37_236); advmod(fast_RB_37_236, as_RB_36_233); cc(fast_RB_37_236, and_CC_38_241); conj(fast_RB_37_236, have_VBP_39_245); dobj(have_VBP_39_245, memory_NN_42_260); advmod(more_JJR_41_255, much_RB_40_250); amod(memory_NN_42_260, more_JJR_41_255) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5275887502391947 0.1443 410 0.789980732177264 (The disease; kills; corals) false false The disease kills corals by causing their tissue to slough off in a band from the base to the tip of the branches . det(disease_NN_1_4, The_DT_0_0); nsubj(kills_VBZ_2_12, disease_NN_1_4); dobj(kills_VBZ_2_12, corals_NNS_3_18); prep(kills_VBZ_2_12, by_IN_4_25); punct(kills_VBZ_2_12, ._._23_114); pcomp(by_IN_4_25, causing_VBG_5_28); dobj(causing_VBG_5_28, tissue_NN_7_42); poss(tissue_NN_7_42, their_PRP$_6_36); infmod(tissue_NN_7_42, slough_VB_9_52); aux(slough_VB_9_52, to_TO_8_49); prt(slough_VB_9_52, off_RP_10_59); prep(slough_VB_9_52, in_IN_11_63); prep(slough_VB_9_52, from_IN_14_73); pobj(in_IN_11_63, band_NN_13_68); det(band_NN_13_68, a_DT_12_66); pobj(from_IN_14_73, base_NN_16_82); det(base_NN_16_82, the_DT_15_78); prep(base_NN_16_82, to_TO_17_87); pobj(to_TO_17_87, tip_NN_19_94); det(tip_NN_19_94, the_DT_18_90); prep(tip_NN_19_94, of_IN_20_98); pobj(of_IN_20_98, branches_NNS_22_105); det(branches_NNS_22_105, the_DT_21_101) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.5275161713003372 0.0065 410 0.7884615384615384 (Another historian; wrote at; Auschwitz) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 1 0.5273257457611243 0.0155 411 0.7888675623800384 (a splash; be made with; her extraordinary performance) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5273257457611243 0.0155 412 0.789272030651341 (the differentiated cells; be transformed into; ES cells) false false In all these cases , researchers transformed the differentiated cells into ES cells by using retroviruses to introduce extra cloned copies of four " stem cell " master regulatory genes . pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5273257457611243 0.0155 412 0.7877629063097514 (two revisions; has had since; its inception) false false The car has had two revisions since its inception in China , the first facelift borrowed spare grilles left around from the fourth generation Volkswagen Passat in 1997 . det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5269436743691202 0.1473 412 0.7862595419847328 (water molecules; to cross; the epithelium) false false When the kidneys are conserving water , aquaporin channels in the collecting duct allow water molecules to cross the epithelium . det(kidneys_NNS_2_9, the_DT_1_5); advmod(conserving_VBG_4_21, When_WRB_0_0); nsubj(conserving_VBG_4_21, kidneys_NNS_2_9); aux(conserving_VBG_4_21, are_VBP_3_17); dobj(conserving_VBG_4_21, water_NN_5_32); nn(channels_NNS_8_50, aquaporin_NN_7_40); prep(channels_NNS_8_50, in_IN_9_59); pobj(in_IN_9_59, duct_NN_12_77); det(duct_NN_12_77, the_DT_10_62); nn(duct_NN_12_77, collecting_NN_11_66); dep(allow_VBP_13_82, conserving_VBG_4_21); punct(allow_VBP_13_82, ,_,_6_38); nsubj(allow_VBP_13_82, channels_NNS_8_50); xcomp(allow_VBP_13_82, cross_VB_17_107); punct(allow_VBP_13_82, ._._20_128); nn(molecules_NNS_15_94, water_NN_14_88); nsubj(cross_VB_17_107, molecules_NNS_15_94); aux(cross_VB_17_107, to_TO_16_104); dobj(cross_VB_17_107, epithelium_NN_19_117); det(epithelium_NN_19_117, the_DT_18_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.5269061834018879 0.3797 412 0.7847619047619048 (A.P. Green; told; the partnership)[attrib=East Rock Partners said] false true East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.5263453782754063 0.1473 413 0.785171102661597 (the investors; would pay; a symbolic one lira)[attrib=Florio Fiorini said] false true Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5257627645962731 0.4031 414 0.7855787476280834 (Clarcor; be a maker of; packaging and filtration products) false false Clarcor , a maker of packaging and filtration products , said the two companies could n't agree on terms of a definitive agreement . punct(Clarcor_NNP_0_0, ,_,_1_8); appos(Clarcor_NNP_0_0, maker_NN_3_12); punct(Clarcor_NNP_0_0, ,_,_9_55); det(maker_NN_3_12, a_DT_2_10); prep(maker_NN_3_12, of_IN_4_18); pobj(of_IN_4_18, products_NNS_8_46); cc(packaging_NN_5_21, and_CC_6_31); conj(packaging_NN_5_21, filtration_NN_7_35); nn(products_NNS_8_46, packaging_NN_5_21); nsubj(said_VBD_10_57, Clarcor_NNP_0_0); ccomp(said_VBD_10_57, agree_VB_16_90); punct(said_VBD_10_57, ._._23_131); det(companies_NNS_13_70, the_DT_11_62); num(companies_NNS_13_70, two_CD_12_66); nsubj(agree_VB_16_90, companies_NNS_13_70); aux(agree_VB_16_90, could_MD_14_80); neg(agree_VB_16_90, n't_RB_15_86); prep(agree_VB_16_90, on_IN_17_96); pobj(on_IN_17_96, terms_NNS_18_99); prep(terms_NNS_18_99, of_IN_19_105); pobj(of_IN_19_105, agreement_NN_22_121); det(agreement_NN_22_121, a_DT_20_108); amod(agreement_NN_22_121, definitive_JJ_21_110) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5246302483847023 0.0477 415 0.7859848484848485 (the rare Japanese; were his friends like; Matsukata Masayoshi) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0477 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.524541264056057 0.111 416 0.7863894139886578 (a separate complaint; be also filed in; federal court) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5233332397654471 0.0477 417 0.7867924528301887 (milder when dinosaurs existed than it is today , it was cool; be the climate in; these areas) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5216560429482295 0.0371 417 0.7853107344632768 (the mining company; posted a 40 % drop in profit in; a 6 % rise) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0371 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5211930945409404 0.0208 418 0.7857142857142857 (Bruno DeGol; be a director of; this bank-holding company) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0208 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.5188524584381967 0.0314 419 0.7861163227016885 (the other organisms; are part of; an individual 's environment) false false Later in this chapter , we will also examine how all of the biotic , or living , factors -- the other organisms that are part of an individual 's environment -- similarly influence the distribution and abundance of life on Earth . dep(Later_RB_0_0, in_IN_1_6); pobj(in_IN_1_6, chapter_NN_3_14); det(chapter_NN_3_14, this_DT_2_9); advmod(examine_VB_8_37, Later_RB_0_0); punct(examine_VB_8_37, ,_,_4_22); nsubj(examine_VB_8_37, we_PRP_5_24); aux(examine_VB_8_37, will_MD_6_27); advmod(examine_VB_8_37, also_RB_7_32); advmod(examine_VB_8_37, how_WRB_9_45); punct(examine_VB_8_37, ,_,_17_79); dobj(examine_VB_8_37, factors_NNS_18_81); punct(examine_VB_8_37, ._._42_229); dep(how_WRB_9_45, all_DT_10_49); prep(all_DT_10_49, of_IN_11_53); punct(all_DT_10_49, ,_,_14_67); cc(all_DT_10_49, or_CC_15_69); conj(all_DT_10_49, living_VBG_16_72); pobj(of_IN_11_53, biotic_JJ_13_60); det(biotic_JJ_13_60, the_DT_12_56); dep(factors_NNS_18_81, organisms_NNS_22_102); punct(organisms_NNS_22_102, --_:_19_89); det(organisms_NNS_22_102, the_DT_20_92); amod(organisms_NNS_22_102, other_JJ_21_96); rcmod(organisms_NNS_22_102, part_NN_25_121); punct(organisms_NNS_22_102, --_:_31_158); dep(organisms_NNS_22_102, influence_NN_33_171); nsubj(part_NN_25_121, that_WDT_23_112); cop(part_NN_25_121, are_VBP_24_117); prep(part_NN_25_121, of_IN_26_126); pobj(of_IN_26_126, environment_NN_30_146); det(individual_NN_28_132, an_DT_27_129); possessive(individual_NN_28_132, 's_POS_29_143); poss(environment_NN_30_146, individual_NN_28_132); advmod(influence_NN_33_171, similarly_RB_32_161); dep(influence_NN_33_171, distribution_NN_35_185); det(distribution_NN_35_185, the_DT_34_181); cc(distribution_NN_35_185, and_CC_36_198); conj(distribution_NN_35_185, abundance_NN_37_202); prep(distribution_NN_35_185, on_IN_40_220); prep(abundance_NN_37_202, of_IN_38_212); pobj(of_IN_38_212, life_NN_39_215); pobj(on_IN_40_220, Earth_NNP_41_223) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0314 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0 0.5183661330806747 0.2444 419 0.7846441947565543 (it; means over; the long run) false false " I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , " he said . nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.517126497292583 0.0307 420 0.7850467289719626 (Pharyngeal slits; function as; suspension-feeding devices) false false Pharyngeal slits function as suspension-feeding devices in many invertebrate chordates . nn(slits_NNS_1_11, Pharyngeal_NNP_0_0); nsubj(function_VBP_2_17, slits_NNS_1_11); prep(function_VBP_2_17, as_IN_3_26); punct(function_VBP_2_17, ._._10_87); pobj(as_IN_3_26, devices_NNS_5_48); amod(devices_NNS_5_48, suspension-feeding_JJ_4_29); prep(devices_NNS_5_48, in_IN_6_56); pobj(in_IN_6_56, chordates_NNS_9_77); amod(chordates_NNS_9_77, many_JJ_7_59); amod(chordates_NNS_9_77, invertebrate_JJ_8_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0307 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5171043233054161 0.111 421 0.7854477611940298 (an embryo; be packaged with; a supply of nutrients) false false A seed is an embryo packaged with a supply of nutrients inside a protective coat . det(seed_NN_1_2, A_DT_0_0); nsubj(embryo_NN_4_13, seed_NN_1_2); cop(embryo_NN_4_13, is_VBZ_2_7); det(embryo_NN_4_13, an_DT_3_10); partmod(embryo_NN_4_13, packaged_VBN_5_20); punct(embryo_NN_4_13, ._._15_81); prep(packaged_VBN_5_20, with_IN_6_29); pobj(with_IN_6_29, supply_NN_8_36); det(supply_NN_8_36, a_DT_7_34); prep(supply_NN_8_36, of_IN_9_43); pobj(of_IN_9_43, nutrients_NNS_10_46); prep(nutrients_NNS_10_46, inside_IN_11_56); pobj(inside_IN_11_56, coat_NN_14_76); det(coat_NN_14_76, a_DT_12_63); amod(coat_NN_14_76, protective_JJ_13_65) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.516871592276184 0.0155 421 0.7839851024208566 (Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel; be left after; the release of her album and a guest-appearance) false false After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5156169186502351 0.7345 422 0.7843866171003717 (The band; began recording demos for; their next album) false false The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . det(band_NN_1_4, The_DT_0_0); nsubj(began_VBD_2_9, band_NN_1_4); xcomp(began_VBD_2_9, recording_VBG_3_15); punct(began_VBD_2_9, ._._17_94); dobj(recording_VBG_3_15, demos_NN_4_25); prep(recording_VBG_3_15, for_IN_5_31); pobj(for_IN_5_31, album_NN_8_46); poss(album_NN_8_46, their_PRP$_6_35); amod(album_NN_8_46, next_JJ_7_41); prep(album_NN_8_46, at_IN_9_52); pobj(at_IN_9_52, Studio_NNP_12_67); det(Studio_NNP_12_67, The_DT_10_55); nn(Studio_NNP_12_67, Gallows_NNP_11_59); prep(Studio_NNP_12_67, in_IN_13_74); pobj(in_IN_13_74, Muncie_NNP_14_77); punct(Muncie_NNP_14_77, ,_,_15_84); appos(Muncie_NNP_14_77, Indiana_NNP_16_86) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1 0.5152059095227164 0.4031 423 0.7847866419294991 (Petone; be a suburb of; the city of Lower Hutt) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 1.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5148985883044063 0.0155 424 0.7851851851851852 (a wider audience supporting U.S. goth-metal act Type O Negative; be reached in; 1997) false false In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . pobj(In_IN_0_0, 1997_CD_1_3); det(band_NN_3_12, the_DT_2_8); prep(reached_VBD_4_17, In_IN_0_0); nsubj(reached_VBD_4_17, band_NN_3_12); dobj(reached_VBD_4_17, audience_NN_7_33); punct(reached_VBD_4_17, ._._15_89); det(audience_NN_7_33, a_DT_5_25); amod(audience_NN_7_33, wider_JJR_6_27); partmod(audience_NN_7_33, supporting_VBG_8_42); dobj(supporting_VBG_8_42, Negative_NNP_14_80); nn(Negative_NNP_14_80, U.S._NNP_9_53); nn(Negative_NNP_14_80, goth-metal_NN_10_58); nn(Negative_NNP_14_80, act_NN_11_69); nn(Negative_NNP_14_80, Type_NNP_12_73); nn(Negative_NNP_14_80, O_NNP_13_78) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5148985883044063 0.0155 425 0.7855822550831792 (Stalin; be dispatched in; May 1918) false false In May 1918 , Lenin dispatched Stalin to the city of Tsaritsyn . pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5148985883044063 0.0155 426 0.7859778597785978 (Princess Kane-no-Miya Fusako; be married on; April 29 , 1909) false false On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5148985883044063 0.0155 427 0.7863720073664825 (natural resources attorney Susan Daggett; be married on; October 26 , 1997) false false On October 26 , 1997 , he married natural resources attorney Susan Daggett in Marianna , Arkansas . pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5147683030733742 0.0151 427 0.7849264705882353 (Cordis; agreed in; this year) false false Earlier this year , Cordis , a maker of medical devices , agreed to plead guilty to felony and misdemeanor charges related to the pacemakers and to pay the government about $ 5.7 million in fines and other costs . advmod(year_NN_2_13, Earlier_RBR_0_0); det(year_NN_2_13, this_DT_1_8); punct(Cordis_NNP_4_20, ,_,_5_27); appos(Cordis_NNP_4_20, maker_NN_7_31); punct(Cordis_NNP_4_20, ,_,_11_56); det(maker_NN_7_31, a_DT_6_29); prep(maker_NN_7_31, of_IN_8_37); pobj(of_IN_8_37, devices_NNS_10_48); amod(devices_NNS_10_48, medical_JJ_9_40); tmod(agreed_VBD_12_58, year_NN_2_13); punct(agreed_VBD_12_58, ,_,_3_18); nsubj(agreed_VBD_12_58, Cordis_NNP_4_20); xcomp(agreed_VBD_12_58, plead_VB_14_68); punct(agreed_VBD_12_58, ._._39_212); aux(plead_VB_14_68, to_TO_13_65); acomp(plead_VB_14_68, guilty_JJ_15_74); cc(plead_VB_14_68, and_CC_25_141); conj(plead_VB_14_68, pay_VB_27_148); prep(guilty_JJ_15_74, to_TO_16_81); pobj(to_TO_16_81, charges_NNS_20_107); cc(felony_NN_17_84, and_CC_18_91); conj(felony_NN_17_84, misdemeanor_NN_19_95); nn(charges_NNS_20_107, felony_NN_17_84); amod(charges_NNS_20_107, related_VBN_21_115); prep(related_VBN_21_115, to_TO_22_123); pobj(to_TO_22_123, pacemakers_NNS_24_130); det(pacemakers_NNS_24_130, the_DT_23_126); aux(pay_VB_27_148, to_TO_26_145); iobj(pay_VB_27_148, government_NN_29_156); dobj(pay_VB_27_148, $_$_31_173); det(government_NN_29_156, the_DT_28_152); quantmod($_$_31_173, about_RB_30_167); number($_$_31_173, 5.7_CD_32_175); number($_$_31_173, million_CD_33_179); prep($_$_31_173, in_IN_34_187); pobj(in_IN_34_187, fines_NNS_35_190); cc(fines_NNS_35_190, and_CC_36_196); conj(fines_NNS_35_190, costs_NNS_38_206); amod(costs_NNS_38_206, other_JJ_37_200) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0151 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5146238279939432 0.0155 427 0.7834862385321101 (a 40 % drop; be posted on; a 6 % rise) false false For the nine months , the mining company posted a 40 % drop in profit to $ 30.1 million , or 31 cents a share , from $ 50.6 million , or 52 cents a share , on a 6 % rise in revenue to $ 323.2 million from $ 305.7 million . pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5146238279939432 0.0155 428 0.7838827838827839 (eleven seasons; be played as; an outfielder) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5146238279939432 0.0155 429 0.7842778793418648 (eleven seasons; be played in; the majors) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5146238279939432 0.0155 430 0.7846715328467153 (most of its stake; be acquired in; an $ 11-a-share tender offer) false false Mr. Hollander 's High Technology Holding Co. of Stamford , Conn . , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5146238279939432 0.0155 431 0.785063752276867 (identical samples of organic material; be placed on; the ground) false false Researchers with the Canadian Forest Service placed identical samples of organic material -- litter -- on the ground in 21 sites across Canada . prep(Researchers_NNS_0_0, with_IN_1_12); pobj(with_IN_1_12, Service_NNP_5_37); det(Service_NNP_5_37, the_DT_2_17); nn(Service_NNP_5_37, Canadian_NNP_3_21); nn(Service_NNP_5_37, Forest_NNP_4_30); nsubj(placed_VBD_6_45, Researchers_NNS_0_0); dobj(placed_VBD_6_45, samples_NNS_8_62); prep(placed_VBD_6_45, on_IN_15_103); punct(placed_VBD_6_45, ._._23_143); amod(samples_NNS_8_62, identical_JJ_7_52); prep(samples_NNS_8_62, of_IN_9_70); dep(samples_NNS_8_62, litter_JJ_13_93); pobj(of_IN_9_70, material_NN_11_81); amod(material_NN_11_81, organic_JJ_10_73); punct(litter_JJ_13_93, --_:_12_90); punct(litter_JJ_13_93, --_:_14_100); pobj(on_IN_15_103, ground_NN_17_110); det(ground_NN_17_110, the_DT_16_106); prep(ground_NN_17_110, in_IN_18_117); pobj(in_IN_18_117, sites_NNS_20_123); num(sites_NNS_20_123, 21_CD_19_120); prep(sites_NNS_20_123, across_IN_21_129); pobj(across_IN_21_129, Canada_NNP_22_136) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5146238279939432 0.0155 432 0.7854545454545454 (a Master of Arts; be received in; war studies degree) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.5136100371321917 0.0084 432 0.7840290381125227 (Dawes Township; is; one of eleven townships) false false Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . nn(Township_NNP_1_6, Dawes_NNP_0_0); nsubj(one_CD_3_18, Township_NNP_1_6); cop(one_CD_3_18, is_VBZ_2_15); prep(one_CD_3_18, of_IN_4_22); punct(one_CD_3_18, ._._15_88); pobj(of_IN_4_22, townships_NNS_6_32); num(townships_NNS_6_32, eleven_CD_5_25); prep(townships_NNS_6_32, in_IN_7_42); pobj(in_IN_7_42, County_NNP_9_54); nn(County_NNP_9_54, Thurston_NNP_8_45); punct(County_NNP_9_54, ,_,_10_61); conj(County_NNP_9_54, Nebraska_NNP_11_63); punct(County_NNP_9_54, ,_,_12_72); appos(County_NNP_9_54, States_NNP_14_81); nn(States_NNP_14_81, United_NNP_13_74) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5136100371321917 0.0084 433 0.7844202898550725 (Spring Creek Township; is; one of thirty-one townships) false false Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . nn(Township_NNP_2_13, Spring_NNP_0_0); nn(Township_NNP_2_13, Creek_NNP_1_7); nsubj(one_CD_4_25, Township_NNP_2_13); cop(one_CD_4_25, is_VBZ_3_22); prep(one_CD_4_25, of_IN_5_29); punct(one_CD_4_25, ._._16_97); pobj(of_IN_5_29, townships_NNS_7_43); amod(townships_NNS_7_43, thirty-one_JJ_6_32); prep(townships_NNS_7_43, in_IN_8_53); pobj(in_IN_8_53, County_NNP_10_63); nn(County_NNP_10_63, Custer_NNP_9_56); punct(County_NNP_10_63, ,_,_11_70); conj(County_NNP_10_63, Nebraska_NNP_12_72); punct(County_NNP_10_63, ,_,_13_81); appos(County_NNP_10_63, States_NNP_15_90); nn(States_NNP_15_90, United_NNP_14_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5132047287937115 0.0103 433 0.783001808318264 (whose children; had been required in; an anti-Nazi Protestant family) false false Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0103 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.5132001320009082 0.0132 433 0.7815884476534296 (us; be Tell about; spending restraint) false false Tell us about spending restraint . dobj(Tell_VB_0_0, us_PRP_1_5); prep(Tell_VB_0_0, about_IN_2_8); punct(Tell_VB_0_0, ._._5_33); pobj(about_IN_2_8, restraint_NN_4_23); nn(restraint_NN_4_23, spending_NN_3_14) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5130736193948331 0.0191 434 0.781981981981982 (the potentially fatal disease botulism; is caused; an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0191 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.5127766180029698 0.0119 434 0.7805755395683454 (Dhoni; be his 4,000 runs in; ODIs) false false Dhoni , when he was on 4 during his innings of 23 against Sri Lanka at R.Premadasa Stadium , Colombo on Saturday , completed his 4,000 runs in ODIs . punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5127766180029698 0.0119 434 0.7791741472172352 (He; be his move on; 4 June 2008) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5119946982576229 0.0095 434 0.7777777777777778 (Dawes Township; be eleven townships in; Thurston County) false false Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . nn(Township_NNP_1_6, Dawes_NNP_0_0); nsubj(one_CD_3_18, Township_NNP_1_6); cop(one_CD_3_18, is_VBZ_2_15); prep(one_CD_3_18, of_IN_4_22); punct(one_CD_3_18, ._._15_88); pobj(of_IN_4_22, townships_NNS_6_32); num(townships_NNS_6_32, eleven_CD_5_25); prep(townships_NNS_6_32, in_IN_7_42); pobj(in_IN_7_42, County_NNP_9_54); nn(County_NNP_9_54, Thurston_NNP_8_45); punct(County_NNP_9_54, ,_,_10_61); conj(County_NNP_9_54, Nebraska_NNP_11_63); punct(County_NNP_9_54, ,_,_12_72); appos(County_NNP_9_54, States_NNP_14_81); nn(States_NNP_14_81, United_NNP_13_74) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5119946982576229 0.0095 434 0.776386404293381 (Spring Creek Township; be thirty-one townships in; Custer County) false false Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . nn(Township_NNP_2_13, Spring_NNP_0_0); nn(Township_NNP_2_13, Creek_NNP_1_7); nsubj(one_CD_4_25, Township_NNP_2_13); cop(one_CD_4_25, is_VBZ_3_22); prep(one_CD_4_25, of_IN_5_29); punct(one_CD_4_25, ._._16_97); pobj(of_IN_5_29, townships_NNS_7_43); amod(townships_NNS_7_43, thirty-one_JJ_6_32); prep(townships_NNS_7_43, in_IN_8_53); pobj(in_IN_8_53, County_NNP_10_63); nn(County_NNP_10_63, Custer_NNP_9_56); punct(County_NNP_10_63, ,_,_11_70); conj(County_NNP_10_63, Nebraska_NNP_12_72); punct(County_NNP_10_63, ,_,_13_81); appos(County_NNP_10_63, States_NNP_15_90); nn(States_NNP_15_90, United_NNP_14_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5116362985238608 0.0084 434 0.775 (Cedric Roussel; is currently the books R.A.E.C. Mons; a Belgian football striker) false false Cedric Roussel is a Belgian football striker currently on the books of R.A.E.C. Mons . nn(Roussel_NNP_1_7, Cedric_NNP_0_0); nsubj(striker_NN_6_37, Roussel_NNP_1_7); cop(striker_NN_6_37, is_VBZ_2_15); det(striker_NN_6_37, a_DT_3_18); amod(striker_NN_6_37, Belgian_JJ_4_20); nn(striker_NN_6_37, football_NN_5_28); advmod(striker_NN_6_37, currently_RB_7_45); punct(striker_NN_6_37, ._._14_85); dep(currently_RB_7_45, on_IN_8_55); pobj(on_IN_8_55, books_NNS_10_62); det(books_NNS_10_62, the_DT_9_58); prep(books_NNS_10_62, of_IN_11_68); pobj(of_IN_11_68, Mons_NNP_13_80); nn(Mons_NNP_13_80, R.A.E.C._NNP_12_71) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.5115059683622137 0.008 435 0.7754010695187166 (He; will remain; chairman) false false He will remain chairman . nsubj(chairman_NN_3_15, He_PRP_0_0); aux(chairman_NN_3_15, will_MD_1_3); cop(chairman_NN_3_15, remain_VB_2_8); punct(chairman_NN_3_15, ._._4_24) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.5097231740818472 0.0444 435 0.7740213523131673 (the union; had paid a fee to; former House Speaker Jim Wright) false false In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . pobj(In_IN_0_0, edition_NN_3_15); possessive(Thursday_NNP_1_3, 's_POS_2_12); poss(edition_NN_3_15, Thursday_NNP_1_3); prep(indicated_VBN_8_44, In_IN_0_0); punct(indicated_VBN_8_44, ,_,_4_23); nsubjpass(indicated_VBN_8_44, it_PRP_5_25); auxpass(indicated_VBN_8_44, was_VBD_6_28); advmod(indicated_VBN_8_44, incorrectly_RB_7_32); ccomp(indicated_VBN_8_44, paid_VBN_13_73); punct(indicated_VBN_8_44, ._._22_119); det(union_NN_11_63, the_DT_10_59); complm(paid_VBN_13_73, that_IN_9_54); nsubj(paid_VBN_13_73, union_NN_11_63); aux(paid_VBN_13_73, had_VBD_12_69); dobj(paid_VBN_13_73, fee_NN_15_80); prep(paid_VBN_13_73, to_TO_16_84); det(fee_NN_15_80, a_DT_14_78); pobj(to_TO_16_84, Wright_NNP_21_112); amod(Wright_NNP_21_112, former_JJ_17_87); nn(Wright_NNP_21_112, House_NNP_18_94); nn(Wright_NNP_21_112, Speaker_NNP_19_100); nn(Wright_NNP_21_112, Jim_NNP_20_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.5077099888301128 0.4031 436 0.7744227353463587 (Rabaul; be the Japanese naval base at; Kavieng) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.5077099888301128 0.4031 436 0.7730496453900709 (Austen; be a modern twist on; Austen 's Pride) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.5077099888301128 0.4031 436 0.7716814159292036 (Austen; be a modern twist on; Prejudice) false false Christie made a splash with her extraordinary performance as Jane Bennet in ITV 's critically acclaimed miniseries Lost in Austen , a modern twist on Austen 's Pride & Prejudice . nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5066112146742117 0.0416 437 0.7720848056537103 (primates; have a large brain giving them; a flat face) false false Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . prep(Relative_JJ_0_0, to_TO_1_9); pobj(to_TO_1_9, mammals_NNS_3_18); amod(mammals_NNS_3_18, other_JJ_2_12); dep(have_VBP_6_37, Relative_JJ_0_0); punct(have_VBP_6_37, ,_,_4_26); nsubj(have_VBP_6_37, primates_NNS_5_28); dobj(have_VBP_6_37, brain_NN_9_50); punct(have_VBP_6_37, ,_,_13_71); xcomp(have_VBP_6_37, giving_VBG_14_73); punct(have_VBP_6_37, ._._19_97); det(brain_NN_9_50, a_DT_7_42); amod(brain_NN_9_50, large_JJ_8_44); cc(brain_NN_9_50, and_CC_10_56); conj(brain_NN_9_50, jaws_NNS_12_66); amod(jaws_NNS_12_66, short_JJ_11_60); iobj(giving_VBG_14_73, them_PRP_15_80); dobj(giving_VBG_14_73, face_NN_18_92); det(face_NN_18_92, a_DT_16_85); amod(face_NN_18_92, flat_JJ_17_87) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5066112146742117 0.0416 438 0.7724867724867724 (primates; have short jaws giving them; a flat face) false false Relative to other mammals , primates have a large brain and short jaws , giving them a flat face . prep(Relative_JJ_0_0, to_TO_1_9); pobj(to_TO_1_9, mammals_NNS_3_18); amod(mammals_NNS_3_18, other_JJ_2_12); dep(have_VBP_6_37, Relative_JJ_0_0); punct(have_VBP_6_37, ,_,_4_26); nsubj(have_VBP_6_37, primates_NNS_5_28); dobj(have_VBP_6_37, brain_NN_9_50); punct(have_VBP_6_37, ,_,_13_71); xcomp(have_VBP_6_37, giving_VBG_14_73); punct(have_VBP_6_37, ._._19_97); det(brain_NN_9_50, a_DT_7_42); amod(brain_NN_9_50, large_JJ_8_44); cc(brain_NN_9_50, and_CC_10_56); conj(brain_NN_9_50, jaws_NNS_12_66); amod(jaws_NNS_12_66, short_JJ_11_60); iobj(giving_VBG_14_73, them_PRP_15_80); dobj(giving_VBG_14_73, face_NN_18_92); det(face_NN_18_92, a_DT_16_85); amod(face_NN_18_92, flat_JJ_17_87) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5056491596060483 0.2444 439 0.772887323943662 (e-catenin; also helps to control gastrulation in; the sea anemone Nematostella vectensis) false false Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether e-catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . nn(Wikramanayake_NNP_1_7, Athula_NNP_0_0); cc(Wikramanayake_NNP_1_7, and_CC_2_21); conj(Wikramanayake_NNP_1_7, Martindale_NNP_4_30); punct(Wikramanayake_NNP_1_7, ,_,_5_41); prep(Wikramanayake_NNP_1_7, of_IN_6_43); punct(Wikramanayake_NNP_1_7, ,_,_11_71); cc(Wikramanayake_NNP_1_7, and_CC_12_73); conj(Wikramanayake_NNP_1_7, colleagues_NNS_13_77); nn(Martindale_NNP_4_30, Mark_NNP_3_25); pobj(of_IN_6_43, University_NNP_8_50); det(University_NNP_8_50, the_DT_7_46); prep(University_NNP_8_50, of_IN_9_61); pobj(of_IN_9_61, Hawaii_NNP_10_64); nsubj(tested_VBD_14_88, Wikramanayake_NNP_1_7); ccomp(tested_VBD_14_88, helps_VBZ_18_118); punct(tested_VBD_14_88, ._._28_190); complm(helps_VBZ_18_118, whether_IN_15_95); nsubj(helps_VBZ_18_118, e-catenin_NN_16_103); advmod(helps_VBZ_18_118, also_RB_17_113); xcomp(helps_VBZ_18_118, control_VB_20_127); aux(control_VB_20_127, to_TO_19_124); dobj(control_VB_20_127, gastrulation_NN_21_135); prep(control_VB_20_127, in_IN_22_148); pobj(in_IN_22_148, vectensis_NN_27_180); det(vectensis_NN_27_180, the_DT_23_151); nn(vectensis_NN_27_180, sea_NN_24_155); nn(vectensis_NN_27_180, anemone_NN_25_159); nn(vectensis_NN_27_180, Nematostella_NNP_26_167) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.5051946130926066 0.1473 439 0.7715289982425307 (her; find; a new girlfriend portayed by VS Brodie) false false Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.1473 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.5051928132868242 0.9555 439 0.7701754385964912 (he; was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore with; Sir Ian McKellen and Edward Petherbridge , of the democratically run) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5051666160985558 0.1443 440 0.7705779334500875 (he; threatens; us) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5051666160985558 0.1443 441 0.7709790209790209 (we; threatens; us) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.5038105262250819 0.4031 442 0.7713787085514834 (the San Juan; be the capital of; Puerto Rico) false false Cordero was born Federico Arturo Cordero Salguero in Rio Piedras , Puerto Rico , a town which is now part the San Juan , the capital of Puerto Rico . nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.5038105262250819 0.4031 443 0.7717770034843205 (Princess Kane-no-Miya Fusako; be the seventh daughter of; Emperor Meiji) false false On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.49852100431361857 0.021 444 0.7721739130434783 (Wellington; be region in; New Zealand) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.021 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.49796021131614765 0.0577 444 0.7708333333333334 (Jamaica , wary; has apparently instructed; its lobbyist to abandon the provision) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0577 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.49795321143304855 0.0132 445 0.7712305025996534 (Labatt 's balance sheet; to be strengthen in; anticipation of acquisitions) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4959782867339064 0.0132 446 0.7716262975778547 (law; to be practice in; Montgomery) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4959782867339064 0.0132 447 0.772020725388601 (Arthur E. Himebaugh; will be succeed as; general manager) false false He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . nsubj(succeed_VB_2_8, He_PRP_0_0); aux(succeed_VB_2_8, will_MD_1_3); dobj(succeed_VB_2_8, Himebaugh_NNP_5_26); prep(succeed_VB_2_8, as_IN_6_36); punct(succeed_VB_2_8, ._._16_91); nn(Himebaugh_NNP_5_26, Arthur_NNP_3_16); nn(Himebaugh_NNP_5_26, E._NNP_4_23); pobj(as_IN_6_36, manager_NN_8_47); amod(manager_NN_8_47, general_JJ_7_39); dep(manager_NN_8_47, Feb._NNP_9_55); num(Feb._NNP_9_55, 1_CD_10_60); punct(Feb._NNP_9_55, ,_,_11_62); dep(Feb._NNP_9_55, retires_VBZ_15_83); nn(Himebaugh_NNP_14_73, Mr._NNP_13_69); advmod(retires_VBZ_15_83, when_WRB_12_64); nsubj(retires_VBZ_15_83, Himebaugh_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4959782867339064 0.0132 448 0.7724137931034483 (life; to be contemplate without; his wife) false false It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.4950655602055952 0.0104 448 0.7710843373493976 (he; to move in; 1944) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4949221745817766 0.7345 449 0.7714776632302406 (Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked Senator Panfilo Lacson to; the February 6) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.49456041461840994 0.0577 450 0.7718696397941681 (we; have agreed to raise; the capital that will enable the company to continue operating) false false Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0577 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4945330178777349 0.0478 451 0.7722602739726028 (the blood; remains separate in; the body cavity) false false Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4944136324661812 0.0084 452 0.7726495726495727 (The Wellington Inn; is now; a major tourist attraction) false false Byrom was born at what is now the Wellington Inn , Manchester , in 1692 , The Wellington Inn is now a major tourist attraction , and his birth is commemorated by a plaque in the bar area . nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4944136324661812 0.0084 453 0.773037542662116 (She; 's; a Whore) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.49357855308592763 0.0132 453 0.7717206132879046 (demand; would be overwhelm in; coming sessions) false false The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0 0.49353356056035064 0.0057 453 0.7704081632653061 (Valley National , of Phoenix; be substantial further provisions against; its real-estate portfolio) false false Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0057 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4930028568273039 0.1349 454 0.7707979626485568 (the South; should remain in; the Union)[attrib=Pike said] false true At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.49073306129747174 0.0195 454 0.7694915254237288 (Achmat; to take; AIDS medications)[enabler=until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy] true false Achmat publicly refused to take AIDS medications until all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy . nsubj(refused_VBD_2_16, Achmat_NNP_0_0); advmod(refused_VBD_2_16, publicly_RB_1_7); xcomp(refused_VBD_2_16, take_VB_4_27); punct(refused_VBD_2_16, ._._34_194); aux(take_VB_4_27, to_TO_3_24); dobj(take_VB_4_27, medications_NNS_6_37); advcl(take_VB_4_27, had_VBD_12_75); nn(medications_NNS_6_37, AIDS_NNP_5_32); rcmod(all_DT_8_55, needed_VBD_10_63); nsubj(needed_VBD_10_63, who_WP_9_59); dobj(needed_VBD_10_63, them_PRP_11_70); mark(had_VBD_12_75, until_IN_7_49); nsubj(had_VBD_12_75, all_DT_8_55); dobj(had_VBD_12_75, access_NN_13_79); prep(access_NN_13_79, to_TO_14_86); punct(access_NN_13_79, ,_,_16_94); rcmod(access_NN_13_79, drew_VBD_18_102); pobj(to_TO_14_86, them_PRP_15_89); nsubj(drew_VBD_18_102, which_WDT_17_96); dobj(drew_VBD_18_102, Mandela_NNP_22_131); xcomp(drew_VBD_18_102, plead_VB_24_142); amod(Mandela_NNP_22_131, former_JJ_19_107); nn(Mandela_NNP_22_131, President_NNP_20_114); nn(Mandela_NNP_22_131, Nelson_NNP_21_124); aux(plead_VB_24_142, to_TO_23_139); prep(plead_VB_24_142, with_IN_25_148); prep(plead_VB_24_142, at_IN_27_160); pobj(with_IN_25_148, Achmat_NNP_26_153); pobj(at_IN_27_160, home_NN_29_167); poss(home_NN_29_167, his_PRP$_28_163); infmod(home_NN_29_167, begin_VB_31_175); aux(begin_VB_31_175, to_TO_30_172); dobj(begin_VB_31_175, therapy_NN_33_186); nn(therapy_NN_33_186, drug_NN_32_181) 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0195 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.4889184149823566 0.0216 454 0.7681895093062606 (He; then was; able) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.4874608297172945 0.0307 454 0.7668918918918919 (their kidneys; have small glomeruli or lack glomeruli entirely in; addition) false false In addition , their kidneys have small glomeruli or lack glomeruli entirely . pobj(In_IN_0_0, addition_NN_1_3); poss(kidneys_NNS_4_20, their_PRP$_3_14); prep(have_VBP_5_28, In_IN_0_0); punct(have_VBP_5_28, ,_,_2_12); nsubj(have_VBP_5_28, kidneys_NNS_4_20); dobj(have_VBP_5_28, glomeruli_NNS_7_39); punct(have_VBP_5_28, ._._12_76); amod(glomeruli_NNS_7_39, small_JJ_6_33); cc(glomeruli_NNS_7_39, or_CC_8_49); conj(glomeruli_NNS_7_39, lack_NN_9_52); amod(lack_NN_9_52, glomeruli_JJ_10_57); advmod(glomeruli_JJ_10_57, entirely_RB_11_67) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0307 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4867730867159159 0.02 455 0.7672849915682968 (the senior vice president of Gulf Power; died in; April) false false Witnesses have said the grand jury has asked numerous questions about Jacob F. " Jake " Horton , the senior vice president of Gulf Power who died in the plane crash in April . nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.02 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.48574566359506116 0.1443 456 0.7676767676767676 (it; ferments; various foods) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.4833195922554681 0.0084 456 0.7663865546218488 (An aqueous solution; is; one) false false An aqueous solution is one in which water is the solvent . det(solution_NN_2_11, An_DT_0_0); amod(solution_NN_2_11, aqueous_JJ_1_3); nsubj(one_CD_4_23, solution_NN_2_11); cop(one_CD_4_23, is_VBZ_3_20); prep(one_CD_4_23, in_IN_5_27); pobj(in_IN_5_27, water_NN_7_36); det(water_NN_7_36, which_WDT_6_30); nsubj(solvent_NN_10_49, one_CD_4_23); cop(solvent_NN_10_49, is_VBZ_8_42); det(solvent_NN_10_49, the_DT_9_45); punct(solvent_NN_10_49, ._._11_57) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.48325945949651994 0.0132 457 0.7667785234899329 (gastrulation; to be control in; the sea anemone Nematostella vectensis) false false Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether e-catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . nn(Wikramanayake_NNP_1_7, Athula_NNP_0_0); cc(Wikramanayake_NNP_1_7, and_CC_2_21); conj(Wikramanayake_NNP_1_7, Martindale_NNP_4_30); punct(Wikramanayake_NNP_1_7, ,_,_5_41); prep(Wikramanayake_NNP_1_7, of_IN_6_43); punct(Wikramanayake_NNP_1_7, ,_,_11_71); cc(Wikramanayake_NNP_1_7, and_CC_12_73); conj(Wikramanayake_NNP_1_7, colleagues_NNS_13_77); nn(Martindale_NNP_4_30, Mark_NNP_3_25); pobj(of_IN_6_43, University_NNP_8_50); det(University_NNP_8_50, the_DT_7_46); prep(University_NNP_8_50, of_IN_9_61); pobj(of_IN_9_61, Hawaii_NNP_10_64); nsubj(tested_VBD_14_88, Wikramanayake_NNP_1_7); ccomp(tested_VBD_14_88, helps_VBZ_18_118); punct(tested_VBD_14_88, ._._28_190); complm(helps_VBZ_18_118, whether_IN_15_95); nsubj(helps_VBZ_18_118, e-catenin_NN_16_103); advmod(helps_VBZ_18_118, also_RB_17_113); xcomp(helps_VBZ_18_118, control_VB_20_127); aux(control_VB_20_127, to_TO_19_124); dobj(control_VB_20_127, gastrulation_NN_21_135); prep(control_VB_20_127, in_IN_22_148); pobj(in_IN_22_148, vectensis_NN_27_180); det(vectensis_NN_27_180, the_DT_23_151); nn(vectensis_NN_27_180, sea_NN_24_155); nn(vectensis_NN_27_180, anemone_NN_25_159); nn(vectensis_NN_27_180, Nematostella_NNP_26_167) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.48325945949651994 0.0132 458 0.7671691792294807 (a pivotal role; be play in; community dynamics) false false Certain species have an especially large impact on the structure of entire communities because they are highly abundant or play a pivotal role in community dynamics . amod(species_NNS_1_8, Certain_JJ_0_0); nsubj(have_VBP_2_16, species_NNS_1_8); dobj(have_VBP_2_16, impact_NN_6_41); advcl(have_VBP_2_16, abundant_JJ_17_111); punct(have_VBP_2_16, ._._26_165); advmod(large_JJ_5_35, especially_RB_4_24); det(impact_NN_6_41, an_DT_3_21); amod(impact_NN_6_41, large_JJ_5_35); prep(impact_NN_6_41, on_IN_7_48); pobj(on_IN_7_48, structure_NN_9_55); det(structure_NN_9_55, the_DT_8_51); prep(structure_NN_9_55, of_IN_10_65); pobj(of_IN_10_65, communities_NNS_12_75); amod(communities_NNS_12_75, entire_JJ_11_68); mark(abundant_JJ_17_111, because_IN_13_87); nsubj(abundant_JJ_17_111, they_PRP_14_95); cop(abundant_JJ_17_111, are_VBP_15_100); advmod(abundant_JJ_17_111, highly_RB_16_104); cc(abundant_JJ_17_111, or_CC_18_120); conj(abundant_JJ_17_111, play_VB_19_123); dobj(play_VB_19_123, role_NN_22_138); prep(play_VB_19_123, in_IN_23_143); det(role_NN_22_138, a_DT_20_128); amod(role_NN_22_138, pivotal_JJ_21_130); pobj(in_IN_23_143, dynamics_NNS_25_156); nn(dynamics_NNS_25_156, community_NN_24_146) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.48325945949651994 0.0132 458 0.7658862876254181 (the Buckeyes; to lead to be; a national championship) false false During his freshman year at Ohio State University , he had what is considered one of the greatest freshmen seasons in NCAA Division I-A history , and helped to lead the Buckeyes to a national championship . pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.48325945949651994 0.0132 459 0.7662771285475793 (a new group president to head that operation; to be name following; the Nov. 8 board meeting) false false Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.48325945949651994 0.0132 460 0.7666666666666667 (a similar turnaround; to be guide at; the company 's latest acquisition) false false Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . nn(Sim_NNP_2_11, Richard_NNP_0_0); nn(Sim_NNP_2_11, G._NNP_1_8); punct(Sim_NNP_2_11, ,_,_3_15); det(man_NN_5_21, the_DT_4_17); nsubjpass(credited_VBD_6_25, Sim_NNP_2_11); nsubj(credited_VBD_6_25, man_NN_5_21); prep(credited_VBD_6_25, with_IN_7_34); punct(credited_VBD_6_25, ,_,_26_155); dep(credited_VBD_6_25, Corp_NNP_42_245); punct(credited_VBD_6_25, ._._43_250); pcomp(with_IN_7_34, transforming_VBG_8_39); dobj(transforming_VBG_8_39, Inc._NNP_11_66); prep(transforming_VBG_8_39, from_IN_12_71); prep(transforming_VBG_8_39, into_IN_15_93); prep(transforming_VBG_8_39, in_IN_19_114); nn(Inc._NNP_11_66, Applied_NNP_9_52); nn(Inc._NNP_11_66, Power_NNP_10_60); pobj(from_IN_12_71, underachiever_RB_14_79); det(underachiever_RB_14_79, an_DT_13_76); pobj(into_IN_15_93, player_NN_18_107); det(player_NN_18_107, a_DT_16_98); amod(player_NN_18_107, feisty_JJ_17_100); pobj(in_IN_19_114, market_NN_22_128); det(market_NN_22_128, the_DT_20_117); amod(market_NN_22_128, global_JJ_21_121); prep(market_NN_22_128, for_IN_23_135); pobj(for_IN_23_135, tools_NNS_25_149); amod(tools_NNS_25_149, hydraulic_JJ_24_139); xcomp(hopes_VBZ_27_157, guide_VB_29_166); aux(guide_VB_29_166, to_TO_28_163); dobj(guide_VB_29_166, turnaround_NN_32_182); prep(guide_VB_29_166, at_IN_33_193); det(turnaround_NN_32_182, a_DT_30_172); amod(turnaround_NN_32_182, similar_JJ_31_174); pobj(at_IN_33_193, acquisition_NN_38_218); det(company_NN_35_200, the_DT_34_196); possessive(company_NN_35_200, 's_POS_36_208); poss(acquisition_NN_38_218, company_NN_35_200); amod(acquisition_NN_38_218, latest_JJS_37_211); dep(Corp_NNP_42_245, hopes_VBZ_27_157); punct(Corp_NNP_42_245, ,_,_39_230); nn(Corp_NNP_42_245, Barry_NNP_40_232); nn(Corp_NNP_42_245, Wright_NNP_41_238) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.4816965824748495 0.0084 460 0.7653910149750416 (one; is; the solvent) false false An aqueous solution is one in which water is the solvent . det(solution_NN_2_11, An_DT_0_0); amod(solution_NN_2_11, aqueous_JJ_1_3); nsubj(one_CD_4_23, solution_NN_2_11); cop(one_CD_4_23, is_VBZ_3_20); prep(one_CD_4_23, in_IN_5_27); pobj(in_IN_5_27, water_NN_7_36); det(water_NN_7_36, which_WDT_6_30); nsubj(solvent_NN_10_49, one_CD_4_23); cop(solvent_NN_10_49, is_VBZ_8_42); det(solvent_NN_10_49, the_DT_9_45); punct(solvent_NN_10_49, ._._11_57) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.48117570153082395 0.0068 460 0.7641196013289037 (the restructuring; to have; any impact , adverse) false false The company said the restructuring is n't expected to have any impact , adverse or otherwise , on its financial results . det(company_NN_1_4, The_DT_0_0); nsubj(said_VBD_2_12, company_NN_1_4); ccomp(said_VBD_2_12, expected_VBN_7_42); punct(said_VBD_2_12, ._._21_120); det(restructuring_NN_4_21, the_DT_3_17); nsubjpass(expected_VBN_7_42, restructuring_NN_4_21); auxpass(expected_VBN_7_42, is_VBZ_5_35); neg(expected_VBN_7_42, n't_RB_6_38); xcomp(expected_VBN_7_42, have_VB_9_54); aux(have_VB_9_54, to_TO_8_51); dobj(have_VB_9_54, impact_NN_11_63); det(impact_NN_11_63, any_DT_10_59); punct(impact_NN_11_63, ,_,_12_70); amod(impact_NN_11_63, adverse_JJ_13_72); punct(impact_NN_11_63, ,_,_16_93); prep(impact_NN_11_63, on_IN_17_95); cc(adverse_JJ_13_72, or_CC_14_80); advmod(adverse_JJ_13_72, otherwise_RB_15_83); pobj(on_IN_17_95, results_NNS_20_112); poss(results_NNS_20_112, its_PRP$_18_98); amod(results_NNS_20_112, financial_JJ_19_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0068 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.4809196699219445 0.0054 460 0.7628524046434494 (He; to appoint; all new leaders most of the people he appointed as governors were young men) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0054 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.48063409267013224 0.2444 461 0.7632450331125827 (the blood supply; varies over; time) false false Capillaries in the brain , heart , kidneys , and liver are usually filled to capacity , but at many other sites the blood supply varies over time as blood is diverted from one destination to another . prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.48028762259208335 0.1349 461 0.7619834710743801 (supply; would overwhelm demand in; coming sessions) false false The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.4789322811397672 0.1473 462 0.7623762376237624 (He; will succeed; Arthur E. Himebaugh) false false He will succeed Arthur E. Himebaugh as general manager Feb. 1 , when Mr. Himebaugh retires . nsubj(succeed_VB_2_8, He_PRP_0_0); aux(succeed_VB_2_8, will_MD_1_3); dobj(succeed_VB_2_8, Himebaugh_NNP_5_26); prep(succeed_VB_2_8, as_IN_6_36); punct(succeed_VB_2_8, ._._16_91); nn(Himebaugh_NNP_5_26, Arthur_NNP_3_16); nn(Himebaugh_NNP_5_26, E._NNP_4_23); pobj(as_IN_6_36, manager_NN_8_47); amod(manager_NN_8_47, general_JJ_7_39); dep(manager_NN_8_47, Feb._NNP_9_55); num(Feb._NNP_9_55, 1_CD_10_60); punct(Feb._NNP_9_55, ,_,_11_62); dep(Feb._NNP_9_55, retires_VBZ_15_83); nn(Himebaugh_NNP_14_73, Mr._NNP_13_69); advmod(retires_VBZ_15_83, when_WRB_12_64); nsubj(retires_VBZ_15_83, Himebaugh_NNP_14_73) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.47874841103002486 0.4031 463 0.7627677100494233 (Imperial Cup Corp.; a closely held maker of; paper cups based in Kenton , Ohio) false false Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.4031 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4783659158229946 0.1349 464 0.7631578947368421 (He; does n't believe in; the religion of Islam) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0 0.4783639195676089 0.0079 464 0.7619047619047619 (traditional arrangements; continued studying under; Mohammad Reza Lotfi and his brother Pashang) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.47795609917503007 0.1443 465 0.7622950819672131 (It; takes encouragement to persuade; David) false false It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.47795609917503007 0.1443 465 0.7610474631751227 (It; takes; encouragement) false false It takes encouragement from one of the schoolboys to persuade David to contemplate life without his wife , but he carries on for the sake of Grace . nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.47437008359407457 0.0151 466 0.761437908496732 (Scorpio sales; plummeted in; This year) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0151 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.47437008359407457 0.0151 466 0.7601957585644372 (it; plummeted in; This year) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0151 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.47394043463339497 0.1443 467 0.760586319218241 (a bolus of food; reaches; the pharynx) false false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.47369949700306646 0.0477 468 0.7609756097560976 (a notable success; be Wolfowitz 's tenure as; Ambassador) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4732778856874525 0.1349 469 0.7613636363636364 (an animal; must obtain two types of organic precursors from; its food) false false To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . aux(build_VB_1_3, To_TO_0_0); dobj(build_VB_1_3, molecules_NNS_4_21); punct(build_VB_1_3, ,_,_12_66); cc(build_VB_1_3, and_CC_13_68); conj(build_VB_1_3, reproduce_VB_14_72); det(molecules_NNS_4_21, the_DT_2_9); amod(molecules_NNS_4_21, complex_JJ_3_13); rcmod(molecules_NNS_4_21, needs_VBZ_6_34); nsubj(needs_VBZ_6_34, it_PRP_5_31); xcomp(needs_VBZ_6_34, grow_VB_8_43); aux(grow_VB_8_43, to_TO_7_40); punct(grow_VB_8_43, ,_,_9_48); conj(grow_VB_8_43, maintain_VB_10_50); dobj(maintain_VB_10_50, itself_PRP_11_59); det(animal_NN_17_87, an_DT_16_84); dep(obtain_VB_19_99, build_VB_1_3); punct(obtain_VB_19_99, ,_,_15_82); nsubj(obtain_VB_19_99, animal_NN_17_87); aux(obtain_VB_19_99, must_MD_18_94); dobj(obtain_VB_19_99, types_NNS_21_110); prep(obtain_VB_19_99, from_IN_25_138); punct(obtain_VB_19_99, ._._28_152); num(types_NNS_21_110, two_CD_20_106); prep(types_NNS_21_110, of_IN_22_116); pobj(of_IN_22_116, precursors_NNS_24_127); amod(precursors_NNS_24_127, organic_JJ_23_119); pobj(from_IN_25_138, food_NN_27_147); poss(food_NN_27_147, its_PRP$_26_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4703440491602804 0.0067 470 0.7617504051863857 (a base of 1981; be uses by; The index) false false The index , which uses a base of 1981 as 100 , was calculated at 140.91 points in October , from 140.74 in September . det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.46821731067109257 0.2444 470 0.7605177993527508 (the right hemisphere; appears in; contrast) false false In contrast , the right hemisphere appears to be dominant in the recognition of faces and patterns , spatial relations , and nonverbal thinking . pobj(In_IN_0_0, contrast_NN_1_3); det(hemisphere_NN_5_24, the_DT_3_14); amod(hemisphere_NN_5_24, right_JJ_4_18); prep(appears_VBZ_6_35, In_IN_0_0); punct(appears_VBZ_6_35, ,_,_2_12); nsubj(appears_VBZ_6_35, hemisphere_NN_5_24); xcomp(appears_VBZ_6_35, dominant_JJ_9_49); punct(appears_VBZ_6_35, ,_,_20_119); cc(appears_VBZ_6_35, and_CC_21_121); conj(appears_VBZ_6_35, thinking_NN_23_135); punct(appears_VBZ_6_35, ._._24_144); aux(dominant_JJ_9_49, to_TO_7_43); cop(dominant_JJ_9_49, be_VB_8_46); prep(dominant_JJ_9_49, in_IN_10_58); punct(dominant_JJ_9_49, ,_,_17_99); conj(dominant_JJ_9_49, relations_NNS_19_109); pobj(in_IN_10_58, recognition_NN_12_65); det(recognition_NN_12_65, the_DT_11_61); prep(recognition_NN_12_65, of_IN_13_77); pobj(of_IN_13_77, faces_NNS_14_80); cc(faces_NNS_14_80, and_CC_15_86); conj(faces_NNS_14_80, patterns_NNS_16_90); amod(relations_NNS_19_109, spatial_JJ_18_101); amod(thinking_NN_23_135, nonverbal_JJ_22_125) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.46781436629484396 0.1473 471 0.7609046849757674 (it; would drop; its opposition)[enabler=if Ciba-Geigy and Chiron are successful with their lower bid] true false The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . det(university_NN_1_4, The_DT_0_0); nsubj(implied_VBD_2_15, university_NN_1_4); ccomp(implied_VBD_2_15, drop_VB_6_37); punct(implied_VBD_2_15, ._._22_139); complm(drop_VB_6_37, that_IN_3_23); nsubj(drop_VB_6_37, it_PRP_4_28); aux(drop_VB_6_37, would_MD_5_31); dobj(drop_VB_6_37, opposition_NN_8_46); advcl(drop_VB_6_37, successful_JJ_17_107); poss(opposition_NN_8_46, its_PRP$_7_42); prep(opposition_NN_8_46, to_TO_9_57); pobj(to_TO_9_57, ownership_NN_11_68); amod(ownership_NN_11_68, foreign_JJ_10_60); cc(Ciba-Geigy_NNP_13_81, and_CC_14_92); conj(Ciba-Geigy_NNP_13_81, Chiron_NNP_15_96); mark(successful_JJ_17_107, if_IN_12_78); nsubj(successful_JJ_17_107, Ciba-Geigy_NNP_13_81); cop(successful_JJ_17_107, are_VBP_16_103); prep(successful_JJ_17_107, with_IN_18_118); pobj(with_IN_18_118, bid_NN_21_135); poss(bid_NN_21_135, their_PRP$_19_123); amod(bid_NN_21_135, lower_JJR_20_129) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.1473 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.4661803179999748 0.0961 472 0.7612903225806451 (Wellington; be region of; New Zealand) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0961 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.46551583273167924 0.111 473 0.7616747181964574 (an asteroid; be named for; Dr. Erik I. Asphaug) false false 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.46551583273167924 0.111 474 0.7620578778135049 (an indoor arena; be located in; Montreal) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.46551583273167924 0.111 475 0.7624398073836276 (a new girlfriend; be portayed by; VS Brodie) false false Turner also starred in the film , portraying a young woman whose friends help her find a new girlfriend , Ely , portayed by VS Brodie . nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4652728025065972 0.1443 476 0.7628205128205128 (The announcement; follows; a sharper $ 2.2 billion decline) false false The announcement follows a sharper $ 2.2 billion decline in the country 's foreign reserves in September to $ 86.12 billion . det(announcement_NN_1_4, The_DT_0_0); nsubj(follows_VBZ_2_17, announcement_NN_1_4); dobj(follows_VBZ_2_17, decline_NN_8_49); prep(follows_VBZ_2_17, to_TO_17_105); punct(follows_VBZ_2_17, ._._21_124); number($_$_5_35, 2.2_CD_6_37); number($_$_5_35, billion_CD_7_41); det(decline_NN_8_49, a_DT_3_25); amod(decline_NN_8_49, sharper_JJR_4_27); num(decline_NN_8_49, $_$_5_35); prep(decline_NN_8_49, in_IN_9_57); prep(decline_NN_8_49, in_IN_15_92); pobj(in_IN_9_57, reserves_NNS_14_83); det(country_NN_11_64, the_DT_10_60); possessive(country_NN_11_64, 's_POS_12_72); poss(reserves_NNS_14_83, country_NN_11_64); amod(reserves_NNS_14_83, foreign_JJ_13_75); pobj(in_IN_15_92, September_NNP_16_95); pobj(to_TO_17_105, $_$_18_108); number($_$_18_108, 86.12_CD_19_110); number($_$_18_108, billion_CD_20_116) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.46501028469893946 0.0155 477 0.7632 (codeshare flights; be launched to; Germany) false false In 2005 , the airline launched codeshare flights with Lufthansa to Germany from Shanghai . pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4626753634208457 0.0083 478 0.7635782747603834 (Hatch; worked in; law) false false For fourteen years after graduating , Hatch worked as an Attorney at law in Pittsburgh and Utah . pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0083 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.462622858063677 0.0155 479 0.7639553429027113 (a $ 400,000 federal court jury verdict; be won in; a case that threatens a popular advertising industry practice) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4625456926041092 0.0079 480 0.7643312101910829 (a Best of compilation album; released; January 2002) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.4616140822615996 0.0084 480 0.7631160572337043 (It; is; the presence of internal and external " enemies which justifies the need for a large , active army) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0084 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.46068492633986097 0.0961 480 0.7619047619047619 (Hezbollah; be members during; the 2006 Lebanon War) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0961 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4601711647495456 0.0416 481 0.7622820919175911 (I; read; a sign)[enabler=as we whoosh through] true false " Tivoli Motel , " I read a sign in the usual pronunciation of the name as we whoosh through . nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.4601711647495456 0.0416 482 0.7626582278481012 (Tivoli Motel; read; a sign)[enabler=as we whoosh through] true false " Tivoli Motel , " I read a sign in the usual pronunciation of the name as we whoosh through . nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.45955774301394303 0.0292 483 0.7630331753554502 (the Reds; trailing; 13-0)[enabler=when Manager Bill McKechnie called on Nuxhall to enter the game] true false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0292 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.45924779989663594 0.3797 484 0.7634069400630915 (Gruner + Jahr; exited the U.S. magazine business selling; its women 's magazine portfolio) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.45407996303731263 0.0477 485 0.7637795275590551 (the deadliest aspect of the quake; be The failure of; the freeway segment known as the Cypress structure) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 1.0 0.0477 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.45352751956536486 0.0055 485 0.7625786163522013 (Scorpio sales; to sell off; the current Scorpio inventory of about 4,600 cars) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0055 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.45352751956536486 0.0055 485 0.7613814756671899 (it; to sell off; the current Scorpio inventory of about 4,600 cars) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0055 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4523647102918165 0.1473 486 0.7617554858934169 (we; must choose; a method inferring phylogeny from these homologous characters) false false Next we must choose a method of inferring phylogeny from these homologous characters . mark(choose_VB_3_13, Next_IN_0_0); nsubj(choose_VB_3_13, we_PRP_1_5); aux(choose_VB_3_13, must_MD_2_8); dobj(choose_VB_3_13, method_NN_5_22); punct(choose_VB_3_13, ._._13_85); det(method_NN_5_22, a_DT_4_20); prep(method_NN_5_22, of_IN_6_29); pcomp(of_IN_6_29, inferring_VBG_7_32); dobj(inferring_VBG_7_32, phylogeny_NN_8_42); prep(inferring_VBG_7_32, from_IN_9_52); pobj(from_IN_9_52, characters_NNS_12_74); det(characters_NNS_12_74, these_DT_10_57); amod(characters_NNS_12_74, homologous_JJ_11_63) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.1473 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4509934391319137 0.4031 487 0.7621283255086072 (Newport; be a maker of; electronic-measuring devices) false false Mr. Hollander 's High Technology Holding Co. of Stamford , Conn . , acquired most of its stake last August in an $ 11-a-share tender offer for Newport , a maker of electronic-measuring devices . nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.44987909808234355 0.0577 488 0.7625 (He; has made; frequent trips) false false He has made frequent trips to Laos and Vietnam and also met with Lao and Vietnamese leaders in Hanoi , Ho Chi Minh City , Jakarta , New York , Vientiane , and Paris . nsubj(made_VBN_2_7, He_PRP_0_0); aux(made_VBN_2_7, has_VBZ_1_3); dobj(made_VBN_2_7, trips_NNS_4_21); cc(made_VBN_2_7, and_CC_9_47); conj(made_VBN_2_7, met_VBD_11_56); punct(made_VBN_2_7, ,_,_19_101); amod(trips_NNS_4_21, frequent_JJ_3_12); prep(trips_NNS_4_21, to_TO_5_27); pobj(to_TO_5_27, Laos_NNP_6_30); cc(Laos_NNP_6_30, and_CC_7_35); conj(Laos_NNP_6_30, Vietnam_NNP_8_39); advmod(met_VBD_11_56, also_RB_10_51); prep(met_VBD_11_56, with_IN_12_60); pobj(with_IN_12_60, Lao_NNP_13_65); cc(Lao_NNP_13_65, and_CC_14_69); conj(Lao_NNP_13_65, leaders_NNS_16_84); prep(Lao_NNP_13_65, in_IN_17_92); amod(leaders_NNS_16_84, Vietnamese_JJ_15_73); pobj(in_IN_17_92, Hanoi_NNP_18_95); null(,_,_19_101, City_NNP_23_115); nn(City_NNP_23_115, Ho_NNP_20_103); nn(City_NNP_23_115, Chi_NNP_21_106); nn(City_NNP_23_115, Minh_NNP_22_110); punct(City_NNP_23_115, ,_,_24_120); conj(City_NNP_23_115, Jakarta_NNP_25_122); punct(City_NNP_23_115, ,_,_26_130); conj(City_NNP_23_115, York_NNP_28_136); punct(City_NNP_23_115, ,_,_31_153); cc(City_NNP_23_115, and_CC_32_155); conj(City_NNP_23_115, Paris_NNP_33_159); punct(City_NNP_23_115, ._._34_165); nn(York_NNP_28_136, New_NNP_27_132); punct(York_NNP_28_136, ,_,_29_141); conj(York_NNP_28_136, Vientiane_NNP_30_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.44987909808234355 0.0577 489 0.7628705148205929 (She; has practiced; law) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.44987909808234355 0.0577 490 0.7632398753894081 (She; has practiced; law) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.44980188306713714 0.3797 491 0.7636080870917574 (The band; began recording; demos) false false The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . det(band_NN_1_4, The_DT_0_0); nsubj(began_VBD_2_9, band_NN_1_4); xcomp(began_VBD_2_9, recording_VBG_3_15); punct(began_VBD_2_9, ._._17_94); dobj(recording_VBG_3_15, demos_NN_4_25); prep(recording_VBG_3_15, for_IN_5_31); pobj(for_IN_5_31, album_NN_8_46); poss(album_NN_8_46, their_PRP$_6_35); amod(album_NN_8_46, next_JJ_7_41); prep(album_NN_8_46, at_IN_9_52); pobj(at_IN_9_52, Studio_NNP_12_67); det(Studio_NNP_12_67, The_DT_10_55); nn(Studio_NNP_12_67, Gallows_NNP_11_59); prep(Studio_NNP_12_67, in_IN_13_74); pobj(in_IN_13_74, Muncie_NNP_14_77); punct(Muncie_NNP_14_77, ,_,_15_84); appos(Muncie_NNP_14_77, Indiana_NNP_16_86) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0 0.44952293925622205 0.0079 491 0.7624223602484472 (Germany; be Visiting in; 1937) false false Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.4482709563354432 0.0577 492 0.7627906976744186 (tank-killer teams; armed to destroy; the attacking North Korean T) false false His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.44774312624186197 0.0066 492 0.7616099071207431 (seafood; be various foods including; canned meat) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.44614650937085476 0.0393 493 0.7619783616692427 (someone; was looking for; him) false false After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . pobj(After_IN_0_0, Jim_NNP_1_6); prep(stops_VBZ_2_10, After_IN_0_0); ccomp(stops_VBZ_2_10, phones_VBZ_6_27); punct(stops_VBZ_2_10, ._._32_163); complm(phones_VBZ_6_27, by_IN_3_16); punct(phones_VBZ_6_27, ,_,_4_19); nsubj(phones_VBZ_6_27, Susan_NNP_5_21); dobj(phones_VBZ_6_27, agency_NN_10_50); xcomp(phones_VBZ_6_27, tell_VB_12_60); det(agency_NN_10_50, the_DT_7_34); amod(agency_NN_10_50, real_JJ_8_38); nn(agency_NN_10_50, estate_NN_9_43); aux(tell_VB_12_60, to_TO_11_57); dobj(tell_VB_12_60, Jerry_NNP_13_65); ccomp(tell_VB_12_60, looking_VBG_17_88); punct(tell_VB_12_60, ,_,_20_104); dep(tell_VB_12_60, informed_VBN_24_117); complm(looking_VBG_17_88, that_IN_14_71); nsubj(looking_VBG_17_88, someone_NN_15_76); aux(looking_VBG_17_88, was_VBD_16_84); prep(looking_VBG_17_88, for_IN_18_96); pobj(for_IN_18_96, him_PRP_19_100); advmod(informed_VBN_24_117, only_RB_21_106); aux(informed_VBN_24_117, to_TO_22_111); auxpass(informed_VBN_24_117, be_VB_23_114); ccomp(informed_VBN_24_117, quit_VBN_28_141); complm(quit_VBN_28_141, that_IN_25_126); nsubj(quit_VBN_28_141, Jerry_NNP_26_131); aux(quit_VBN_28_141, had_VBD_27_137); advmod(quit_VBN_28_141, ago_RB_31_159); amod(days_NNS_30_154, several_JJ_29_146); dep(ago_RB_31_159, days_NNS_30_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.44604747390934923 0.0416 494 0.7623456790123457 (The certificates; have an estimated average life of 1.8 years assuming; monthly prepayments) false false The certificates have an estimated average life of 1.8 years , assuming monthly prepayments at 1.3 % of the original balance . det(certificates_NNS_1_4, The_DT_0_0); nsubj(have_VBP_2_17, certificates_NNS_1_4); dobj(have_VBP_2_17, life_NN_6_43); punct(have_VBP_2_17, ,_,_10_61); xcomp(have_VBP_2_17, assuming_VBG_11_63); punct(have_VBP_2_17, ._._21_125); det(life_NN_6_43, an_DT_3_22); amod(life_NN_6_43, estimated_VBN_4_25); amod(life_NN_6_43, average_JJ_5_35); prep(life_NN_6_43, of_IN_7_48); pobj(of_IN_7_48, years_NNS_9_55); num(years_NNS_9_55, 1.8_CD_8_51); dobj(assuming_VBG_11_63, prepayments_NNS_13_80); amod(prepayments_NNS_13_80, monthly_JJ_12_72); prep(prepayments_NNS_13_80, at_IN_14_92); pobj(at_IN_14_92, %_NN_16_99); num(%_NN_16_99, 1.3_CD_15_95); prep(%_NN_16_99, of_IN_17_101); pobj(of_IN_17_101, balance_NN_20_117); det(balance_NN_20_117, the_DT_18_104); amod(balance_NN_20_117, original_JJ_19_108) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0416 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.44559070122718913 0.0444 495 0.7627118644067796 (She; has also served on; several task forces) false false She has also served on several task forces on acquired immune deficiency syndrome . nsubj(served_VBN_3_13, She_PRP_0_0); aux(served_VBN_3_13, has_VBZ_1_4); advmod(served_VBN_3_13, also_RB_2_8); prep(served_VBN_3_13, on_IN_4_20); punct(served_VBN_3_13, ._._13_82); pobj(on_IN_4_20, forces_NNS_7_36); amod(forces_NNS_7_36, several_JJ_5_23); nn(forces_NNS_7_36, task_NN_6_31); prep(forces_NNS_7_36, on_IN_8_43); pobj(on_IN_8_43, syndrome_NN_12_73); amod(syndrome_NN_12_73, acquired_VBN_9_46); amod(syndrome_NN_12_73, immune_JJ_10_55); nn(syndrome_NN_12_73, deficiency_NN_11_62) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.44486195302212744 0.0393 496 0.7630769230769231 (the company; is no longer looking for; an equity investor)[attrib=Mr. Miller said] false true In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.44250879190852044 0.0109 496 0.7619047619047619 (McMillan and McMillan; be her husband in; the Clarksville firm) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.44250879190852044 0.0109 496 0.7607361963190185 (McMillan and McMillan; be her husband in; the Clarksville firm) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.44170471840033315 0.0084 496 0.7595712098009189 (it; is; today) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.44140349130120327 0.008 497 0.7599388379204893 (a foreign molecule; First must be; present) false false First , a foreign molecule must be present that can bind specifically to the antigen receptor of the T cell . det(molecule_NN_4_18, a_DT_2_8); amod(molecule_NN_4_18, foreign_JJ_3_10); advmod(present_JJ_7_35, First_RB_0_0); punct(present_JJ_7_35, ,_,_1_6); nsubj(present_JJ_7_35, molecule_NN_4_18); aux(present_JJ_7_35, must_MD_5_27); cop(present_JJ_7_35, be_VB_6_32); ccomp(present_JJ_7_35, bind_NN_10_52); punct(present_JJ_7_35, ._._20_108); nsubj(bind_NN_10_52, that_WDT_8_43); aux(bind_NN_10_52, can_MD_9_48); prep(bind_NN_10_52, to_TO_12_70); dep(to_TO_12_70, specifically_RB_11_57); pobj(to_TO_12_70, receptor_NN_15_85); det(receptor_NN_15_85, the_DT_13_73); nn(receptor_NN_15_85, antigen_NN_14_77); prep(receptor_NN_15_85, of_IN_16_94); pobj(of_IN_16_94, cell_NN_19_103); det(cell_NN_19_103, the_DT_17_97); nn(cell_NN_19_103, T_NNP_18_101) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.4409415752492755 0.0071 497 0.7587786259541984 (essence; went native to; he) false false But Wolfowitz 's tenure as Ambassador was a notable success , largely owing to the fact that , in essence , he went native . possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0071 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.4406560351964406 0.0125 498 0.7591463414634146 (the high surface-to-volume ratio; goes with; small size) false false Because of the high surface-to-volume ratio that goes with small size , deer mice lose body heat rapidly and must constantly generate metabolic heat to maintain body temperature . dep(of_IN_1_8, Because_IN_0_0); pobj(of_IN_1_8, ratio_NN_5_38); det(ratio_NN_5_38, the_DT_2_11); amod(ratio_NN_5_38, high_JJ_3_15); nn(ratio_NN_5_38, surface-to-volume_NN_4_20); rcmod(ratio_NN_5_38, goes_VBZ_7_49); punct(ratio_NN_5_38, ,_,_11_70); conj(ratio_NN_5_38, mice_NNS_13_77); nsubj(goes_VBZ_7_49, that_WDT_6_44); prep(goes_VBZ_7_49, with_IN_8_54); pobj(with_IN_8_54, size_NN_10_65); amod(size_NN_10_65, small_JJ_9_59); amod(mice_NNS_13_77, deer_JJR_12_72); prep(lose_VBP_14_82, of_IN_1_8); dobj(lose_VBP_14_82, heat_NN_16_92); advmod(lose_VBP_14_82, rapidly_RB_17_97); cc(lose_VBP_14_82, and_CC_18_105); conj(lose_VBP_14_82, generate_VB_21_125); punct(lose_VBP_14_82, ._._28_178); nn(heat_NN_16_92, body_NN_15_87); aux(generate_VB_21_125, must_MD_19_109); advmod(generate_VB_21_125, constantly_RB_20_114); dobj(generate_VB_21_125, heat_NN_23_144); xcomp(generate_VB_21_125, maintain_VB_25_152); amod(heat_NN_23_144, metabolic_JJ_22_134); aux(maintain_VB_25_152, to_TO_24_149); dobj(maintain_VB_25_152, temperature_NN_27_166); nn(temperature_NN_27_166, body_NN_26_161) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0 0.43898499980461975 0.0119 498 0.7579908675799086 (he; be the invasion of; the Philippines) false false As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.43898499980461975 0.0119 499 0.7583586626139818 (the company; be lower-than-forecast sales of; Easy Eggs) false false When the company this month announced lower-than-forecast sales of Easy Eggs , the stock dropped nearly 19 % . det(company_NN_2_9, the_DT_1_5); det(month_NN_4_22, this_DT_3_17); advmod(announced_VBD_5_28, When_WRB_0_0); nsubj(announced_VBD_5_28, company_NN_2_9); dep(announced_VBD_5_28, month_NN_4_22); dobj(announced_VBD_5_28, sales_NNS_7_58); amod(sales_NNS_7_58, lower-than-forecast_JJ_6_38); prep(sales_NNS_7_58, of_IN_8_64); pobj(of_IN_8_64, Eggs_NNP_10_72); nn(Eggs_NNP_10_72, Easy_NNP_9_67); det(stock_NN_13_83, the_DT_12_79); dep(dropped_VBD_14_89, announced_VBD_5_28); punct(dropped_VBD_14_89, ,_,_11_77); nsubj(dropped_VBD_14_89, stock_NN_13_83); dobj(dropped_VBD_14_89, %_NN_17_107); punct(dropped_VBD_14_89, ._._18_109); quantmod(19_CD_16_104, nearly_RB_15_97); num(%_NN_17_107, 19_CD_16_104) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.43859670740081824 0.0577 500 0.7587253414264037 (Dell Curry; was chosen; 7th overall) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0577 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.4384418841888025 0.0155 501 0.759090909090909 (one of the first Women 's Studies classes; be taught during; the 1969-1970 school year) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0 0.43792549970477 0.0086 501 0.7579425113464447 (large; be group of; interacting genes and gene products) false false The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0086 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.4375842712624847 0.0195 501 0.756797583081571 (Amuro; to solo; activities) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.4375842712624847 0.0195 502 0.7571644042232277 (He; to practice; law) false false He began to practice law in Montgomery and was elected a member of the Alabama House of Representatives in 1826 , serving until 1828 . nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.43747953206616313 0.0181 503 0.7575301204819277 (he; to perform as; a part of a two-hander) false false In 2008 he returned once again to perform as a part of a two-hander with John Robins in their show - Carl Donnelly Vs John Robins Vs Predator . pobj(In_IN_0_0, 2008_CD_1_3); prep(returned_VBD_3_11, In_IN_0_0); nsubj(returned_VBD_3_11, he_PRP_2_8); advmod(returned_VBD_3_11, again_RB_5_25); xcomp(returned_VBD_3_11, perform_VB_7_34); punct(returned_VBD_3_11, ._._28_142); advmod(again_RB_5_25, once_RB_4_20); aux(perform_VB_7_34, to_TO_6_31); prep(perform_VB_7_34, as_IN_8_42); pobj(as_IN_8_42, part_NN_10_47); det(part_NN_10_47, a_DT_9_45); prep(part_NN_10_47, of_IN_11_52); pobj(of_IN_11_52, two-hander_JJ_13_57); det(two-hander_JJ_13_57, a_DT_12_55); prep(two-hander_JJ_13_57, with_IN_14_68); prep(two-hander_JJ_13_57, in_IN_17_85); punct(two-hander_JJ_13_57, -_:_20_99); dep(two-hander_JJ_13_57, Predator_NNP_27_133); pobj(with_IN_14_68, Robins_NNP_16_78); nn(Robins_NNP_16_78, John_NNP_15_73); pobj(in_IN_17_85, show_NN_19_94); poss(show_NN_19_94, their_PRP$_18_88); nn(Predator_NNP_27_133, Carl_NNP_21_101); nn(Predator_NNP_27_133, Donnelly_NNP_22_106); nn(Predator_NNP_27_133, Vs_NNP_23_115); nn(Predator_NNP_27_133, John_NNP_24_118); nn(Predator_NNP_27_133, Robins_NNP_25_123); nn(Predator_NNP_27_133, Vs_NNP_26_130) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0181 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.43715314382460063 0.0065 504 0.7578947368421053 (Another historian; wrote on; the gassing facilities) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0 0.43713503460830516 0.0181 504 0.7567567567567568 (Amuro; to solo activities on; her own) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0181 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.43646629243022217 0.021 505 0.7571214392803598 (Southern Great Plain; be region in; southern Hungary) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.021 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.4359852478205229 0.0195 505 0.7559880239520959 (Manager Bill McKechnie; to enter; the game) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4355635229268553 0.0132 506 0.7563527653213752 (a song; Also to be record by; Destiny 's Child) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.435146807117044 0.0119 506 0.755223880597015 (Singer Bette Midler; be a $ 400,000 federal court jury verdict against; Rubicam) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.4343309472409519 0.0444 507 0.7555886736214605 (Dell Curry; was chosen 7th overall by; the Golden State Warriors) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0444 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.43402533690244155 0.0084 507 0.7544642857142857 (It; is; important) false false It is important to focus on features that result from common ancestry , because only such features reflect evolutionary relationships . nsubj(important_JJ_2_6, It_PRP_0_0); cop(important_JJ_2_6, is_VBZ_1_3); xcomp(important_JJ_2_6, focus_VB_4_19); aux(focus_VB_4_19, to_TO_3_16); prep(focus_VB_4_19, on_IN_5_25); pobj(on_IN_5_25, features_NNS_6_28); dep(features_NNS_6_28, that_IN_7_37); pobj(that_IN_7_37, result_NN_8_42); punct(that_IN_7_37, ,_,_12_70); prep(result_NN_8_42, from_IN_9_49); pobj(from_IN_9_49, ancestry_NN_11_61); amod(ancestry_NN_11_61, common_JJ_10_54); advcl(,_,_12_70, reflect_VBP_17_99); punct(,_,_12_70, ._._20_134); advmod(features_NNS_16_90, only_RB_14_80); amod(features_NNS_16_90, such_JJ_15_85); mark(reflect_VBP_17_99, because_IN_13_72); nsubj(reflect_VBP_17_99, features_NNS_16_90); dobj(reflect_VBP_17_99, relationships_NNS_19_120); amod(relationships_NNS_19_120, evolutionary_JJ_18_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.43396618596204656 0.0132 508 0.7548291233283804 (two types of organic precursors; must be obtain from; its food) false false To build the complex molecules it needs to grow , maintain itself , and reproduce , an animal must obtain two types of organic precursors from its food . aux(build_VB_1_3, To_TO_0_0); dobj(build_VB_1_3, molecules_NNS_4_21); punct(build_VB_1_3, ,_,_12_66); cc(build_VB_1_3, and_CC_13_68); conj(build_VB_1_3, reproduce_VB_14_72); det(molecules_NNS_4_21, the_DT_2_9); amod(molecules_NNS_4_21, complex_JJ_3_13); rcmod(molecules_NNS_4_21, needs_VBZ_6_34); nsubj(needs_VBZ_6_34, it_PRP_5_31); xcomp(needs_VBZ_6_34, grow_VB_8_43); aux(grow_VB_8_43, to_TO_7_40); punct(grow_VB_8_43, ,_,_9_48); conj(grow_VB_8_43, maintain_VB_10_50); dobj(maintain_VB_10_50, itself_PRP_11_59); det(animal_NN_17_87, an_DT_16_84); dep(obtain_VB_19_99, build_VB_1_3); punct(obtain_VB_19_99, ,_,_15_82); nsubj(obtain_VB_19_99, animal_NN_17_87); aux(obtain_VB_19_99, must_MD_18_94); dobj(obtain_VB_19_99, types_NNS_21_110); prep(obtain_VB_19_99, from_IN_25_138); punct(obtain_VB_19_99, ._._28_152); num(types_NNS_21_110, two_CD_20_106); prep(types_NNS_21_110, of_IN_22_116); pobj(of_IN_22_116, precursors_NNS_24_127); amod(precursors_NNS_24_127, organic_JJ_23_119); pobj(from_IN_25_138, food_NN_27_147); poss(food_NN_27_147, its_PRP$_26_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.43396618596204656 0.0132 508 0.7537091988130564 (Equitec; would be replace as; the newly formed master limited partnership 's general partner and manager) false false Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . pobj(Under_IN_0_0, proposal_NN_2_10); det(proposal_NN_2_10, the_DT_1_6); prep(proposal_NN_2_10, by_IN_3_19); pobj(by_IN_3_19, Equitec_NNP_4_22); punct(Equitec_NNP_4_22, ,_,_5_30); appos(Equitec_NNP_4_22, syndicator_NN_10_67); punct(Equitec_NNP_4_22, ,_,_11_78); conj(Equitec_NNP_4_22, Inc._NNP_16_110); advmod(troubled_JJ_8_46, financially_RB_7_34); det(syndicator_NN_10_67, a_DT_6_32); amod(syndicator_NN_10_67, troubled_JJ_8_46); nn(syndicator_NN_10_67, real-estate_NN_9_55); dep(York-based_JJ_13_84, New_NNP_12_80); amod(Inc._NNP_16_110, York-based_JJ_13_84); nn(Inc._NNP_16_110, Hallwood_NNP_14_95); nn(Inc._NNP_16_110, Group_NNP_15_104); prep(replace_VB_18_121, Under_IN_0_0); aux(replace_VB_18_121, would_MD_17_115); dobj(replace_VB_18_121, Equitec_NNP_19_129); prep(replace_VB_18_121, as_IN_20_137); punct(replace_VB_18_121, ._._32_215); pobj(as_IN_20_137, partner_NN_29_195); advmod(formed_JJ_23_150, newly_RB_22_144); det(partnership_NN_26_172, the_DT_21_140); amod(partnership_NN_26_172, formed_JJ_23_150); nn(partnership_NN_26_172, master_NN_24_157); amod(partnership_NN_26_172, limited_JJ_25_164); possessive(partnership_NN_26_172, 's_POS_27_184); poss(partner_NN_29_195, partnership_NN_26_172); amod(partner_NN_29_195, general_JJ_28_187); cc(partner_NN_29_195, and_CC_30_203); conj(partner_NN_29_195, manager_NN_31_207) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.4335498245290546 0.0119 508 0.7525925925925926 (Strachan; be the World Gurning competition at; Egremont Crab Fair) false false While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.43292869903379066 0.7345 509 0.7529585798816568 (He; completed his move to Premier League side Fulham on 4 June 2008 for; an undisclosed fee) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.43292869903379066 0.7345 510 0.7533234859675036 (He; completed his move to Premier League side Fulham on 4 June 2008 on; a two-year deal) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.43288490210095915 0.1349 511 0.7536873156342183 (birth control pills; slightly raise a woman 's risk of abnormal blood clotting among; nonsmokers) false false Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . pobj(Among_IN_0_0, nonsmokers_NNS_1_6); nn(pills_NNS_5_33, birth_NN_3_19); nn(pills_NNS_5_33, control_NN_4_25); prep(raise_VB_7_48, Among_IN_0_0); punct(raise_VB_7_48, ,_,_2_17); nsubj(raise_VB_7_48, pills_NNS_5_33); advmod(raise_VB_7_48, slightly_RB_6_39); dobj(raise_VB_7_48, risk_NN_11_65); det(woman_NN_9_56, a_DT_8_54); possessive(woman_NN_9_56, 's_POS_10_62); poss(risk_NN_11_65, woman_NN_9_56); prep(risk_NN_11_65, of_IN_12_70); pobj(of_IN_12_70, clotting_NN_15_88); amod(clotting_NN_15_88, abnormal_JJ_13_73); nn(clotting_NN_15_88, blood_NN_14_82); advcl(pressure_NN_19_110, raise_VB_7_48); punct(pressure_NN_19_110, ,_,_16_97); amod(pressure_NN_19_110, high_JJ_17_99); nn(pressure_NN_19_110, blood_NN_18_104); punct(pressure_NN_19_110, ,_,_20_119); conj(pressure_NN_19_110, attack_NN_22_127); punct(pressure_NN_19_110, ,_,_23_134); cc(pressure_NN_19_110, and_CC_24_136); conj(pressure_NN_19_110, stroke_NN_25_140); punct(pressure_NN_19_110, ._._26_147); nn(attack_NN_22_127, heart_NN_21_121) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.43288490210095915 0.1349 512 0.7540500736377025 (workers; would receive a 3 % bonus in; the second year) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.4328159682462656 0.3797 512 0.7529411764705882 (the squadron; began taking; part) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 1 0.43280379216607134 0.1473 513 0.7533039647577092 (Both radial glia and astrocytes; can also act generating; new neurons and glia) false false Both radial glia and astrocytes can also act as stem cells , generating new neurons and glia . det(glia_NN_2_12, Both_DT_0_0); amod(glia_NN_2_12, radial_JJ_1_5); cc(glia_NN_2_12, and_CC_3_17); conj(glia_NN_2_12, astrocytes_NNS_4_21); nsubj(act_VB_7_41, glia_NN_2_12); aux(act_VB_7_41, can_MD_5_32); advmod(act_VB_7_41, also_RB_6_36); prep(act_VB_7_41, as_IN_8_45); punct(act_VB_7_41, ,_,_11_59); xcomp(act_VB_7_41, generating_VBG_12_61); punct(act_VB_7_41, ._._17_93); pobj(as_IN_8_45, cells_NNS_10_53); nn(cells_NNS_10_53, stem_NN_9_48); dobj(generating_VBG_12_61, neurons_NNS_14_76); amod(neurons_NNS_14_76, new_JJ_13_72); cc(neurons_NNS_14_76, and_CC_15_84); conj(neurons_NNS_14_76, glia_NNP_16_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.4324933295834237 0.0086 513 0.7521994134897361 (other; be Hezbollah members during; the 2006 Lebanon War) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0086 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.43242931921560007 0.0084 514 0.7525622254758418 (it; is; not fail-safe) false false Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . amod(immunity_NN_2_18, adaptive_JJ_1_9); mark(offers_VBZ_3_27, Although_IN_0_0); nsubj(offers_VBZ_3_27, immunity_NN_2_18); dobj(offers_VBZ_3_27, protection_NN_5_46); prep(offers_VBZ_3_27, against_IN_6_57); amod(protection_NN_5_46, significant_JJ_4_34); pobj(against_IN_6_57, range_NN_9_72); det(range_NN_9_72, a_DT_7_65); amod(range_NN_9_72, wide_JJ_8_67); prep(range_NN_9_72, of_IN_10_78); pobj(of_IN_10_78, pathogens_NNS_11_81); advcl(fail-safe_JJ_16_103, offers_VBZ_3_27); punct(fail-safe_JJ_16_103, ,_,_12_91); nsubj(fail-safe_JJ_16_103, it_PRP_13_93); cop(fail-safe_JJ_16_103, is_VBZ_14_96); neg(fail-safe_JJ_16_103, not_RB_15_99); punct(fail-safe_JJ_16_103, ._._17_113) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4322147242411709 0.1473 515 0.7529239766081871 (Social Security benefits; will rise 4.7 % boosting; the average monthly benefit)[attrib=the Department of Health and Human Services announced] false true Social Security benefits will rise 4.7 % next year to keep pace with inflation , boosting the average monthly benefit to $ 566 from $ 541 , the Department of Health and Human Services announced . nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.43191731766169394 0.0068 516 0.7532846715328467 (whose children; to join; the Hitler Youth) false false Visiting Germany in 1937 , he was hosted by an anti-Nazi Protestant family whose children had been required to join the Hitler Youth . dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0068 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.43188532238260585 0.0067 517 0.7536443148688047 (he; to name a new group president to head that operation following; the Nov. 8 board meeting) false false Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4316095584452342 0.0132 518 0.7540029112081513 (most of their heat; be gain from; external sources) false false In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.4302470664810216 0.0117 519 0.7543604651162791 (an upcoming compilation CD; to be released by; the studio) false false Also , although unreleased as of 2009 , Drop Trio was asked by SugarHill Recording Studios , in 2003 , to record a song by Destiny 's Child for an upcoming compilation CD to be released by the studio . prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0117 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.4282487012320344 1.0 519 0.7532656023222061 (she; be confirmed by; the Senate) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.42784973755588496 0.0101 519 0.7521739130434782 (new; post of; vice president of world-wide advanced materials operations) false false Denis C. Smith was named to the new post of vice president of world-wide advanced materials operations for this chemicals concern . nn(Smith_NNP_2_9, Denis_NNP_0_0); nn(Smith_NNP_2_9, C._NNP_1_6); nsubjpass(named_VBN_4_19, Smith_NNP_2_9); auxpass(named_VBN_4_19, was_VBD_3_15); prep(named_VBN_4_19, to_TO_5_25); prep(named_VBN_4_19, for_IN_17_103); punct(named_VBN_4_19, ._._21_130); pobj(to_TO_5_25, post_NN_8_36); det(post_NN_8_36, the_DT_6_28); amod(post_NN_8_36, new_JJ_7_32); prep(post_NN_8_36, of_IN_9_41); pobj(of_IN_9_41, president_NN_11_49); nn(president_NN_11_49, vice_NN_10_44); prep(president_NN_11_49, of_IN_12_59); pobj(of_IN_12_59, operations_NNS_16_92); amod(operations_NNS_16_92, world-wide_JJ_13_62); amod(operations_NNS_16_92, advanced_JJ_14_73); nn(operations_NNS_16_92, materials_NNS_15_82); pobj(for_IN_17_103, concern_NN_20_122); det(concern_NN_20_122, this_DT_18_107); nn(concern_NN_20_122, chemicals_NNS_19_112) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0101 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.427744185522122 0.0623 519 0.7510853835021708 (he; looked to; dead cells) false false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0623 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.42508740840778103 0.0292 520 0.7514450867052023 (He; continued studying; traditional arrangements) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0292 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.4239303990024235 0.0577 520 0.7503607503607503 (the union; had paid; a fee) false false In Thursday 's edition , it was incorrectly indicated that the union had paid a fee to former House Speaker Jim Wright . pobj(In_IN_0_0, edition_NN_3_15); possessive(Thursday_NNP_1_3, 's_POS_2_12); poss(edition_NN_3_15, Thursday_NNP_1_3); prep(indicated_VBN_8_44, In_IN_0_0); punct(indicated_VBN_8_44, ,_,_4_23); nsubjpass(indicated_VBN_8_44, it_PRP_5_25); auxpass(indicated_VBN_8_44, was_VBD_6_28); advmod(indicated_VBN_8_44, incorrectly_RB_7_32); ccomp(indicated_VBN_8_44, paid_VBN_13_73); punct(indicated_VBN_8_44, ._._22_119); det(union_NN_11_63, the_DT_10_59); complm(paid_VBN_13_73, that_IN_9_54); nsubj(paid_VBN_13_73, union_NN_11_63); aux(paid_VBN_13_73, had_VBD_12_69); dobj(paid_VBN_13_73, fee_NN_15_80); prep(paid_VBN_13_73, to_TO_16_84); det(fee_NN_15_80, a_DT_14_78); pobj(to_TO_16_84, Wright_NNP_21_112); amod(Wright_NNP_21_112, former_JJ_17_87); nn(Wright_NNP_21_112, House_NNP_18_94); nn(Wright_NNP_21_112, Speaker_NNP_19_100); nn(Wright_NNP_21_112, Jim_NNP_20_108) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.4210002057059459 0.0478 521 0.7507204610951008 (it; is particularly interested in; Tesoro 's refinery)[enabler=because it would fill a gap in its business] true false Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0478 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4201771056078315 0.0084 522 0.7510791366906475 (Dell Curry; is; the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.4200913508546778 0.0079 522 0.75 (part; be taking in; the air) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.4200913508546778 0.0079 522 0.7489239598278336 (songs; be mating in; two cryptic) false false Source C. S. Henry et al . , The inheritance of mating songs in two cryptic , sibling lacewing species , Genetica 116 :269 -289 . nn(al_NN_5_22, Source_NN_0_0); nn(al_NN_5_22, C._NNP_1_7); nn(al_NN_5_22, S._NNP_2_10); nn(al_NN_5_22, Henry_NNP_3_13); nn(al_NN_5_22, et_NNP_4_19); punct(al_NN_5_22, ._._6_25); punct(al_NN_5_22, ,_,_7_27); appos(al_NN_5_22, inheritance_NN_9_33); punct(al_NN_5_22, ,_,_20_103); rcmod(al_NN_5_22, -289_-RRB-_24_123); punct(al_NN_5_22, ._._25_128); det(inheritance_NN_9_33, The_DT_8_29); prep(inheritance_NN_9_33, of_IN_10_45); pcomp(of_IN_10_45, mating_VBG_11_48); dobj(mating_VBG_11_48, songs_NNS_12_55); prep(mating_VBG_11_48, in_IN_13_61); punct(mating_VBG_11_48, ,_,_16_76); conj(mating_VBG_11_48, sibling_VBG_17_78); pobj(in_IN_13_61, two_CD_14_64); amod(two_CD_14_64, cryptic_JJ_15_68); dobj(sibling_VBG_17_78, species_NNS_19_95); nn(species_NNS_19_95, lacewing_NN_18_86); num(Genetica_NNP_21_105, :269_CD_23_118); number(:269_CD_23_118, 116_CD_22_114); nsubj(-289_-RRB-_24_123, Genetica_NNP_21_105) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4200913508546778 0.0079 523 0.7492836676217765 (an item; be filming in; 2002) false false While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4197431192517617 0.9555 524 0.7496423462088698 (GDP; is the total value of; a nation 's output of goods and services) false false GDP is the total value of a nation 's output of goods and services . nsubj(value_NN_4_17, GDP_NNP_0_0); cop(value_NN_4_17, is_VBZ_1_4); det(value_NN_4_17, the_DT_2_7); amod(value_NN_4_17, total_JJ_3_11); prep(value_NN_4_17, of_IN_5_23); punct(value_NN_4_17, ._._14_67); pobj(of_IN_5_23, output_NN_9_38); det(nation_NN_7_28, a_DT_6_26); possessive(nation_NN_7_28, 's_POS_8_35); poss(output_NN_9_38, nation_NN_7_28); prep(output_NN_9_38, of_IN_10_45); pobj(of_IN_10_45, goods_NNS_11_48); cc(goods_NNS_11_48, and_CC_12_54); conj(goods_NNS_11_48, services_NNS_13_58) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.4192136175373511 0.2444 524 0.7485714285714286 (it; appears for; the short term) false false " I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , " he said . nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.41814271626192945 0.0444 524 0.7475035663338089 (DNA analyses; have shown in; the case of naked mole rats) false false In the case of naked mole rats , DNA analyses have shown that all the individuals in a colony are closely related . pobj(In_IN_0_0, case_NN_2_7); det(case_NN_2_7, the_DT_1_3); prep(case_NN_2_7, of_IN_3_12); pobj(of_IN_3_12, rats_NNS_6_26); amod(rats_NNS_6_26, naked_JJ_4_15); nn(rats_NNS_6_26, mole_NN_5_21); nn(analyses_NNS_9_37, DNA_NNP_8_33); prep(shown_VBN_11_51, In_IN_0_0); punct(shown_VBN_11_51, ,_,_7_31); nsubj(shown_VBN_11_51, analyses_NNS_9_37); aux(shown_VBN_11_51, have_VBP_10_46); ccomp(shown_VBN_11_51, related_VBN_21_106); punct(shown_VBN_11_51, ._._22_114); predet(individuals_NNS_15_70, all_PDT_13_62); det(individuals_NNS_15_70, the_DT_14_66); prep(individuals_NNS_15_70, in_IN_16_82); pobj(in_IN_16_82, colony_NN_18_87); det(colony_NN_18_87, a_DT_17_85); complm(related_VBN_21_106, that_IN_12_57); nsubjpass(related_VBN_21_106, individuals_NNS_15_70); auxpass(related_VBN_21_106, are_VBP_19_94); advmod(related_VBN_21_106, closely_RB_20_98) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 1.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.41791111331319275 0.0314 525 0.7478632478632479 (the Berlin Wall; was the escape route of 57 people from; East Berlin) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0314 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4175596909617927 0.0477 526 0.748221906116643 (2 to 4 times BMR; be the average daily rate of; energy consumption) false false For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . pobj(For_IN_0_0, animals_NNS_3_21); amod(animals_NNS_3_21, most_JJS_1_4); amod(animals_NNS_3_21, terrestrial_JJ_2_9); det(rate_NN_8_49, the_DT_5_31); amod(rate_NN_8_49, average_JJ_6_35); amod(rate_NN_8_49, daily_JJ_7_43); prep(rate_NN_8_49, of_IN_9_54); pobj(of_IN_9_54, consumption_NN_11_64); nn(consumption_NN_11_64, energy_NN_10_57); number(times_NNS_16_86, 2_CD_13_79); dep(times_NNS_16_86, to_TO_14_81); number(times_NNS_16_86, 4_CD_15_84); prep(BMR_NNP_17_92, For_IN_0_0); punct(BMR_NNP_17_92, ,_,_4_29); nsubj(BMR_NNP_17_92, rate_NN_8_49); cop(BMR_NNP_17_92, is_VBZ_12_76); num(BMR_NNP_17_92, times_NNS_16_86); punct(BMR_NNP_17_92, ._._18_96) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.4171241291162316 0.1349 526 0.7471590909090909 (Scorpio sales; would take Ford at; the current sales pace) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4163360117195252 0.1443 527 0.7475177304964539 (He; increases; the board) false false He increases the board to seven . nsubj(increases_VBZ_1_3, He_PRP_0_0); dobj(increases_VBZ_1_3, board_NN_3_17); prep(increases_VBZ_1_3, to_TO_4_23); punct(increases_VBZ_1_3, ._._6_32); det(board_NN_3_17, the_DT_2_13); pobj(to_TO_4_23, seven_CD_5_26) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.4162219032464996 0.0444 528 0.7478753541076487 (tank-killer teams; armed with; the newly-arrived 3.5-inch rocket launchers) false false His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.41609808530031317 0.7345 528 0.7468175388967468 (Jr.; linked Senator Panfilo Lacson to; the February 6) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.4151964978696182 0.0065 528 0.7457627118644068 (Browning; wrote at; Auschwitz) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.4133688412944222 0.111 529 0.7461212976022567 (paper cups; be based in; Kenton) false false Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4133688412944222 0.111 530 0.7464788732394366 (a military coup; be headed by; colonel Oscar R. Benavides , Javier and Manuel Prado) false false Guillermo Billinghurst was overthrown on February 4 , 1914 , in a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado , and conservatives members of the Civilista Party . nn(Billinghurst_NNP_1_10, Guillermo_NNP_0_0); nsubjpass(overthrown_VBN_3_27, Billinghurst_NNP_1_10); auxpass(overthrown_VBN_3_27, was_VBD_2_23); prep(overthrown_VBN_3_27, on_IN_4_38); punct(overthrown_VBN_3_27, ,_,_9_59); prep(overthrown_VBN_3_27, in_IN_10_61); punct(overthrown_VBN_3_27, ,_,_25_143); cc(overthrown_VBN_3_27, and_CC_26_145); conj(overthrown_VBN_3_27, members_NNS_28_163); punct(overthrown_VBN_3_27, ._._33_194); pobj(on_IN_4_38, February_NNP_5_41); num(February_NNP_5_41, 4_CD_6_50); punct(February_NNP_5_41, ,_,_7_52); num(February_NNP_5_41, 1914_CD_8_54); pobj(in_IN_10_61, coup_NN_13_75); det(coup_NN_13_75, a_DT_11_64); amod(coup_NN_13_75, military_JJ_12_66); partmod(coup_NN_13_75, headed_VBN_14_80); prep(headed_VBN_14_80, by_IN_15_87); pobj(by_IN_15_87, Benavides_NNP_19_107); nn(Benavides_NNP_19_107, colonel_NN_16_90); nn(Benavides_NNP_19_107, Oscar_NNP_17_98); nn(Benavides_NNP_19_107, R._NNP_18_104); punct(Benavides_NNP_19_107, ,_,_20_117); conj(Benavides_NNP_19_107, Javier_NNP_21_119); cc(Benavides_NNP_19_107, and_CC_22_126); conj(Benavides_NNP_19_107, Prado_NNP_24_137); nn(Prado_NNP_24_137, Manuel_NNP_23_130); nn(members_NNS_28_163, conservatives_NNS_27_149); prep(members_NNS_28_163, of_IN_29_171); pobj(of_IN_29_171, Party_NNP_32_188); det(Party_NNP_32_188, the_DT_30_174); nn(Party_NNP_32_188, Civilista_NNP_31_178) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4129968064278692 0.0724 531 0.7468354430379747 (the average daily rate of energy consumption; is 2 to 4 times BMR for; most terrestrial animals) false false For most terrestrial animals , the average daily rate of energy consumption is 2 to 4 times BMR . pobj(For_IN_0_0, animals_NNS_3_21); amod(animals_NNS_3_21, most_JJS_1_4); amod(animals_NNS_3_21, terrestrial_JJ_2_9); det(rate_NN_8_49, the_DT_5_31); amod(rate_NN_8_49, average_JJ_6_35); amod(rate_NN_8_49, daily_JJ_7_43); prep(rate_NN_8_49, of_IN_9_54); pobj(of_IN_9_54, consumption_NN_11_64); nn(consumption_NN_11_64, energy_NN_10_57); number(times_NNS_16_86, 2_CD_13_79); dep(times_NNS_16_86, to_TO_14_81); number(times_NNS_16_86, 4_CD_15_84); prep(BMR_NNP_17_92, For_IN_0_0); punct(BMR_NNP_17_92, ,_,_4_29); nsubj(BMR_NNP_17_92, rate_NN_8_49); cop(BMR_NNP_17_92, is_VBZ_12_76); num(BMR_NNP_17_92, times_NNS_16_86); punct(BMR_NNP_17_92, ._._18_96) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.41027380476553393 0.0216 532 0.7471910112359551 (his friends , like Matsukata Masayoshi , and others; were; the rare Japanese) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0216 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.40979618501360465 0.0105 532 0.7461430575035063 (East Rock Partners; said; A.P. Green) false false East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0105 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 1 0.4088416499899885 0.111 533 0.7464985994397759 (the provision; be initially drafted by; Mr. Gray) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4083506267176189 0.0155 534 0.7468531468531469 (basketball; be played at; Davidson College) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.40834212241124346 0.0292 535 0.7472067039106145 (the Reds; were playing; the first place St . Louis Cardinals) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0292 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.407400804271439 0.1473 536 0.7475592747559274 (owners; should return; the cars)[attrib=Ford said] false true Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4067759523634959 0.0901 537 0.7479108635097493 (Kenton; be based in; Ohio) false false Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0901 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4050655320579212 0.2444 538 0.7482614742698191 (Mikhail Gorbachev 's Soviet Union; continues to supply with; bullets) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.40490090011857394 0.0961 539 0.7486111111111111 (Southern Great Plain; be region of; southern Hungary) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0961 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.4035029734186021 0.1349 540 0.7489597780859917 (owners; should return the cars to; dealers)[attrib=Ford said] false true Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.1349 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.40252443126781057 0.4031 541 0.7493074792243767 (Florio Fiorini; managing director of; Geneva-based Sasea) false false Florio Fiorini , managing director of Geneva-based Sasea , said the investors would pay only a symbolic one lira for the station , " but we have agreed to raise the capital that will enable the company to continue operating . nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.4031 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.4023693675777794 0.0444 542 0.7496542185338866 (gold; that has risen over; the past week or so) false false " I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , " he said . nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.40133867275007556 0.1349 543 0.75 (the phloem; Thus can serve a nerve-like function allowing for; swift electrical communication) false false Thus , the phloem can serve a nerve-like function , allowing for swift electrical communication between widely separated organs . det(phloem_NN_3_11, the_DT_2_7); advmod(serve_VB_5_22, Thus_RB_0_0); punct(serve_VB_5_22, ,_,_1_5); nsubj(serve_VB_5_22, phloem_NN_3_11); aux(serve_VB_5_22, can_MD_4_18); dobj(serve_VB_5_22, function_NN_8_41); punct(serve_VB_5_22, ,_,_9_50); xcomp(serve_VB_5_22, allowing_VBG_10_52); punct(serve_VB_5_22, ._._19_128); det(function_NN_8_41, a_DT_6_28); amod(function_NN_8_41, nerve-like_JJ_7_30); prep(allowing_VBG_10_52, for_IN_11_61); pobj(for_IN_11_61, communication_NN_14_82); amod(communication_NN_14_82, swift_JJ_12_65); amod(communication_NN_14_82, electrical_JJ_13_71); prep(communication_NN_14_82, between_IN_15_96); pobj(between_IN_15_96, organs_NNS_18_121); advmod(separated_VBN_17_111, widely_RB_16_104); amod(organs_NNS_18_121, separated_VBN_17_111) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.4006455591547758 0.006 543 0.7489655172413793 (he; be Years after; his marriage) false false Years after his marriage to Gemma , he met Beatrice again . prep(Years_NNS_0_0, after_IN_1_6); pobj(after_IN_1_6, marriage_NN_3_16); poss(marriage_NN_3_16, his_PRP$_2_12); prep(marriage_NN_3_16, to_TO_4_25); pobj(to_TO_4_25, Gemma_NNP_5_28); nsubj(met_VBD_8_39, Years_NNS_0_0); punct(met_VBD_8_39, ,_,_6_34); nsubj(met_VBD_8_39, he_PRP_7_36); dobj(met_VBD_8_39, Beatrice_NNP_9_43); advmod(met_VBD_8_39, again_RB_10_52); punct(met_VBD_8_39, ._._11_58) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.4006348014371212 0.1473 544 0.7493112947658402 (it; might make; a bid) false false East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.4006348014371212 0.1473 545 0.749656121045392 (Valley National , of Phoenix; to make; substantial further provisions) false false Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.40008993331478143 0.1349 546 0.75 (he; does n't believe in; the religion of Islam) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0 0.40008993331478143 0.1349 546 0.7489711934156379 (we; does n't believe in; the religion of Islam) false false He threatens us and we are all afraid of him and he does n't believe in the religion of Islam . nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1 0.39969579255083065 0.1443 547 0.7493150684931507 (Susan; phones; the real estate agency) false false After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . pobj(After_IN_0_0, Jim_NNP_1_6); prep(stops_VBZ_2_10, After_IN_0_0); ccomp(stops_VBZ_2_10, phones_VBZ_6_27); punct(stops_VBZ_2_10, ._._32_163); complm(phones_VBZ_6_27, by_IN_3_16); punct(phones_VBZ_6_27, ,_,_4_19); nsubj(phones_VBZ_6_27, Susan_NNP_5_21); dobj(phones_VBZ_6_27, agency_NN_10_50); xcomp(phones_VBZ_6_27, tell_VB_12_60); det(agency_NN_10_50, the_DT_7_34); amod(agency_NN_10_50, real_JJ_8_38); nn(agency_NN_10_50, estate_NN_9_43); aux(tell_VB_12_60, to_TO_11_57); dobj(tell_VB_12_60, Jerry_NNP_13_65); ccomp(tell_VB_12_60, looking_VBG_17_88); punct(tell_VB_12_60, ,_,_20_104); dep(tell_VB_12_60, informed_VBN_24_117); complm(looking_VBG_17_88, that_IN_14_71); nsubj(looking_VBG_17_88, someone_NN_15_76); aux(looking_VBG_17_88, was_VBD_16_84); prep(looking_VBG_17_88, for_IN_18_96); pobj(for_IN_18_96, him_PRP_19_100); advmod(informed_VBN_24_117, only_RB_21_106); aux(informed_VBN_24_117, to_TO_22_111); auxpass(informed_VBN_24_117, be_VB_23_114); ccomp(informed_VBN_24_117, quit_VBN_28_141); complm(quit_VBN_28_141, that_IN_25_126); nsubj(quit_VBN_28_141, Jerry_NNP_26_131); aux(quit_VBN_28_141, had_VBD_27_137); advmod(quit_VBN_28_141, ago_RB_31_159); amod(days_NNS_30_154, several_JJ_29_146); dep(ago_RB_31_159, days_NNS_30_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.39952304890617457 0.0393 547 0.7482900136798906 (1944 the squadron; was operating by; January 27) false false By January 27 , 1944 the squadron was operating from an airfield at Cape Torokina on Bougainville and from here the squadron began taking part in the air strikes against the Japanese garrison at Rabaul , the Japanese naval base at Kavieng , New Ireland and against Japanese shipping near the Bismarck Archipelago . pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.39952304890617457 0.0393 548 0.7486338797814208 (the Reds; were playing the first place St . Louis Cardinals on; June 10) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0393 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.39927338255682643 0.0066 549 0.7489768076398363 (Cleveland Indians; be an outfielder for; the Milwaukee Braves) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.39927338255682643 0.0066 549 0.7479564032697548 (Houston Astros; be an outfielder for; the Milwaukee Braves) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.39927338255682643 0.0066 549 0.746938775510204 (Washington Senators; be an outfielder for; the Milwaukee Braves) false false He played eleven seasons in the majors as an outfielder for the Milwaukee Braves , Houston Astros , Cleveland Indians , Washington Senators , and Chicago White Sox . nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.3990343199642683 0.0724 549 0.7459239130434783 (Greatest Hits; is a Best of; compilation album) false false Greatest Hits is a Best of compilation album by Will Smith released in January 2002 on Columbia Records . nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.3965328306168747 0.1443 550 0.746268656716418 (adaptive immunity; offers; significant protection) false false Although adaptive immunity offers significant protection against a wide range of pathogens , it is not fail-safe . amod(immunity_NN_2_18, adaptive_JJ_1_9); mark(offers_VBZ_3_27, Although_IN_0_0); nsubj(offers_VBZ_3_27, immunity_NN_2_18); dobj(offers_VBZ_3_27, protection_NN_5_46); prep(offers_VBZ_3_27, against_IN_6_57); amod(protection_NN_5_46, significant_JJ_4_34); pobj(against_IN_6_57, range_NN_9_72); det(range_NN_9_72, a_DT_7_65); amod(range_NN_9_72, wide_JJ_8_67); prep(range_NN_9_72, of_IN_10_78); pobj(of_IN_10_78, pathogens_NNS_11_81); advcl(fail-safe_JJ_16_103, offers_VBZ_3_27); punct(fail-safe_JJ_16_103, ,_,_12_91); nsubj(fail-safe_JJ_16_103, it_PRP_13_93); cop(fail-safe_JJ_16_103, is_VBZ_14_96); neg(fail-safe_JJ_16_103, not_RB_15_99); punct(fail-safe_JJ_16_103, ._._17_113) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3945868140188066 0.0195 551 0.7466124661246613 (Rome; to rule; the Greek cities) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.3944159741652931 0.0132 552 0.7469553450608931 (a woman 's risk of abnormal blood clotting; be slightly raise among; nonsmokers) false false Among nonsmokers , birth control pills slightly raise a woman 's risk of abnormal blood clotting , high blood pressure , heart attack , and stroke . pobj(Among_IN_0_0, nonsmokers_NNS_1_6); nn(pills_NNS_5_33, birth_NN_3_19); nn(pills_NNS_5_33, control_NN_4_25); prep(raise_VB_7_48, Among_IN_0_0); punct(raise_VB_7_48, ,_,_2_17); nsubj(raise_VB_7_48, pills_NNS_5_33); advmod(raise_VB_7_48, slightly_RB_6_39); dobj(raise_VB_7_48, risk_NN_11_65); det(woman_NN_9_56, a_DT_8_54); possessive(woman_NN_9_56, 's_POS_10_62); poss(risk_NN_11_65, woman_NN_9_56); prep(risk_NN_11_65, of_IN_12_70); pobj(of_IN_12_70, clotting_NN_15_88); amod(clotting_NN_15_88, abnormal_JJ_13_73); nn(clotting_NN_15_88, blood_NN_14_82); advcl(pressure_NN_19_110, raise_VB_7_48); punct(pressure_NN_19_110, ,_,_16_97); amod(pressure_NN_19_110, high_JJ_17_99); nn(pressure_NN_19_110, blood_NN_18_104); punct(pressure_NN_19_110, ,_,_20_119); conj(pressure_NN_19_110, attack_NN_22_127); punct(pressure_NN_19_110, ,_,_23_134); cc(pressure_NN_19_110, and_CC_24_136); conj(pressure_NN_19_110, stroke_NN_25_140); punct(pressure_NN_19_110, ._._26_147); nn(attack_NN_22_127, heart_NN_21_121) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3944159741652931 0.0132 552 0.745945945945946 (a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year; would be receive in; the second year) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3936969721212025 0.0079 553 0.7462887989203779 (his illegitimate daughter Euphrosyne; be marrying to; Nogai Khan of the Golden Horde) false false Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . nn(VIII_NNP_1_8, Michael_NNP_0_0); nsubj(struck_VBD_2_13, VIII_NNP_1_8); advmod(struck_VBD_2_13, back_RB_3_20); punct(struck_VBD_2_13, ,_,_4_25); prep(struck_VBD_2_13, by_IN_5_27); punct(struck_VBD_2_13, ._._28_162); pcomp(by_IN_5_27, marrying_VBG_6_30); dobj(marrying_VBG_6_30, Euphrosyne_NNP_10_65); prep(marrying_VBG_6_30, to_TO_11_76); poss(Euphrosyne_NNP_10_65, his_PRP$_7_39); amod(Euphrosyne_NNP_10_65, illegitimate_JJ_8_43); nn(Euphrosyne_NNP_10_65, daughter_NN_9_56); pobj(to_TO_11_76, Khan_NNP_13_85); nn(Khan_NNP_13_85, Nogai_NNP_12_79); prep(Khan_NNP_13_85, of_IN_14_90); punct(Khan_NNP_13_85, ,_,_18_110); rcmod(Khan_NNP_13_85, pillaged_VBD_20_116); pobj(of_IN_14_90, Horde_NNP_17_104); det(Horde_NNP_17_104, the_DT_15_93); nn(Horde_NNP_17_104, Golden_NNP_16_97); nsubj(pillaged_VBD_20_116, who_WP_19_112); dobj(pillaged_VBD_20_116, Bulgaria_NNP_21_125); prep(pillaged_VBD_20_116, as_IN_22_134); pobj(as_IN_22_134, ally_NN_25_149); det(ally_NN_25_149, a_DT_23_137); amod(ally_NN_25_149, Byzantine_JJ_24_139); prep(ally_NN_25_149, in_IN_26_154); pobj(in_IN_26_154, 1274_CD_27_157) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0079 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3936459870303665 0.7345 553 0.7452830188679245 (Mr. Miller; said in; response) false false In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.39325594190296304 0.0084 554 0.7456258411843876 (Mrs. Coleman; is; the Maidenform strategist) false false Mrs. Coleman , 73 , who declined to be interviewed , is the Maidenform strategist . nn(Coleman_NNP_1_5, Mrs._NNP_0_0); punct(Coleman_NNP_1_5, ,_,_2_13); appos(Coleman_NNP_1_5, 73_CD_3_15); punct(Coleman_NNP_1_5, ,_,_4_18); rcmod(Coleman_NNP_1_5, declined_VBD_6_24); punct(Coleman_NNP_1_5, ,_,_10_51); nsubj(declined_VBD_6_24, who_WP_5_20); xcomp(declined_VBD_6_24, interviewed_VBN_9_39); aux(interviewed_VBN_9_39, to_TO_7_33); auxpass(interviewed_VBN_9_39, be_VB_8_36); nsubj(strategist_NN_14_71, Coleman_NNP_1_5); cop(strategist_NN_14_71, is_VBZ_11_53); det(strategist_NN_14_71, the_DT_12_56); nn(strategist_NN_14_71, Maidenform_NNP_13_60); punct(strategist_NN_14_71, ._._15_82) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.39302843067752957 1.0 554 0.7446236559139785 (its common stock dividend; be reinstated at; a " modest level) false false CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a " modest level " later this year . nn(Corp._NNP_2_11, CMS_NNP_0_0); nn(Corp._NNP_2_11, ENERGY_NNP_1_4); nsubj(said_VBD_3_17, Corp._NNP_2_11); ccomp(said_VBD_3_17, recommend_VB_6_39); punct(said_VBD_3_17, ._._27_151); nsubj(recommend_VB_6_39, management_NN_4_22); aux(recommend_VB_6_39, would_MD_5_33); prep(recommend_VB_6_39, to_TO_7_49); tmod(recommend_VB_6_39, today_NN_10_62); ccomp(recommend_VB_6_39, reinstated_VBN_17_102); pobj(to_TO_7_49, board_NN_9_56); poss(board_NN_9_56, its_PRP$_8_52); poss(dividend_NN_15_90, its_PRP$_12_73); amod(dividend_NN_15_90, common_JJ_13_77); nn(dividend_NN_15_90, stock_NN_14_84); complm(reinstated_VBN_17_102, that_IN_11_68); nsubjpass(reinstated_VBN_17_102, dividend_NN_15_90); auxpass(reinstated_VBN_17_102, be_VB_16_99); prep(reinstated_VBN_17_102, at_IN_18_113); tmod(reinstated_VBN_17_102, year_NN_26_146); pobj(at_IN_18_113, level_NN_22_127); det(level_NN_22_127, a_DT_19_116); punct(level_NN_22_127, "_``_20_118); amod(level_NN_22_127, modest_JJ_21_120); punct(level_NN_22_127, "_''_23_133); advmod(year_NN_26_146, later_RB_24_135); det(year_NN_26_146, this_DT_25_141) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0 0.3923860388041124 0.0066 554 0.7436241610738255 (consciousness; be the study of; human cognition) false false Functional brain imaging has been applied to the study of human cognition , consciousness , and emotion . amod(imaging_NN_2_17, Functional_JJ_0_0); nn(imaging_NN_2_17, brain_NN_1_11); nsubj(applied_VBN_5_34, imaging_NN_2_17); aux(applied_VBN_5_34, has_VBZ_3_25); auxpass(applied_VBN_5_34, been_VBN_4_29); prep(applied_VBN_5_34, to_TO_6_42); punct(applied_VBN_5_34, ,_,_14_90); cc(applied_VBN_5_34, and_CC_15_92); conj(applied_VBN_5_34, emotion_NN_16_96); punct(applied_VBN_5_34, ._._17_104); pobj(to_TO_6_42, study_NN_8_49); det(study_NN_8_49, the_DT_7_45); prep(study_NN_8_49, of_IN_9_55); pobj(of_IN_9_55, cognition_NN_11_64); amod(cognition_NN_11_64, human_JJ_10_58); punct(cognition_NN_11_64, ,_,_12_74); conj(cognition_NN_11_64, consciousness_NN_13_76) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.3923860388041124 0.0066 554 0.7426273458445041 (rivers; be the waters of; streams) false false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.39181989041263826 0.0103 555 0.7429718875502008 (a large group of interacting genes and gene products; are analyzed together in; systems biology) false false The Cancer Genome Atlas is another example of systems biology in which a large group of interacting genes and gene products are analyzed together . det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0103 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.39166472230122723 0.02 556 0.7433155080213903 (Cheat " and " Drunk Girl; leaked in; November 2007) false false The song has two demo working titles : " Cheat " and " Drunk Girl " , which leaked on the internet in November 2007 . det(song_NN_1_4, The_DT_0_0); nsubj(has_VBZ_2_9, song_NN_1_4); dobj(has_VBZ_2_9, titles_NNS_6_30); punct(has_VBZ_2_9, :_:_7_37); punct(has_VBZ_2_9, "_``_8_39); dep(has_VBZ_2_9, Cheat_VB_9_41); punct(has_VBZ_2_9, ._._25_116); num(demo_NN_4_17, two_CD_3_13); nn(titles_NNS_6_30, demo_NN_4_17); amod(titles_NNS_6_30, working_VBG_5_22); punct(Cheat_VB_9_41, "_''_10_47); cc(Cheat_VB_9_41, and_CC_11_49); conj(Cheat_VB_9_41, Girl_NNP_14_61); punct(Girl_NNP_14_61, "_``_12_53); nn(Girl_NNP_14_61, Drunk_NNP_13_55); punct(Girl_NNP_14_61, "_''_15_66); punct(Girl_NNP_14_61, ,_,_16_68); rcmod(Girl_NNP_14_61, leaked_VBD_18_76); nsubj(leaked_VBD_18_76, which_WDT_17_70); prep(leaked_VBD_18_76, on_IN_19_83); prep(leaked_VBD_18_76, in_IN_22_99); pobj(on_IN_19_83, internet_NN_21_90); det(internet_NN_21_90, the_DT_20_86); pobj(in_IN_22_99, November_NNP_23_102); num(November_NNP_23_102, 2007_CD_24_111) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0 0.390970927896387 0.1443 556 0.7423230974632844 (it; expects to make; substantial further provisions)[attrib=Moody said] false true Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.39082254617266304 0.111 557 0.7426666666666667 (its efforts; be begun in; 1989) false false The group 's Mark Cahoon says its efforts begun in 1989 have led to the introduction of bills in Massachusetts , Minnesota and Colorado to establish evenhanded procedures affecting all kinds of taxpayers . det(group_NN_1_4, The_DT_0_0); possessive(group_NN_1_4, 's_POS_2_10); poss(Cahoon_NNP_4_18, group_NN_1_4); nn(Cahoon_NNP_4_18, Mark_NNP_3_13); nsubj(says_VBZ_5_25, Cahoon_NNP_4_18); ccomp(says_VBZ_5_25, led_VBN_12_61); punct(says_VBZ_5_25, ._._33_204); poss(efforts_NNS_7_34, its_PRP$_6_30); partmod(efforts_NNS_7_34, begun_VBN_8_42); prep(begun_VBN_8_42, in_IN_9_48); pobj(in_IN_9_48, 1989_CD_10_51); nsubj(led_VBN_12_61, efforts_NNS_7_34); aux(led_VBN_12_61, have_VBP_11_56); prep(led_VBN_12_61, to_TO_13_65); pobj(to_TO_13_65, introduction_NN_15_72); det(introduction_NN_15_72, the_DT_14_68); prep(introduction_NN_15_72, of_IN_16_85); prep(introduction_NN_15_72, in_IN_18_94); infmod(introduction_NN_15_72, establish_VB_25_139); pobj(of_IN_16_85, bills_NNS_17_88); pobj(in_IN_18_94, Massachusetts_NNP_19_97); punct(Massachusetts_NNP_19_97, ,_,_20_111); conj(Massachusetts_NNP_19_97, Minnesota_NNP_21_113); cc(Massachusetts_NNP_19_97, and_CC_22_123); conj(Massachusetts_NNP_19_97, Colorado_NNP_23_127); aux(establish_VB_25_139, to_TO_24_136); dobj(establish_VB_25_139, procedures_NNS_27_160); amod(procedures_NNS_27_160, evenhanded_JJ_26_149); partmod(procedures_NNS_27_160, affecting_VBG_28_171); dobj(affecting_VBG_28_171, kinds_NNS_30_185); det(kinds_NNS_30_185, all_DT_29_181); prep(kinds_NNS_30_185, of_IN_31_191); pobj(of_IN_31_191, taxpayers_NNS_32_194) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 1 0.39069246686877734 0.2444 558 0.7430093209054593 (it; is n't for; sale) false false East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.3898706420134547 0.036 558 0.7420212765957447 (Omaha; be the north end in; Nebraska) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.036 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.38974162820825553 0.0079 559 0.7423638778220452 (the first place St . Louis Cardinals; were playing on; June 10) false false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3873449532161556 0.0109 560 0.7427055702917772 (DeGol Brothers Lumber; be chairman of; Gallitzin) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.38668316487931237 0.006 560 0.7417218543046358 (They; be a large amount of; an oxygen-storing protein) false false Such fibers are specialized in ways that enable them to make use of a steady energy supply : They have many mitochondria , a rich blood supply , and a large amount of an oxygen-storing protein called myoglobin . amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.3861158442151012 0.0478 561 0.7420634920634921 (Mr. Allday 's appointment; is subject to; confirmation) false false Mr. Allday 's appointment is subject to confirmation by the Senate . nn(Allday_NNP_1_4, Mr._NNP_0_0); possessive(Allday_NNP_1_4, 's_POS_2_11); poss(appointment_NN_3_14, Allday_NNP_1_4); nsubj(subject_JJ_5_29, appointment_NN_3_14); cop(subject_JJ_5_29, is_VBZ_4_26); prep(subject_JJ_5_29, to_TO_6_37); punct(subject_JJ_5_29, ._._11_67); pobj(to_TO_6_37, confirmation_NN_7_40); prep(confirmation_NN_7_40, by_IN_8_53); pobj(by_IN_8_53, Senate_NNP_10_60); det(Senate_NNP_10_60, the_DT_9_56) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.3849025796350723 0.1349 561 0.7410832232496698 (it; would take Ford at; the current sales pace) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3836729620561133 0.0132 562 0.741424802110818 (them; be keep in; office) false false They merely collect campaign contributions from developers that help keep them in office . nsubj(collect_VBP_2_12, They_PRP_0_0); advmod(collect_VBP_2_12, merely_RB_1_5); dobj(collect_VBP_2_12, contributions_NNS_4_29); prep(collect_VBP_2_12, from_IN_5_43); punct(collect_VBP_2_12, ._._13_89); nn(contributions_NNS_4_29, campaign_NN_3_20); pobj(from_IN_5_43, developers_NNS_6_48); rcmod(developers_NNS_6_48, help_VBP_8_64); nsubj(help_VBP_8_64, that_WDT_7_59); ccomp(help_VBP_8_64, keep_VB_9_69); dobj(keep_VB_9_69, them_PRP_10_74); prep(keep_VB_9_69, in_IN_11_79); pobj(in_IN_11_79, office_NN_12_82) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0 0.382632280799396 0.1349 562 0.7404479578392622 (a freely mating population; will give rise over; many generations) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.38211366497419724 0.0109 563 0.7407894736842106 (Thurston County; be eleven townships in; United States) false false Dawes Township is one of eleven townships in Thurston County , Nebraska , United States . nn(Township_NNP_1_6, Dawes_NNP_0_0); nsubj(one_CD_3_18, Township_NNP_1_6); cop(one_CD_3_18, is_VBZ_2_15); prep(one_CD_3_18, of_IN_4_22); punct(one_CD_3_18, ._._15_88); pobj(of_IN_4_22, townships_NNS_6_32); num(townships_NNS_6_32, eleven_CD_5_25); prep(townships_NNS_6_32, in_IN_7_42); pobj(in_IN_7_42, County_NNP_9_54); nn(County_NNP_9_54, Thurston_NNP_8_45); punct(County_NNP_9_54, ,_,_10_61); conj(County_NNP_9_54, Nebraska_NNP_11_63); punct(County_NNP_9_54, ,_,_12_72); appos(County_NNP_9_54, States_NNP_14_81); nn(States_NNP_14_81, United_NNP_13_74) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.38211366497419724 0.0109 564 0.7411300919842313 (Hualien City; is a township near; Taiwan) false false Ji-an , Hualien , is a township near Hualien City , Taiwan . punct(Ji-an_NNP_0_0, ,_,_1_6); appos(Ji-an_NNP_0_0, Hualien_NNP_2_8); punct(Ji-an_NNP_0_0, ,_,_3_16); nsubj(township_NN_6_23, Ji-an_NNP_0_0); cop(township_NN_6_23, is_VBZ_4_18); det(township_NN_6_23, a_DT_5_21); prep(township_NN_6_23, near_IN_7_32); punct(township_NN_6_23, ._._12_59); pobj(near_IN_7_32, City_NNP_9_45); nn(City_NNP_9_45, Hualien_NNP_8_37); punct(City_NNP_9_45, ,_,_10_50); appos(City_NNP_9_45, Taiwan_NNP_11_52) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.38211366497419724 0.0109 565 0.7414698162729659 (Custer County; be thirty-one townships in; United States) false false Spring Creek Township is one of thirty-one townships in Custer County , Nebraska , United States . nn(Township_NNP_2_13, Spring_NNP_0_0); nn(Township_NNP_2_13, Creek_NNP_1_7); nsubj(one_CD_4_25, Township_NNP_2_13); cop(one_CD_4_25, is_VBZ_3_22); prep(one_CD_4_25, of_IN_5_29); punct(one_CD_4_25, ._._16_97); pobj(of_IN_5_29, townships_NNS_7_43); amod(townships_NNS_7_43, thirty-one_JJ_6_32); prep(townships_NNS_7_43, in_IN_8_53); pobj(in_IN_8_53, County_NNP_10_63); nn(County_NNP_10_63, Custer_NNP_9_56); punct(County_NNP_10_63, ,_,_11_70); conj(County_NNP_10_63, Nebraska_NNP_12_72); punct(County_NNP_10_63, ,_,_13_81); appos(County_NNP_10_63, States_NNP_15_90); nn(States_NNP_15_90, United_NNP_14_83) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.38211366497419724 0.0109 565 0.7404980340760158 (Atlanta; is a Queen Anne style house in; Georgia) false false The Edward C. Peters House , also known as Ivy Hall , is a Queen Anne style house in Atlanta , Georgia . det(House_NNP_4_21, The_DT_0_0); nn(House_NNP_4_21, Edward_NNP_1_4); nn(House_NNP_4_21, C._NNP_2_11); nn(House_NNP_4_21, Peters_NNP_3_14); punct(House_NNP_4_21, ,_,_5_27); nsubjpass(known_VBN_7_34, House_NNP_4_21); advmod(known_VBN_7_34, also_RB_6_29); prep(known_VBN_7_34, as_IN_8_40); parataxis(known_VBN_7_34, house_NN_17_76); punct(known_VBN_7_34, ._._22_102); pobj(as_IN_8_40, Hall_NNP_10_47); nn(Hall_NNP_10_47, Ivy_NNP_9_43); punct(house_NN_17_76, ,_,_11_52); cop(house_NN_17_76, is_VBZ_12_54); det(house_NN_17_76, a_DT_13_57); nn(house_NN_17_76, Queen_NNP_14_59); nn(house_NN_17_76, Anne_NNP_15_65); nn(house_NN_17_76, style_NN_16_70); prep(house_NN_17_76, in_IN_18_82); pobj(in_IN_18_82, Atlanta_NNP_19_85); punct(Atlanta_NNP_19_85, ,_,_20_92); appos(Atlanta_NNP_19_85, Georgia_NNP_21_94) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.38100591900063385 0.0073 566 0.7408376963350786 (the fiscal third quarter; be ended in; Aug. 31) false false Interspec Inc. reported a net loss of $ 2.4 million for the fiscal third quarter ended Aug. 31 . nn(Inc._NNP_1_10, Interspec_NNP_0_0); nsubj(reported_VBD_2_15, Inc._NNP_1_10); dobj(reported_VBD_2_15, loss_NN_5_30); punct(reported_VBD_2_15, ._._18_95); det(loss_NN_5_30, a_DT_3_24); amod(loss_NN_5_30, net_JJ_4_26); prep(loss_NN_5_30, of_IN_6_35); prep(loss_NN_5_30, for_IN_10_52); pobj(of_IN_6_35, $_$_7_38); number($_$_7_38, 2.4_CD_8_40); number($_$_7_38, million_CD_9_44); pobj(for_IN_10_52, quarter_NN_14_73); det(quarter_NN_14_73, the_DT_11_56); amod(quarter_NN_14_73, fiscal_JJ_12_60); amod(quarter_NN_14_73, third_JJ_13_67); partmod(quarter_NN_14_73, ended_VBN_15_81); tmod(ended_VBN_15_81, Aug._NNP_16_87); num(Aug._NNP_16_87, 31_CD_17_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0073 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.380341261132203 0.0125 567 0.7411764705882353 (the subcellular structure; interacts directly with; stimuli) false false The term sensory receptor is used to describe a sensory cell or organ , as well as the subcellular structure that interacts directly with stimuli . det(receptor_NN_3_17, The_DT_0_0); nn(receptor_NN_3_17, term_NN_1_4); amod(receptor_NN_3_17, sensory_JJ_2_9); nsubjpass(used_VBN_5_29, receptor_NN_3_17); auxpass(used_VBN_5_29, is_VBZ_4_26); purpcl(used_VBN_5_29, describe_VB_7_37); punct(used_VBN_5_29, ,_,_13_70); cc(used_VBN_5_29, well_RB_15_75); dobj(used_VBN_5_29, structure_NN_19_99); punct(used_VBN_5_29, ._._25_146); aux(describe_VB_7_37, to_TO_6_34); dobj(describe_VB_7_37, cell_NN_10_56); det(cell_NN_10_56, a_DT_8_46); amod(cell_NN_10_56, sensory_JJ_9_48); cc(cell_NN_10_56, or_CC_11_61); conj(cell_NN_10_56, organ_NN_12_64); dep(well_RB_15_75, as_RB_14_72); dep(well_RB_15_75, as_IN_16_80); det(structure_NN_19_99, the_DT_17_83); amod(structure_NN_19_99, subcellular_JJ_18_87); rcmod(structure_NN_19_99, interacts_VBZ_21_114); nsubj(interacts_VBZ_21_114, that_WDT_20_109); advmod(interacts_VBZ_21_114, directly_RB_22_124); prep(interacts_VBZ_21_114, with_IN_23_133); pobj(with_IN_23_133, stimuli_NNS_24_138) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0125 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.3770735952807681 0.0155 568 0.741514360313316 (three tackles; be had on; December 10) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3769946758038716 0.0065 569 0.741851368970013 (Another historian; wrote on; the evidence) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0 0.37680754998492677 0.1473 569 0.7408854166666666 (they; gain; most of their heat) false false In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0 0.3761159172154244 0.0057 569 0.7399219765929779 (it; be a bid for; the company) false false East Rock Partners , which has indicated it might make a bid for the company , said A.P. Green , a refractory products maker , told the partnership it is n't for sale . nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0057 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3750804465207591 0.0119 569 0.7389610389610389 (He; be his move to; Premier League side Fulham) false false He completed his move to Premier League side Fulham on 4 June 2008 , on a two-year deal , for an undisclosed fee . nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.3742486199402444 0.1443 570 0.7392996108949417 (this approach called reverse genetics; poses; a new challenge) false false But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . det(approach_NN_2_9, this_DT_1_4); punct(approach_NN_2_9, ,_,_3_18); partmod(approach_NN_2_9, called_VBN_4_20); punct(approach_NN_2_9, ,_,_7_44); dep(called_VBN_4_20, genetics_NNS_6_35); nn(genetics_NNS_6_35, reverse_NN_5_27); cc(poses_VBZ_8_46, But_CC_0_0); nsubj(poses_VBZ_8_46, approach_NN_2_9); dobj(poses_VBZ_8_46, challenge_NN_11_58); punct(poses_VBZ_8_46, ._._19_114); det(challenge_NN_11_58, a_DT_9_52); amod(challenge_NN_11_58, new_JJ_10_54); punct(challenge_NN_11_58, :_:_12_68); dep(challenge_NN_11_58, determining_VBG_13_70); dobj(determining_VBG_13_70, phenotype_NN_15_86); prep(determining_VBG_13_70, from_IN_16_96); det(phenotype_NN_15_86, the_DT_14_82); pobj(from_IN_16_96, genotype_NN_18_105); det(genotype_NN_18_105, the_DT_17_101) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.3740112786844178 0.0084 571 0.7396373056994818 (Ji-an; is; a township) false false Ji-an , Hualien , is a township near Hualien City , Taiwan . punct(Ji-an_NNP_0_0, ,_,_1_6); appos(Ji-an_NNP_0_0, Hualien_NNP_2_8); punct(Ji-an_NNP_0_0, ,_,_3_16); nsubj(township_NN_6_23, Ji-an_NNP_0_0); cop(township_NN_6_23, is_VBZ_4_18); det(township_NN_6_23, a_DT_5_21); prep(township_NN_6_23, near_IN_7_32); punct(township_NN_6_23, ._._12_59); pobj(near_IN_7_32, City_NNP_9_45); nn(City_NNP_9_45, Hualien_NNP_8_37); punct(City_NNP_9_45, ,_,_10_50); appos(City_NNP_9_45, Taiwan_NNP_11_52) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.3740112786844178 0.0084 572 0.7399741267787839 (Lakitelek; is; a large village) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.3740112786844178 0.0084 573 0.7403100775193798 (Lorenzo R. Stone House; is; a historic house) false false Lorenzo R. Stone House is a historic house at 218 South Street in Southbridge , Massachusetts . nn(House_NNP_3_17, Lorenzo_NNP_0_0); nn(House_NNP_3_17, R._NNP_1_8); nn(House_NNP_3_17, Stone_NNP_2_11); nsubj(house_NN_7_37, House_NNP_3_17); cop(house_NN_7_37, is_VBZ_4_23); det(house_NN_7_37, a_DT_5_26); amod(house_NN_7_37, historic_JJ_6_28); prep(house_NN_7_37, at_IN_8_43); punct(house_NN_7_37, ._._16_94); pobj(at_IN_8_43, Street_NNP_11_56); num(Street_NNP_11_56, 218_CD_9_46); nn(Street_NNP_11_56, South_NNP_10_50); prep(Street_NNP_11_56, in_IN_12_63); pobj(in_IN_12_63, Southbridge_NNP_13_66); punct(Southbridge_NNP_13_66, ,_,_14_78); appos(Southbridge_NNP_13_66, Massachusetts_NNP_15_80) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.3740112786844178 0.0084 573 0.7393548387096774 (Mr. Allday 's appointment; is; subject) false false Mr. Allday 's appointment is subject to confirmation by the Senate . nn(Allday_NNP_1_4, Mr._NNP_0_0); possessive(Allday_NNP_1_4, 's_POS_2_11); poss(appointment_NN_3_14, Allday_NNP_1_4); nsubj(subject_JJ_5_29, appointment_NN_3_14); cop(subject_JJ_5_29, is_VBZ_4_26); prep(subject_JJ_5_29, to_TO_6_37); punct(subject_JJ_5_29, ._._11_67); pobj(to_TO_6_37, confirmation_NN_7_40); prep(confirmation_NN_7_40, by_IN_8_53); pobj(by_IN_8_53, Senate_NNP_10_60); det(Senate_NNP_10_60, the_DT_9_56) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.3740112786844178 0.0084 574 0.7396907216494846 (North Luffenham; is; a village) false false North Luffenham is a village in Rutland , in the East Midlands of England . nn(Luffenham_NNP_1_6, North_NNP_0_0); nsubj(village_NN_4_21, Luffenham_NNP_1_6); cop(village_NN_4_21, is_VBZ_2_16); det(village_NN_4_21, a_DT_3_19); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_7_40); prep(village_NN_4_21, in_IN_8_42); punct(village_NN_4_21, ._._14_74); pobj(in_IN_5_29, Rutland_NNP_6_32); pobj(in_IN_8_42, Midlands_NNP_11_54); det(Midlands_NNP_11_54, the_DT_9_45); nn(Midlands_NNP_11_54, East_NNP_10_49); prep(Midlands_NNP_11_54, of_IN_12_63); pobj(of_IN_12_63, England_NNP_13_66) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.3740112786844178 0.0084 575 0.7400257400257401 (Plouzani; is; a commune) false false Plouzani is a commune in the Finistre department in Bretagne in northwestern France . nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.37259542692146636 0.0079 575 0.7390745501285347 (Vasques; be playing in; Tis Pity) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.37259542692146636 0.0079 576 0.7394094993581515 (quarterback Tom Brady; be tackling for; a five-yard loss) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3714964425578336 0.2444 577 0.7397435897435898 (Lucian; continues to; brood) false false Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.3711724206753627 0.1349 578 0.7400768245838668 (they; gain most of their heat from; external sources) false false In contrast , amphibians , lizards , snakes , turtles , many fishes , and most invertebrates are mainly ectothermic , meaning that they gain most of their heat from external sources . pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.3698868169915362 0.2444 579 0.7404092071611253 (it; continues to suffer from; the high cost carrying nonperforming assets)[attrib=Moody said] false true Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.2444 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.36984747554522823 0.3797 580 0.7407407407407407 (Browning; wrote; a report) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1 0.3684196799499456 0.2444 581 0.7410714285714286 (the root; depends on; the shoot) false false Root apical meristems also produce auxin , although the root depends on the shoot for much of its auxin . nn(meristems_NNS_2_12, Root_NNP_0_0); amod(meristems_NNS_2_12, apical_JJ_1_5); nsubj(produce_VBP_4_27, meristems_NNS_2_12); advmod(produce_VBP_4_27, also_RB_3_22); dobj(produce_VBP_4_27, auxin_NN_5_35); punct(produce_VBP_4_27, ,_,_6_41); advcl(produce_VBP_4_27, depends_VBZ_10_61); punct(produce_VBP_4_27, ._._19_104); det(root_NN_9_56, the_DT_8_52); mark(depends_VBZ_10_61, although_IN_7_43); nsubj(depends_VBZ_10_61, root_NN_9_56); prep(depends_VBZ_10_61, on_IN_11_69); pobj(on_IN_11_69, shoot_NN_13_76); det(shoot_NN_13_76, the_DT_12_72); prep(shoot_NN_13_76, for_IN_14_82); pobj(for_IN_14_82, much_JJ_15_86); prep(much_JJ_15_86, of_IN_16_91); pobj(of_IN_16_91, auxin_NN_18_98); poss(auxin_NN_18_98, its_PRP$_17_94) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.2444 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.3659601870463054 0.0132 582 0.7414012738853503 (the cars; should be return to; dealers)[attrib=Ford said] false true Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3641362963184191 0.111 583 0.7417302798982188 (lambda; be written with; the Greek letter) false false A temperate phage called lambda , written with the Greek letter , is widely used in biological research . det(phage_NN_2_12, A_DT_0_0); amod(phage_NN_2_12, temperate_JJ_1_2); nsubj(called_VBD_3_18, phage_NN_2_12); dobj(called_VBD_3_18, lambda_NN_4_25); parataxis(called_VBD_3_18, used_VBN_14_77); punct(called_VBD_3_18, ._._18_105); punct(lambda_NN_4_25, ,_,_5_32); partmod(lambda_NN_4_25, written_VBN_6_34); prep(written_VBN_6_34, with_IN_7_42); pobj(with_IN_7_42, letter_NN_10_57); det(letter_NN_10_57, the_DT_8_47); nn(letter_NN_10_57, Greek_NNP_9_51); punct(used_VBN_14_77, ,_,_11_65); auxpass(used_VBN_14_77, is_VBZ_12_67); advmod(used_VBN_14_77, widely_RB_13_70); prep(used_VBN_14_77, in_IN_15_82); pobj(in_IN_15_82, research_NN_17_96); amod(research_NN_17_96, biological_JJ_16_85) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.3638125708664116 0.0314 583 0.7407878017789072 (the Berlin Wall; was the escape route of; 57 people) false false During his time as a student in Berlin , he was involved in the building of the 145 m long " Tunnel 57 " below the Berlin Wall , which was the escape route of 57 people from East Berlin to the West . pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0314 0.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.36344528815769384 0.0071 583 0.7398477157360406 (first; be seen in; 1665)[enabler=as he looked through a microscope at dead cells from the bark of an oak tree] true false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0071 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.3623222159183762 0.0227 584 0.7401774397972116 (Dean; be armed with; the newly-arrived 3.5-inch rocket launchers) false false His regiments had been decimated in earlier fighting , but Dean personally led tank-killer teams armed with the newly-arrived 3.5-inch rocket launchers to destroy the attacking North Korean T - 34 tanks . poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0227 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3620520294261897 0.0478 584 0.739240506329114 (Ciba-Geigy and Chiron; are successful with; their lower bid) false false The university implied that it would drop its opposition to foreign ownership if Ciba-Geigy and Chiron are successful with their lower bid . det(university_NN_1_4, The_DT_0_0); nsubj(implied_VBD_2_15, university_NN_1_4); ccomp(implied_VBD_2_15, drop_VB_6_37); punct(implied_VBD_2_15, ._._22_139); complm(drop_VB_6_37, that_IN_3_23); nsubj(drop_VB_6_37, it_PRP_4_28); aux(drop_VB_6_37, would_MD_5_31); dobj(drop_VB_6_37, opposition_NN_8_46); advcl(drop_VB_6_37, successful_JJ_17_107); poss(opposition_NN_8_46, its_PRP$_7_42); prep(opposition_NN_8_46, to_TO_9_57); pobj(to_TO_9_57, ownership_NN_11_68); amod(ownership_NN_11_68, foreign_JJ_10_60); cc(Ciba-Geigy_NNP_13_81, and_CC_14_92); conj(Ciba-Geigy_NNP_13_81, Chiron_NNP_15_96); mark(successful_JJ_17_107, if_IN_12_78); nsubj(successful_JJ_17_107, Ciba-Geigy_NNP_13_81); cop(successful_JJ_17_107, are_VBP_16_103); prep(successful_JJ_17_107, with_IN_18_118); pobj(with_IN_18_118, bid_NN_21_135); poss(bid_NN_21_135, their_PRP$_19_123); amod(bid_NN_21_135, lower_JJR_20_129) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0478 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.36164469694171136 0.1443 585 0.7395701643489254 (the market 's strong reaction; reflects; a general uneasiness)[attrib=Some dealers said] false true Some dealers said that the market 's strong reaction to Wall Street reflects a general uneasiness about the dollar . det(dealers_NNS_1_5, Some_DT_0_0); nsubj(said_VBD_2_13, dealers_NNS_1_5); ccomp(said_VBD_2_13, reflects_VBZ_12_68); punct(said_VBD_2_13, ._._19_115); det(market_NN_5_27, the_DT_4_23); possessive(market_NN_5_27, 's_POS_6_34); poss(reaction_NN_8_44, market_NN_5_27); amod(reaction_NN_8_44, strong_JJ_7_37); prep(reaction_NN_8_44, to_TO_9_53); pobj(to_TO_9_53, Street_NNP_11_61); nn(Street_NNP_11_61, Wall_NNP_10_56); complm(reflects_VBZ_12_68, that_IN_3_18); nsubj(reflects_VBZ_12_68, reaction_NN_8_44); dobj(reflects_VBZ_12_68, uneasiness_NN_15_87); det(uneasiness_NN_15_87, a_DT_13_77); amod(uneasiness_NN_15_87, general_JJ_14_79); prep(uneasiness_NN_15_87, about_IN_16_98); pobj(about_IN_16_98, dollar_NN_18_108); det(dollar_NN_18_108, the_DT_17_104) 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0 0.3613586670198179 0.0195 585 0.7386363636363636 (he; to Thai; Paradorn Srichaphan) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0195 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3607758324689645 0.0079 586 0.7389659520807061 (the board; be expanding to; 11 members) false false Bruno DeGol , chairman of DeGol Brothers Lumber , Gallitzin , Pa . , was named a director of this bank-holding company , expanding the board to 11 members . nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.3607758324689645 0.0079 586 0.7380352644836272 (the phenotype; be determining from; the genotype) false false But this approach , called reverse genetics , poses a new challenge : determining the phenotype from the genotype . det(approach_NN_2_9, this_DT_1_4); punct(approach_NN_2_9, ,_,_3_18); partmod(approach_NN_2_9, called_VBN_4_20); punct(approach_NN_2_9, ,_,_7_44); dep(called_VBN_4_20, genetics_NNS_6_35); nn(genetics_NNS_6_35, reverse_NN_5_27); cc(poses_VBZ_8_46, But_CC_0_0); nsubj(poses_VBZ_8_46, approach_NN_2_9); dobj(poses_VBZ_8_46, challenge_NN_11_58); punct(poses_VBZ_8_46, ._._19_114); det(challenge_NN_11_58, a_DT_9_52); amod(challenge_NN_11_58, new_JJ_10_54); punct(challenge_NN_11_58, :_:_12_68); dep(challenge_NN_11_58, determining_VBG_13_70); dobj(determining_VBG_13_70, phenotype_NN_15_86); prep(determining_VBG_13_70, from_IN_16_96); det(phenotype_NN_15_86, the_DT_14_82); pobj(from_IN_16_96, genotype_NN_18_105); det(genotype_NN_18_105, the_DT_17_101) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.3607758324689645 0.0079 587 0.7383647798742138 (a pebble; be dropping into; a pond) false false Electromagnetic energy travels in rhythmic waves analogous to those created by dropping a pebble into a pond . amod(travels_NNS_2_23, Electromagnetic_JJ_0_0); nn(travels_NNS_2_23, energy_NN_1_16); prep(travels_NNS_2_23, in_IN_3_31); punct(travels_NNS_2_23, ._._17_109); pobj(in_IN_3_31, waves_NNS_5_43); amod(waves_NNS_5_43, rhythmic_JJ_4_34); amod(waves_NNS_5_43, analogous_JJ_6_49); prep(analogous_JJ_6_49, to_TO_7_59); pobj(to_TO_7_59, those_DT_8_62); partmod(those_DT_8_62, created_VBN_9_68); prep(created_VBN_9_68, by_IN_10_76); pcomp(by_IN_10_76, dropping_VBG_11_79); dobj(dropping_VBG_11_79, pebble_NN_13_90); prep(dropping_VBG_11_79, into_IN_14_97); det(pebble_NN_13_90, a_DT_12_88); pobj(into_IN_14_97, pond_NN_16_104); det(pond_NN_16_104, a_DT_15_102) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.3607758324689645 0.0079 588 0.7386934673366834 (phylogeny; be inferring from; these homologous characters) false false Next we must choose a method of inferring phylogeny from these homologous characters . mark(choose_VB_3_13, Next_IN_0_0); nsubj(choose_VB_3_13, we_PRP_1_5); aux(choose_VB_3_13, must_MD_2_8); dobj(choose_VB_3_13, method_NN_5_22); punct(choose_VB_3_13, ._._13_85); det(method_NN_5_22, a_DT_4_20); prep(method_NN_5_22, of_IN_6_29); pcomp(of_IN_6_29, inferring_VBG_7_32); dobj(inferring_VBG_7_32, phylogeny_NN_8_42); prep(inferring_VBG_7_32, from_IN_9_52); pobj(from_IN_9_52, characters_NNS_12_74); det(characters_NNS_12_74, these_DT_10_57); amod(characters_NNS_12_74, homologous_JJ_11_63) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.36044786837561094 0.1473 589 0.739021329987453 (the South; seek; equality)[attrib=Pike said] false true At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.359664639398116 0.02 590 0.7393483709273183 (Stephen Curry; played basketball at; Davidson College) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.02 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3594649423619765 0.0132 591 0.7396745932415519 (activities; to be solo on; her own) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.35907471579469535 0.0119 592 0.74 (he; be three tackles including; 1.5 sacks) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.35862468602310377 0.0104 593 0.7403245942571786 (he; to move to; Puerto Rico) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0104 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.35813481401187625 0.0478 594 0.7406483790523691 (the blood; remains separate from; fluid) false false Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0478 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.35476110701020963 0.006 594 0.7397260273972602 (Ford; said of; owners) false false Ford said owners should return the cars to dealers so the windshields can be removed and securely reinstalled . nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.006 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 1.0 1 0.3545289393299356 0.0724 595 0.7400497512437811 (Rick Perry; became Governor of; Texas) false false When Rick Perry became Governor of Texas in January 2001 , he tapped Connor to serve as the Deputy Secretary in the office of the Texas Secretary of State . nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0724 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0 0.352555002152722 0.0282 595 0.7391304347826086 (student; be Royal Military College of; Canada) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0282 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.3518477200881743 0.0282 595 0.7382133995037221 (North Carolina; be Davidson College in; Davidson) false false Dell Curry is the father of Stephen Curry , who played basketball at Davidson College in Davidson , North Carolina , and was chosen 7th overall by the Golden State Warriors in the 2009 NBA Draft . nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0282 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3510288155762372 0.02 596 0.7385377942998761 (the senior vice president of Gulf Power; died in; the plane crash) false false Witnesses have said the grand jury has asked numerous questions about Jacob F. " Jake " Horton , the senior vice president of Gulf Power who died in the plane crash in April . nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.02 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.34969321202788156 0.0155 597 0.7388613861386139 (Bulgaria; be pillaged as; a Byzantine ally) false false Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . nn(VIII_NNP_1_8, Michael_NNP_0_0); nsubj(struck_VBD_2_13, VIII_NNP_1_8); advmod(struck_VBD_2_13, back_RB_3_20); punct(struck_VBD_2_13, ,_,_4_25); prep(struck_VBD_2_13, by_IN_5_27); punct(struck_VBD_2_13, ._._28_162); pcomp(by_IN_5_27, marrying_VBG_6_30); dobj(marrying_VBG_6_30, Euphrosyne_NNP_10_65); prep(marrying_VBG_6_30, to_TO_11_76); poss(Euphrosyne_NNP_10_65, his_PRP$_7_39); amod(Euphrosyne_NNP_10_65, illegitimate_JJ_8_43); nn(Euphrosyne_NNP_10_65, daughter_NN_9_56); pobj(to_TO_11_76, Khan_NNP_13_85); nn(Khan_NNP_13_85, Nogai_NNP_12_79); prep(Khan_NNP_13_85, of_IN_14_90); punct(Khan_NNP_13_85, ,_,_18_110); rcmod(Khan_NNP_13_85, pillaged_VBD_20_116); pobj(of_IN_14_90, Horde_NNP_17_104); det(Horde_NNP_17_104, the_DT_15_93); nn(Horde_NNP_17_104, Golden_NNP_16_97); nsubj(pillaged_VBD_20_116, who_WP_19_112); dobj(pillaged_VBD_20_116, Bulgaria_NNP_21_125); prep(pillaged_VBD_20_116, as_IN_22_134); pobj(as_IN_22_134, ally_NN_25_149); det(ally_NN_25_149, a_DT_23_137); amod(ally_NN_25_149, Byzantine_JJ_24_139); prep(ally_NN_25_149, in_IN_26_154); pobj(in_IN_26_154, 1274_CD_27_157) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.34896876533134014 0.0162 598 0.7391841779975278 (Rexford Tugwell; be planner for; New Deal brain trust) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0162 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.34896876533134014 0.0162 598 0.7382716049382716 (trust planner Rexford Tugwell; be brain for; New Deal) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0162 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3487993918716189 0.1473 598 0.7373612823674476 (supply; would overwhelm; demand) false false The issue 's smooth absorption eased fears that supply would overwhelm demand in coming sessions , traders said . det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0 0.34808052568367903 0.0132 598 0.7364532019704434 (Ford; would be take at; the current sales pace) false false This year , Scorpio sales plummeted , and at the current sales pace it would take Ford 242 days to sell off the current Scorpio inventory of about 4,600 cars . det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3464124449885764 0.0084 598 0.7355473554735548 (the blood; remains; separate) false false Cephalopods are the only molluscs with a closed circulatory system , in which the blood remains separate from fluid in the body cavity . nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.34590527828508477 0.0132 598 0.7346437346437347 (rise; will be give over; many generations) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0 0.34573008746944356 0.0021 598 0.7337423312883435 (the rare Japanese; had gained; some education) false false He then was able to appoint all new leaders for this land , most of the people he appointed as governors were young men , some were his friends , like Matsukata Masayoshi , and others were the rare Japanese who had gained some education in Europe or America . nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0021 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.345451461082249 0.0066 598 0.7328431372549019 (York-based Hallwood Group Inc.; be the proposal by; Equitec) false false Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . pobj(Under_IN_0_0, proposal_NN_2_10); det(proposal_NN_2_10, the_DT_1_6); prep(proposal_NN_2_10, by_IN_3_19); pobj(by_IN_3_19, Equitec_NNP_4_22); punct(Equitec_NNP_4_22, ,_,_5_30); appos(Equitec_NNP_4_22, syndicator_NN_10_67); punct(Equitec_NNP_4_22, ,_,_11_78); conj(Equitec_NNP_4_22, Inc._NNP_16_110); advmod(troubled_JJ_8_46, financially_RB_7_34); det(syndicator_NN_10_67, a_DT_6_32); amod(syndicator_NN_10_67, troubled_JJ_8_46); nn(syndicator_NN_10_67, real-estate_NN_9_55); dep(York-based_JJ_13_84, New_NNP_12_80); amod(Inc._NNP_16_110, York-based_JJ_13_84); nn(Inc._NNP_16_110, Hallwood_NNP_14_95); nn(Inc._NNP_16_110, Group_NNP_15_104); prep(replace_VB_18_121, Under_IN_0_0); aux(replace_VB_18_121, would_MD_17_115); dobj(replace_VB_18_121, Equitec_NNP_19_129); prep(replace_VB_18_121, as_IN_20_137); punct(replace_VB_18_121, ._._32_215); pobj(as_IN_20_137, partner_NN_29_195); advmod(formed_JJ_23_150, newly_RB_22_144); det(partnership_NN_26_172, the_DT_21_140); amod(partnership_NN_26_172, formed_JJ_23_150); nn(partnership_NN_26_172, master_NN_24_157); amod(partnership_NN_26_172, limited_JJ_25_164); possessive(partnership_NN_26_172, 's_POS_27_184); poss(partner_NN_29_195, partnership_NN_26_172); amod(partner_NN_29_195, general_JJ_28_187); cc(partner_NN_29_195, and_CC_30_203); conj(partner_NN_29_195, manager_NN_31_207) 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0066 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3439900554103357 0.0067 599 0.7331701346389229 (a popular advertising industry practice using " sound-alike " performers to tout products; be threatens by; a case) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0 0.3412652759731273 0.0623 599 0.7322738386308069 (Pike; said to; the Southern Commercial Convention of 1854) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0623 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.3402858130617332 0.1473 599 0.7313797313797313 (a freely mating population; will give; rise) false false This hypothesis predicts that over many generations , a freely mating population will give rise to a uniform population of individuals . det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.340277911009636 0.111 600 0.7317073170731707 (a larger facility; be designed by; Maya Lin) false false In 2004 , Greyston Bakery moved to a larger facility designed by Maya Lin to accommodate growth . pobj(In_IN_0_0, 2004_CD_1_3); nn(Bakery_NNP_4_19, Greyston_NNP_3_10); prep(moved_VBD_5_26, In_IN_0_0); punct(moved_VBD_5_26, ,_,_2_8); nsubj(moved_VBD_5_26, Bakery_NNP_4_19); prep(moved_VBD_5_26, to_TO_6_32); punct(moved_VBD_5_26, ._._17_96); pobj(to_TO_6_32, facility_NN_9_44); det(facility_NN_9_44, a_DT_7_35); amod(facility_NN_9_44, larger_JJR_8_37); partmod(facility_NN_9_44, designed_VBN_10_53); prep(designed_VBN_10_53, by_IN_11_62); xcomp(designed_VBN_10_53, accommodate_VB_15_77); pobj(by_IN_11_62, Lin_NNP_13_70); nn(Lin_NNP_13_70, Maya_NNP_12_65); aux(accommodate_VB_15_77, to_TO_14_74); dobj(accommodate_VB_15_77, growth_NN_16_89) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3386014625853597 0.1443 600 0.730816077953715 (e-catenin; also helps to control; gastrulation) false false Athula Wikramanayake and Mark Martindale , of the University of Hawaii , and colleagues tested whether e-catenin also helps to control gastrulation in the sea anemone Nematostella vectensis . nn(Wikramanayake_NNP_1_7, Athula_NNP_0_0); cc(Wikramanayake_NNP_1_7, and_CC_2_21); conj(Wikramanayake_NNP_1_7, Martindale_NNP_4_30); punct(Wikramanayake_NNP_1_7, ,_,_5_41); prep(Wikramanayake_NNP_1_7, of_IN_6_43); punct(Wikramanayake_NNP_1_7, ,_,_11_71); cc(Wikramanayake_NNP_1_7, and_CC_12_73); conj(Wikramanayake_NNP_1_7, colleagues_NNS_13_77); nn(Martindale_NNP_4_30, Mark_NNP_3_25); pobj(of_IN_6_43, University_NNP_8_50); det(University_NNP_8_50, the_DT_7_46); prep(University_NNP_8_50, of_IN_9_61); pobj(of_IN_9_61, Hawaii_NNP_10_64); nsubj(tested_VBD_14_88, Wikramanayake_NNP_1_7); ccomp(tested_VBD_14_88, helps_VBZ_18_118); punct(tested_VBD_14_88, ._._28_190); complm(helps_VBZ_18_118, whether_IN_15_95); nsubj(helps_VBZ_18_118, e-catenin_NN_16_103); advmod(helps_VBZ_18_118, also_RB_17_113); xcomp(helps_VBZ_18_118, control_VB_20_127); aux(control_VB_20_127, to_TO_19_124); dobj(control_VB_20_127, gastrulation_NN_21_135); prep(control_VB_20_127, in_IN_22_148); pobj(in_IN_22_148, vectensis_NN_27_180); det(vectensis_NN_27_180, the_DT_23_151); nn(vectensis_NN_27_180, sea_NN_24_155); nn(vectensis_NN_27_180, anemone_NN_25_159); nn(vectensis_NN_27_180, Nematostella_NNP_26_167) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.3367875187596867 0.1492 601 0.7311435523114356 (Rexford Tugwell; be planner of; New Deal brain trust) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1492 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3367875187596867 0.1492 602 0.7314702308626975 (trust planner Rexford Tugwell; be brain of; New Deal) false false Having met New Deal brain trust planner Rexford Tugwell in the late 1930s , he was invited to move to Puerto Rico in 1944 and collaborate in the design of post-war modern Puerto Rico . aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1492 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.33483242914292427 0.0128 603 0.7317961165048543 (the death toll; might be significantly lower than; 250 initially feared) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0128 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0 0.33406172606196227 0.3797 603 0.730909090909091 (Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians; the coffins of captured Israeli soldiers) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.3797 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.333063161580075 0.0067 603 0.7300242130750605 (Mikhail Gorbachev 's Soviet Union; to supply with; bullets) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0067 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.33160810624428727 0.1473 604 0.7303506650544136 (we; can not fully explain; a higher level of order) false false On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.3300218136329411 0.0109 604 0.7294685990338164 (the 1998 H. C. Urey Prize and a professor; be recipient of; Santa Cruz) false false 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.3300218136329411 0.0109 604 0.7285886610373945 (Omaha; be the north end of; Nebraska) false false The Notre Dame Academy and Convent is located at 3501 State Street in the Florence neighborhood on the north end of Omaha , Nebraska . det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0109 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.32961828526584036 0.0095 604 0.727710843373494 (Bics-Kiskun county; be the Southern Great Plain region of; southern Hungary) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0095 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.3275723445676998 0.0961 605 0.7280385078219013 (Finistre; be department in; Bretagne) false false Plouzani is a commune in the Finistre department in Bretagne in northwestern France . nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0961 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.32611442714398514 0.7345 606 0.7283653846153846 (July; saw suffer two 8-0 demolitions by; Des Moines Menace and in the last game of the season)[enabler=As if early elimination from the playoff race was n't enough] true false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.7345 1.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.32561690221860234 0.0083 606 0.7274909963985594 (Pike; said in; the Southern Commercial Convention of 1854) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0083 1.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.32401891525502385 0.0067 607 0.7278177458033573 (the need; be justifies by; the presence of internal and external " enemies) false false It is the presence of internal and external " enemies " which justifies the need for a large , active army that Mikhail Gorbachev 's Soviet Union continues to supply with bullets . nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0067 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.3228364010311089 0.0307 607 0.7269461077844311 (Land snails; play a key role in nutrient cycling for; example)[enabler=while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes] true false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0307 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 1.0 1.0 0 0.32236525142050676 0.0292 607 0.7260765550239234 (shareholder Max Grill of New York; squandering; the company 's assets) false false In a separate complaint also filed in federal court here , shareholder Max Grill of New York charged Imperial , its top executives and directors with breach of fiduciary duty and squandering the company 's assets . pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0292 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.32171811897955555 0.0132 607 0.7252090800477897 (a claim; to be insert by; the Philippines) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.31902467958877745 0.4031 608 0.7255369928400954 (Dr. Erik I. Asphaug; be recipient of; the 1998 H. C. Urey Prize and a professor) false false 7939 Asphaug is an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz . num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4031 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.31883266314736386 0.0071 608 0.7246722288438617 (first; be seen by; Robert Hooke)[enabler=as he looked through a microscope at dead cells from the bark of an oak tree] true false Cell walls were first seen by Robert Hooke in 1665 as he looked through a microscope at dead cells from the bark of an oak tree . nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0071 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.31632804768618916 0.0079 608 0.7238095238095238 (downriver; be sailing to; the Persian Gulf) false false He captured the Parthian capital , Ctesiphon , before sailing downriver to the Persian Gulf . nsubj(captured_VBD_1_3, He_PRP_0_0); dobj(captured_VBD_1_3, capital_NN_4_25); punct(captured_VBD_1_3, ,_,_7_45); prep(captured_VBD_1_3, before_IN_8_47); punct(captured_VBD_1_3, ._._15_92); det(capital_NN_4_25, the_DT_2_12); amod(capital_NN_4_25, Parthian_JJ_3_16); punct(capital_NN_4_25, ,_,_5_33); appos(capital_NN_4_25, Ctesiphon_NNP_6_35); pcomp(before_IN_8_47, sailing_VBG_9_54); dobj(sailing_VBG_9_54, downriver_NN_10_62); prep(sailing_VBG_9_54, to_TO_11_72); pobj(to_TO_11_72, Gulf_NNP_14_87); det(Gulf_NNP_14_87, the_DT_12_75); nn(Gulf_NNP_14_87, Persian_NNP_13_79) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.31632804768618916 0.0079 608 0.72294887039239 (countryman Tommy Robredo; be defeating in; the second round) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.31632804768618916 0.0079 609 0.7232779097387173 (an 11-yard sack of Brady; be sharing with; defensive tackle Vonnie Holliday) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.3142555775934053 0.0079 609 0.7224199288256228 (a high body temperature; be maintaining through; ectothermy) false false Furthermore , paleontologists have found fossils of dinosaurs in both Antarctica and the Arctic : although the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy . advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.3105256048279929 0.0067 610 0.7227488151658767 (about 800 retail gas stations; be owns by; Harken) false false Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.3097776093741795 0.0577 611 0.7230769230769231 (the grand jury; has asked; numerous questions) false false Witnesses have said the grand jury has asked numerous questions about Jacob F. " Jake " Horton , the senior vice president of Gulf Power who died in the plane crash in April . nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3097109029157713 0.3797 611 0.7222222222222222 (Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians; Ehud Goldwasser and Eldad Regev) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.308861688167056 0.0084 611 0.7213695395513577 (society; is; willing) false false Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0084 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 1 0.3085181988096567 0.111 612 0.7216981132075472 (the infectious particle; be now known as; tobacco mosaic virus) false false His suspicions were confirmed in 1935 when the American scientist Wendell Stanley crystallized the infectious particle , now known as tobacco mosaic virus . poss(suspicions_NNS_1_4, His_PRP$_0_0); nsubjpass(confirmed_VBN_3_20, suspicions_NNS_1_4); auxpass(confirmed_VBN_3_20, were_VBD_2_15); prep(confirmed_VBN_3_20, in_IN_4_30); punct(confirmed_VBN_3_20, ._._23_155); pobj(in_IN_4_30, 1935_CD_5_33); dep(1935_CD_5_33, crystallized_VBD_12_82); det(Stanley_NNP_11_74, the_DT_7_43); amod(Stanley_NNP_11_74, American_JJ_8_47); nn(Stanley_NNP_11_74, scientist_NN_9_56); nn(Stanley_NNP_11_74, Wendell_NNP_10_66); advmod(crystallized_VBD_12_82, when_WRB_6_38); nsubj(crystallized_VBD_12_82, Stanley_NNP_11_74); dobj(crystallized_VBD_12_82, particle_NN_15_110); det(particle_NN_15_110, the_DT_13_95); amod(particle_NN_15_110, infectious_JJ_14_99); punct(particle_NN_15_110, ,_,_16_119); partmod(particle_NN_15_110, known_VBN_18_125); advmod(known_VBN_18_125, now_RB_17_121); prep(known_VBN_18_125, as_IN_19_131); pobj(as_IN_19_131, virus_NN_22_149); nn(virus_NN_22_149, tobacco_NN_20_134); nn(virus_NN_22_149, mosaic_NN_21_142) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0 0.30715844813761695 0.0331 612 0.7208480565371025 (New Zealand; be region in; Wellington) false false Hutt Park railway station was on the privately owned but government operated Hutt Park Railway in Petone , a suburb of the city of Lower Hutt in the Wellington region of New Zealand s North Island . nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0331 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.3044025740296432 0.02 613 0.7211764705882353 (Nogai Khan of the Golden Horde; pillaged Bulgaria as; a Byzantine ally) false false Michael VIII struck back , by marrying his illegitimate daughter Euphrosyne to Nogai Khan of the Golden Horde , who pillaged Bulgaria as a Byzantine ally in 1274 . nn(VIII_NNP_1_8, Michael_NNP_0_0); nsubj(struck_VBD_2_13, VIII_NNP_1_8); advmod(struck_VBD_2_13, back_RB_3_20); punct(struck_VBD_2_13, ,_,_4_25); prep(struck_VBD_2_13, by_IN_5_27); punct(struck_VBD_2_13, ._._28_162); pcomp(by_IN_5_27, marrying_VBG_6_30); dobj(marrying_VBG_6_30, Euphrosyne_NNP_10_65); prep(marrying_VBG_6_30, to_TO_11_76); poss(Euphrosyne_NNP_10_65, his_PRP$_7_39); amod(Euphrosyne_NNP_10_65, illegitimate_JJ_8_43); nn(Euphrosyne_NNP_10_65, daughter_NN_9_56); pobj(to_TO_11_76, Khan_NNP_13_85); nn(Khan_NNP_13_85, Nogai_NNP_12_79); prep(Khan_NNP_13_85, of_IN_14_90); punct(Khan_NNP_13_85, ,_,_18_110); rcmod(Khan_NNP_13_85, pillaged_VBD_20_116); pobj(of_IN_14_90, Horde_NNP_17_104); det(Horde_NNP_17_104, the_DT_15_93); nn(Horde_NNP_17_104, Golden_NNP_16_97); nsubj(pillaged_VBD_20_116, who_WP_19_112); dobj(pillaged_VBD_20_116, Bulgaria_NNP_21_125); prep(pillaged_VBD_20_116, as_IN_22_134); pobj(as_IN_22_134, ally_NN_25_149); det(ally_NN_25_149, a_DT_23_137); amod(ally_NN_25_149, Byzantine_JJ_24_139); prep(ally_NN_25_149, in_IN_26_154); pobj(in_IN_26_154, 1274_CD_27_157) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.02 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.30421898282603377 0.0132 613 0.7203290246768508 (the original paper; be analyze in; Inquiry) false false Read and analyze the original paper in Inquiry in Action : Interpreting Scientific Papers . cc(Read_NNP_0_0, and_CC_1_5); conj(Read_NNP_0_0, analyze_VB_2_9); punct(Read_NNP_0_0, :_:_10_57); dep(Read_NNP_0_0, Papers_NNP_13_83); punct(Read_NNP_0_0, ._._14_90); dobj(analyze_VB_2_9, paper_NN_5_30); prep(analyze_VB_2_9, in_IN_6_36); det(paper_NN_5_30, the_DT_3_17); amod(paper_NN_5_30, original_JJ_4_21); pobj(in_IN_6_36, Inquiry_NNP_7_39); prep(Inquiry_NNP_7_39, in_IN_8_47); pobj(in_IN_8_47, Action_NNP_9_50); nn(Papers_NNP_13_83, Interpreting_NNP_11_59); nn(Papers_NNP_13_83, Scientific_NNP_12_72) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.30394134341279455 0.0477 614 0.7206572769953051 (the deadliest aspect of the quake; be The failure in Oakland of the freeway segment in; Oakland) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0477 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.30345497264145543 0.0477 614 0.7198124267291911 (purify the waters of streams , rivers , and lakes; the filtering activities of; freshwater bivalves) false false Land snails , for example , play a key role in nutrient cycling , while the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes . nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3021855508008761 0.7345 614 0.7189695550351288 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady for; a five-yard loss) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.3014901362258629 0.7345 614 0.7181286549707603 (you; learned for; example) false false For example , you learned earlier that nervous reflexes stimulate the release of saliva when food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx . pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1 0.2992073584390562 0.0162 615 0.7184579439252337 (Jim Cornette; be manager of; Vader) false false As Sid was about to powerbomb Vader , Vader 's manager Jim Cornette got on the ring apron to distract him . pobj(As_IN_0_0, Sid_NNP_1_3); prep(about_IN_3_11, As_IN_0_0); aux(about_IN_3_11, was_VBD_2_7); xcomp(about_IN_3_11, powerbomb_VB_5_20); punct(about_IN_3_11, ._._21_106); aux(powerbomb_VB_5_20, to_TO_4_17); ccomp(powerbomb_VB_5_20, got_VBD_13_68); punct(Vader_NNP_6_30, ,_,_7_36); conj(Vader_NNP_6_30, Cornette_NNP_12_59); possessive(Vader_NNP_8_38, 's_POS_9_44); poss(Cornette_NNP_12_59, Vader_NNP_8_38); nn(Cornette_NNP_12_59, manager_NN_10_47); nn(Cornette_NNP_12_59, Jim_NNP_11_55); nsubj(got_VBD_13_68, Vader_NNP_6_30); prep(got_VBD_13_68, on_IN_14_72); pobj(on_IN_14_72, apron_NN_17_84); det(apron_NN_17_84, the_DT_15_75); nn(apron_NN_17_84, ring_NN_16_79); infmod(apron_NN_17_84, distract_VB_19_93); aux(distract_VB_19_93, to_TO_18_90); dobj(distract_VB_19_93, him_PRP_20_102) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0162 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.2964373979040095 0.1473 616 0.7187864644107351 (it; would fill; a gap) false false Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1473 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.2945940387262835 0.0162 617 0.7191142191142191 (C.J. Wilson; be pitcher for; Texas Rangers) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0162 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.2897411382445026 0.0071 617 0.7182770663562281 (response; said to; Mr. Miller) false false In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0071 0.0 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.2889658386073632 0.7345 617 0.7174418604651163 (Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.2889658386073632 0.7345 617 0.7166085946573751 (Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.2889658386073632 0.7345 618 0.7169373549883991 (Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.2882037519386529 0.0065 619 0.7172653534183082 (Browning; wrote on; the gassing facilities) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.28563566605776536 0.006 619 0.7164351851851852 (Pike; said of; the South) false false At the Southern Commercial Convention of 1854 , Pike said the South should remain in the Union and seek equality with the North , but if the South " were forced into an inferior status , she would be better out of the Union than in it . " . pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.006 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.28348434400719724 0.1492 620 0.7167630057803468 (C.J. Wilson; be pitcher of; Texas Rangers) false false His season was cut short when on September 1 , he was hit on the hand by Texas Rangers pitcher C.J. Wilson . poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1492 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.28112065091369526 0.0901 621 0.7170900692840647 (Montreal; be located in; Canada) false false The Mount Royal Arena was an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street . det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0901 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.2788421890632288 0.7345 622 0.7174163783160323 (Prince Kitashirakawa; married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji on; April 29 , 1909) false false On April 29 , 1909 , Prince Kitashirakawa married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji . pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.2788421890632288 0.7345 623 0.717741935483871 (Hezbollah; transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.2788421890632288 0.7345 624 0.7180667433831991 (Hezbollah; transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.2788421890632288 0.7345 625 0.7183908045977011 (Hezbollah; transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.2777133130201241 0.1443 625 0.7175660160734788 (Lenneth; tells; him) false false Lenneth tells him to forget about her and kisses him before he departs but Lucian continues to brood upon Lenneth and Platina . nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0 0.2773012516628655 0.0155 625 0.716743119266055 (their first live show; Now Ian Butterworth guitar Roger Wikeley bass keyboards the band performed in; May 2006) false false Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . dep(Now_RB_0_0, with_IN_1_4); cc(Now_RB_0_0, and_CC_11_61); conj(Now_RB_0_0, keyboards_VBD_12_65); pobj(with_IN_1_4, Butterworth_NNP_3_13); dep(with_IN_1_4, on_IN_4_25); nn(Butterworth_NNP_3_13, Ian_NNP_2_9); pobj(on_IN_4_25, guitar_NN_5_28); cc(guitar_NN_5_28, and_CC_6_35); conj(guitar_NN_5_28, Wikeley_NNP_8_45); prep(guitar_NN_5_28, on_IN_9_53); nn(Wikeley_NNP_8_45, Roger_NNP_7_39); pobj(on_IN_9_53, bass_NN_10_56); dobj(keyboards_VBD_12_65, band_NN_14_79); det(band_NN_14_79, the_DT_13_75); advmod(performed_VBD_15_84, Now_RB_0_0); dobj(performed_VBD_15_84, show_NN_19_111); prep(performed_VBD_15_84, in_IN_20_116); prep(performed_VBD_15_84, in_IN_28_173); prep(performed_VBD_15_84, followed_VBN_31_185); punct(performed_VBD_15_84, ._._46_267); poss(show_NN_19_111, their_PRP$_16_94); amod(show_NN_19_111, first_JJ_17_100); amod(show_NN_19_111, live_JJ_18_106); pobj(in_IN_20_116, decades_NNS_23_130); quantmod(two_CD_22_126, nearly_RB_21_119); num(decades_NNS_23_130, two_CD_22_126); prep(decades_NNS_23_130, at_IN_24_138); pobj(at_IN_24_138, hometown_NN_26_147); poss(hometown_NN_26_147, their_PRP$_25_141); dep(hometown_NN_26_147, Poulton-Le-Fylde_NNP_27_156); pobj(in_IN_28_173, May_NNP_29_176); num(May_NNP_29_176, 2006_CD_30_180); prep(followed_VBN_31_185, by_IN_32_194); pobj(by_IN_32_194, dates_NNS_33_197); prep(dates_NNS_33_197, in_IN_34_203); pobj(in_IN_34_203, Blackpool_NNP_35_206); punct(Blackpool_NNP_35_206, ,_,_36_216); conj(Blackpool_NNP_35_206, Paris_NNP_37_218); punct(Blackpool_NNP_35_206, ,_,_38_224); conj(Blackpool_NNP_35_206, Brussels_NNP_39_226); punct(Blackpool_NNP_35_206, ,_,_40_235); conj(Blackpool_NNP_35_206, Leicester_NNP_41_237); punct(Blackpool_NNP_35_206, ,_,_42_247); conj(Blackpool_NNP_35_206, London_NNP_43_249); cc(Blackpool_NNP_35_206, and_CC_44_256); conj(Blackpool_NNP_35_206, Athens_NNP_45_260) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.2736663139421735 1.0 625 0.715922107674685 (the potentially fatal disease botulism; is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , by; botulinum toxin) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.2726426369064801 0.111 626 0.7162471395881007 (a 3 % wage boost and a 3 % bonus; be followed by; a 3 % increase) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.111 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.27118821818699634 0.0444 627 0.7165714285714285 (he; besieged the town in; 190 BC) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1 0.2711377820853715 0.4031 628 0.7168949771689498 (Jacob F. " Jake " Horton; be the senior vice president of; Gulf Power) false false Witnesses have said the grand jury has asked numerous questions about Jacob F. " Jake " Horton , the senior vice president of Gulf Power who died in the plane crash in April . nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.4031 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.2701597941429324 0.0095 628 0.7160775370581528 (Joseph Lombardo; be numerous defendants in; the government 's sweeping racketeering suit) false false Joseph Lombardo , who the government alleged was the " captain " of organized crime in Chicago , was one of numerous defendants in the government 's sweeping racketeering suit against the Teamsters . nn(Lombardo_NNP_1_7, Joseph_NNP_0_0); punct(Lombardo_NNP_1_7, ,_,_2_16); rcmod(Lombardo_NNP_1_7, alleged_VBD_6_37); punct(Lombardo_NNP_1_7, ,_,_17_95); det(government_NN_5_26, the_DT_4_22); rel(alleged_VBD_6_37, who_WP_3_18); nsubj(alleged_VBD_6_37, government_NN_5_26); ccomp(alleged_VBD_6_37, captain_NN_10_55); cop(captain_NN_10_55, was_VBD_7_45); det(captain_NN_10_55, the_DT_8_49); punct(captain_NN_10_55, "_``_9_53); punct(captain_NN_10_55, "_''_11_63); prep(captain_NN_10_55, of_IN_12_65); pobj(of_IN_12_65, crime_NN_14_78); amod(crime_NN_14_78, organized_JJ_13_68); prep(crime_NN_14_78, in_IN_15_84); pobj(in_IN_15_84, Chicago_NNP_16_87); nsubj(one_CD_19_101, Lombardo_NNP_1_7); cop(one_CD_19_101, was_VBD_18_97); prep(one_CD_19_101, of_IN_20_105); punct(one_CD_19_101, ._._33_198); pobj(of_IN_20_105, defendants_NNS_22_117); amod(defendants_NNS_22_117, numerous_JJ_21_108); prep(defendants_NNS_22_117, in_IN_23_128); pobj(in_IN_23_128, suit_NN_29_171); det(government_NN_25_135, the_DT_24_131); possessive(government_NN_25_135, 's_POS_26_146); poss(suit_NN_29_171, government_NN_25_135); amod(suit_NN_29_171, sweeping_JJ_27_149); nn(suit_NN_29_171, racketeering_NN_28_158); prep(suit_NN_29_171, against_IN_30_176); pobj(against_IN_30_176, Teamsters_NNPS_32_188); det(Teamsters_NNPS_32_188, the_DT_31_184) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0095 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.2691256472923294 0.0192 628 0.715261958997722 (Flagellated sperm swim; entering the archegonia in; response) false false Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . amod(swim_NN_2_18, Flagellated_VBN_0_0); nn(swim_NN_2_18, sperm_NN_1_12); prep(swim_NN_2_18, through_IN_3_23); punct(swim_NN_2_18, ,_,_10_59); partmod(swim_NN_2_18, entering_VBG_11_61); punct(swim_NN_2_18, ._._19_121); pobj(through_IN_3_23, film_NN_5_33); det(film_NN_5_33, a_DT_4_31); prep(film_NN_5_33, of_IN_6_38); pobj(of_IN_6_38, water_NN_7_41); prep(water_NN_7_41, toward_IN_8_47); pobj(toward_IN_8_47, eggs_NNS_9_54); dobj(entering_VBG_11_61, archegonia_NN_13_74); prep(entering_VBG_11_61, in_IN_14_85); det(archegonia_NN_13_74, the_DT_12_70); pobj(in_IN_14_85, response_NN_15_88); prep(response_NN_15_88, to_TO_16_97); pobj(to_TO_16_97, attractants_NNS_18_109); nn(attractants_NNS_18_109, chemical_NN_17_100) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0192 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1 0.26856409396877384 0.02 629 0.7155858930602957 (Cheat " and " Drunk Girl; leaked on; the internet) false false The song has two demo working titles : " Cheat " and " Drunk Girl " , which leaked on the internet in November 2007 . det(song_NN_1_4, The_DT_0_0); nsubj(has_VBZ_2_9, song_NN_1_4); dobj(has_VBZ_2_9, titles_NNS_6_30); punct(has_VBZ_2_9, :_:_7_37); punct(has_VBZ_2_9, "_``_8_39); dep(has_VBZ_2_9, Cheat_VB_9_41); punct(has_VBZ_2_9, ._._25_116); num(demo_NN_4_17, two_CD_3_13); nn(titles_NNS_6_30, demo_NN_4_17); amod(titles_NNS_6_30, working_VBG_5_22); punct(Cheat_VB_9_41, "_''_10_47); cc(Cheat_VB_9_41, and_CC_11_49); conj(Cheat_VB_9_41, Girl_NNP_14_61); punct(Girl_NNP_14_61, "_``_12_53); nn(Girl_NNP_14_61, Drunk_NNP_13_55); punct(Girl_NNP_14_61, "_''_15_66); punct(Girl_NNP_14_61, ,_,_16_68); rcmod(Girl_NNP_14_61, leaked_VBD_18_76); nsubj(leaked_VBD_18_76, which_WDT_17_70); prep(leaked_VBD_18_76, on_IN_19_83); prep(leaked_VBD_18_76, in_IN_22_99); pobj(on_IN_19_83, internet_NN_21_90); det(internet_NN_21_90, the_DT_20_86); pobj(in_IN_22_99, November_NNP_23_102); num(November_NNP_23_102, 2007_CD_24_111) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.02 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1 0.26781122932777474 0.111 630 0.7159090909090909 (a song; be written by; the Dave Matthews Band) false false The Space Between is a song written by the Dave Matthews Band . det(Space_NN_1_4, The_DT_0_0); advcl(Space_NN_1_4, is_VBZ_3_18); punct(Space_NN_1_4, ._._12_62); mark(is_VBZ_3_18, Between_IN_2_10); nsubj(is_VBZ_3_18, song_NN_5_23); det(song_NN_5_23, a_DT_4_21); partmod(song_NN_5_23, written_VBN_6_28); prep(written_VBN_6_28, by_IN_7_36); pobj(by_IN_7_36, Band_NNP_11_57); det(Band_NNP_11_57, the_DT_8_39); nn(Band_NNP_11_57, Dave_NNP_9_43); nn(Band_NNP_11_57, Matthews_NNP_10_48) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.111 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1 0.2674129657910275 0.0155 631 0.7162315550510783 (one of the first Women 's Studies classes; be taught at; Richmond College) false false Chesler taught one of the first Women 's Studies classes at Richmond College in New York City during the 1969-1970 school year . nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1 0.2651201299329215 0.0065 632 0.7165532879818595 (Browning; wrote on; the evidence) false false Another historian , Robert Jan Van Pelt , wrote a report on the gassing facilities at Auschwitz , and Browning wrote a report on the evidence for the extermination of the Jews on a wider scale . det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0065 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1 0.261186270271414 0.7345 633 0.7168742921857305 (Singer Bette Midler; won a $ 400,000 federal court jury verdict against Young & Rubicam in; a case that threatens a popular advertising industry practice) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.2602689412869481 0.3797 633 0.7160633484162896 (Armed Forces of the Philippines chief of staff General Hermogenes Esperon; linked; Senator Panfilo Lacson) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.25880317118186125 0.0079 634 0.7163841807909604 (a signal; be transmitting over; long distances) false false Action potentials can therefore spread along axons , making them well suited for transmitting a signal over long distances . nn(potentials_NNS_1_7, Action_NNP_0_0); nsubj(spread_VB_4_32, potentials_NNS_1_7); aux(spread_VB_4_32, can_MD_2_18); advmod(spread_VB_4_32, therefore_RB_3_22); prep(spread_VB_4_32, along_IN_5_39); punct(spread_VB_4_32, ,_,_7_51); xcomp(spread_VB_4_32, making_VBG_8_53); punct(spread_VB_4_32, ._._19_123); pobj(along_IN_5_39, axons_NNS_6_45); xcomp(making_VBG_8_53, suited_VBN_11_70); nsubj(suited_VBN_11_70, them_PRP_9_60); advmod(suited_VBN_11_70, well_RB_10_65); prep(suited_VBN_11_70, for_IN_12_77); pcomp(for_IN_12_77, transmitting_VBG_13_81); dobj(transmitting_VBG_13_81, signal_NN_15_96); prep(transmitting_VBG_13_81, over_IN_16_103); det(signal_NN_15_96, a_DT_14_94); pobj(over_IN_16_103, distances_NNS_18_113); amod(distances_NNS_18_113, long_JJ_17_108) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.25798224628800415 0.0119 635 0.7167042889390519 (he; be a Master of; Arts) false false While in the CF , he completed the year-long course at the Canadian Forces Command and Staff College and received a Master of Arts in war studies degree from Royal Military College of Canada , student # G0053 in 1980 . dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.2567293934561119 0.0331 635 0.7158962795941376 (southern Hungary; be region in; Southern Great Plain) false false Lakitelek is a large village in Bics-Kiskun county , in the Southern Great Plain region of southern Hungary . nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0331 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.2565178699697837 0.0084 635 0.7150900900900901 (it; is particularly; interested) false false Harken , which owns about 800 retail gas stations , has said it is particularly interested in Tesoro 's refinery because it would fill a gap in its business . punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0084 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.25299570924899534 0.0079 636 0.7154105736782902 (Applied Power Inc.; be transforming in; the global market) false false Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . nn(Sim_NNP_2_11, Richard_NNP_0_0); nn(Sim_NNP_2_11, G._NNP_1_8); punct(Sim_NNP_2_11, ,_,_3_15); det(man_NN_5_21, the_DT_4_17); nsubjpass(credited_VBD_6_25, Sim_NNP_2_11); nsubj(credited_VBD_6_25, man_NN_5_21); prep(credited_VBD_6_25, with_IN_7_34); punct(credited_VBD_6_25, ,_,_26_155); dep(credited_VBD_6_25, Corp_NNP_42_245); punct(credited_VBD_6_25, ._._43_250); pcomp(with_IN_7_34, transforming_VBG_8_39); dobj(transforming_VBG_8_39, Inc._NNP_11_66); prep(transforming_VBG_8_39, from_IN_12_71); prep(transforming_VBG_8_39, into_IN_15_93); prep(transforming_VBG_8_39, in_IN_19_114); nn(Inc._NNP_11_66, Applied_NNP_9_52); nn(Inc._NNP_11_66, Power_NNP_10_60); pobj(from_IN_12_71, underachiever_RB_14_79); det(underachiever_RB_14_79, an_DT_13_76); pobj(into_IN_15_93, player_NN_18_107); det(player_NN_18_107, a_DT_16_98); amod(player_NN_18_107, feisty_JJ_17_100); pobj(in_IN_19_114, market_NN_22_128); det(market_NN_22_128, the_DT_20_117); amod(market_NN_22_128, global_JJ_21_121); prep(market_NN_22_128, for_IN_23_135); pobj(for_IN_23_135, tools_NNS_25_149); amod(tools_NNS_25_149, hydraulic_JJ_24_139); xcomp(hopes_VBZ_27_157, guide_VB_29_166); aux(guide_VB_29_166, to_TO_28_163); dobj(guide_VB_29_166, turnaround_NN_32_182); prep(guide_VB_29_166, at_IN_33_193); det(turnaround_NN_32_182, a_DT_30_172); amod(turnaround_NN_32_182, similar_JJ_31_174); pobj(at_IN_33_193, acquisition_NN_38_218); det(company_NN_35_200, the_DT_34_196); possessive(company_NN_35_200, 's_POS_36_208); poss(acquisition_NN_38_218, company_NN_35_200); amod(acquisition_NN_38_218, latest_JJS_37_211); dep(Corp_NNP_42_245, hopes_VBZ_27_157); punct(Corp_NNP_42_245, ,_,_39_230); nn(Corp_NNP_42_245, Barry_NNP_40_232); nn(Corp_NNP_42_245, Wright_NNP_41_238) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.25299570924899534 0.0079 637 0.7157303370786516 (Applied Power Inc.; be transforming into; a feisty player) false false Richard G. Sim , the man credited with transforming Applied Power Inc. from an underachiever into a feisty player in the global market for hydraulic tools , hopes to guide a similar turnaround at the company 's latest acquisition , Barry Wright Corp . nn(Sim_NNP_2_11, Richard_NNP_0_0); nn(Sim_NNP_2_11, G._NNP_1_8); punct(Sim_NNP_2_11, ,_,_3_15); det(man_NN_5_21, the_DT_4_17); nsubjpass(credited_VBD_6_25, Sim_NNP_2_11); nsubj(credited_VBD_6_25, man_NN_5_21); prep(credited_VBD_6_25, with_IN_7_34); punct(credited_VBD_6_25, ,_,_26_155); dep(credited_VBD_6_25, Corp_NNP_42_245); punct(credited_VBD_6_25, ._._43_250); pcomp(with_IN_7_34, transforming_VBG_8_39); dobj(transforming_VBG_8_39, Inc._NNP_11_66); prep(transforming_VBG_8_39, from_IN_12_71); prep(transforming_VBG_8_39, into_IN_15_93); prep(transforming_VBG_8_39, in_IN_19_114); nn(Inc._NNP_11_66, Applied_NNP_9_52); nn(Inc._NNP_11_66, Power_NNP_10_60); pobj(from_IN_12_71, underachiever_RB_14_79); det(underachiever_RB_14_79, an_DT_13_76); pobj(into_IN_15_93, player_NN_18_107); det(player_NN_18_107, a_DT_16_98); amod(player_NN_18_107, feisty_JJ_17_100); pobj(in_IN_19_114, market_NN_22_128); det(market_NN_22_128, the_DT_20_117); amod(market_NN_22_128, global_JJ_21_121); prep(market_NN_22_128, for_IN_23_135); pobj(for_IN_23_135, tools_NNS_25_149); amod(tools_NNS_25_149, hydraulic_JJ_24_139); xcomp(hopes_VBZ_27_157, guide_VB_29_166); aux(guide_VB_29_166, to_TO_28_163); dobj(guide_VB_29_166, turnaround_NN_32_182); prep(guide_VB_29_166, at_IN_33_193); det(turnaround_NN_32_182, a_DT_30_172); amod(turnaround_NN_32_182, similar_JJ_31_174); pobj(at_IN_33_193, acquisition_NN_38_218); det(company_NN_35_200, the_DT_34_196); possessive(company_NN_35_200, 's_POS_36_208); poss(acquisition_NN_38_218, company_NN_35_200); amod(acquisition_NN_38_218, latest_JJS_37_211); dep(Corp_NNP_42_245, hopes_VBZ_27_157); punct(Corp_NNP_42_245, ,_,_39_230); nn(Corp_NNP_42_245, Barry_NNP_40_232); nn(Corp_NNP_42_245, Wright_NNP_41_238) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.25299570924899534 0.0079 638 0.7160493827160493 (an item; be filming for; Countryfile) false false While filming an item for Countryfile in 2002 , Strachan entered the World Gurning competition at Egremont Crab Fair . pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.25227566039598587 0.7345 638 0.7152466367713004 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing an 11-yard sack of Brady with; defensive tackle Vonnie Holliday) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.2473339107155083 0.0119 638 0.7144456886898096 (it; the previously announced purchase of; Imperial Cup Corp.) false false Federal Paper Board Co. said it completed the previously announced purchase of Imperial Cup Corp. , a closely held maker of paper cups based in Kenton , Ohio . nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0119 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.24672366389798675 0.0067 638 0.7136465324384788 (strong ties; be has by; Mr. Inouye) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 1.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.24349764043648267 0.0079 639 0.7139664804469273 (the archegonia; be entering in; response) false false Flagellated sperm swim through a film of water toward eggs , entering the archegonia in response to chemical attractants . amod(swim_NN_2_18, Flagellated_VBN_0_0); nn(swim_NN_2_18, sperm_NN_1_12); prep(swim_NN_2_18, through_IN_3_23); punct(swim_NN_2_18, ,_,_10_59); partmod(swim_NN_2_18, entering_VBG_11_61); punct(swim_NN_2_18, ._._19_121); pobj(through_IN_3_23, film_NN_5_33); det(film_NN_5_33, a_DT_4_31); prep(film_NN_5_33, of_IN_6_38); pobj(of_IN_6_38, water_NN_7_41); prep(water_NN_7_41, toward_IN_8_47); pobj(toward_IN_8_47, eggs_NNS_9_54); dobj(entering_VBG_11_61, archegonia_NN_13_74); prep(entering_VBG_11_61, in_IN_14_85); det(archegonia_NN_13_74, the_DT_12_70); pobj(in_IN_14_85, response_NN_15_88); prep(response_NN_15_88, to_TO_16_97); pobj(to_TO_16_97, attractants_NNS_18_109); nn(attractants_NNS_18_109, chemical_NN_17_100) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.24007594315179578 0.0067 640 0.7142857142857143 (it; to suffer from; the high cost carrying nonperforming assets) false false Moody 's said it expects Valley National , of Phoenix , Ariz . , to make substantial further provisions against its real-estate portfolio , and that it continues to suffer from the high cost of carrying nonperforming assets , and from high loan-loss provisions . possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0067 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.23864402766794252 0.9555 641 0.7146042363433668 (he; was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore in; 1972) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9555 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.23342222907298363 0.0132 642 0.7149220489977728 (Equitec; would be replace under; the proposal) false false Under the proposal by Equitec , a financially troubled real-estate syndicator , New York-based Hallwood Group Inc. would replace Equitec as the newly formed master limited partnership 's general partner and manager . pobj(Under_IN_0_0, proposal_NN_2_10); det(proposal_NN_2_10, the_DT_1_6); prep(proposal_NN_2_10, by_IN_3_19); pobj(by_IN_3_19, Equitec_NNP_4_22); punct(Equitec_NNP_4_22, ,_,_5_30); appos(Equitec_NNP_4_22, syndicator_NN_10_67); punct(Equitec_NNP_4_22, ,_,_11_78); conj(Equitec_NNP_4_22, Inc._NNP_16_110); advmod(troubled_JJ_8_46, financially_RB_7_34); det(syndicator_NN_10_67, a_DT_6_32); amod(syndicator_NN_10_67, troubled_JJ_8_46); nn(syndicator_NN_10_67, real-estate_NN_9_55); dep(York-based_JJ_13_84, New_NNP_12_80); amod(Inc._NNP_16_110, York-based_JJ_13_84); nn(Inc._NNP_16_110, Hallwood_NNP_14_95); nn(Inc._NNP_16_110, Group_NNP_15_104); prep(replace_VB_18_121, Under_IN_0_0); aux(replace_VB_18_121, would_MD_17_115); dobj(replace_VB_18_121, Equitec_NNP_19_129); prep(replace_VB_18_121, as_IN_20_137); punct(replace_VB_18_121, ._._32_215); pobj(as_IN_20_137, partner_NN_29_195); advmod(formed_JJ_23_150, newly_RB_22_144); det(partnership_NN_26_172, the_DT_21_140); amod(partnership_NN_26_172, formed_JJ_23_150); nn(partnership_NN_26_172, master_NN_24_157); amod(partnership_NN_26_172, limited_JJ_25_164); possessive(partnership_NN_26_172, 's_POS_27_184); poss(partner_NN_29_195, partnership_NN_26_172); amod(partner_NN_29_195, general_JJ_28_187); cc(partner_NN_29_195, and_CC_30_203); conj(partner_NN_29_195, manager_NN_31_207) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.22943532654374016 0.0444 643 0.7152391546162402 (adaptations; have evolved enable most aquatic animals to be very efficient in gas exchange in; the context of these challenges) false false In the context of these challenges , adaptations have evolved that enable most aquatic animals to be very efficient in gas exchange . pobj(In_IN_0_0, context_NN_2_7); det(context_NN_2_7, the_DT_1_3); prep(context_NN_2_7, of_IN_3_15); pobj(of_IN_3_15, challenges_NNS_5_24); det(challenges_NNS_5_24, these_DT_4_18); prep(evolved_VBN_9_54, In_IN_0_0); punct(evolved_VBN_9_54, ,_,_6_35); nsubj(evolved_VBN_9_54, adaptations_NNS_7_37); aux(evolved_VBN_9_54, have_VBP_8_49); dobj(evolved_VBN_9_54, that_IN_10_62); punct(evolved_VBN_9_54, ._._22_132); pcomp(that_IN_10_62, enable_VB_11_67); dobj(enable_VB_11_67, animals_NNS_14_87); advmod(aquatic_JJ_13_79, most_RBS_12_74); amod(animals_NNS_14_87, aquatic_JJ_13_79); xcomp(animals_NNS_14_87, efficient_JJ_18_106); aux(efficient_JJ_18_106, to_TO_15_95); cop(efficient_JJ_18_106, be_VB_16_98); advmod(efficient_JJ_18_106, very_RB_17_101); prep(efficient_JJ_18_106, in_IN_19_116); pobj(in_IN_19_116, exchange_NN_21_123); nn(exchange_NN_21_123, gas_NN_20_119) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0444 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.22447191468175065 0.0191 643 0.7144444444444444 (he; is not captured; home) false false However his father , Whitechapel , betrays his whereabouts , fearing that his son will die if he is not captured and returned home to the plantation . poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0191 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1 0.22277700681354495 0.111 644 0.7147613762486127 (the freeway segment; be known as; the Cypress structure) false false The failure in Oakland of the freeway segment known as the Cypress structure was the deadliest aspect of the quake , although officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared . det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.111 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.2227673107089999 0.7345 645 0.7150776053215078 (the band; reached a wider audience supporting U.S. goth-metal act Type O Negative in; 1997) false false In 1997 the band reached a wider audience supporting U.S. goth-metal act Type O Negative . pobj(In_IN_0_0, 1997_CD_1_3); det(band_NN_3_12, the_DT_2_8); prep(reached_VBD_4_17, In_IN_0_0); nsubj(reached_VBD_4_17, band_NN_3_12); dobj(reached_VBD_4_17, audience_NN_7_33); punct(reached_VBD_4_17, ._._15_89); det(audience_NN_7_33, a_DT_5_25); amod(audience_NN_7_33, wider_JJR_6_27); partmod(audience_NN_7_33, supporting_VBG_8_42); dobj(supporting_VBG_8_42, Negative_NNP_14_80); nn(Negative_NNP_14_80, U.S._NNP_9_53); nn(Negative_NNP_14_80, goth-metal_NN_10_58); nn(Negative_NNP_14_80, act_NN_11_69); nn(Negative_NNP_14_80, Type_NNP_12_73); nn(Negative_NNP_14_80, O_NNP_13_78) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.22254466022892352 0.0079 645 0.7142857142857143 (it; be breaking into; its parts) false false On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.22163287485371197 0.006 645 0.713495575221239 (he; said of; I) false false " I do n't know what it means over the long run , but for the short term , it appears that gold producers are grateful for the $ 10 or so that gold has risen over the past week or so , " he said . nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.006 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 1.0 1 0.21851645044959095 0.1443 646 0.7138121546961326 (Susan; phones the real estate agency to tell; Jerry) false false After Jim stops by , Susan phones the real estate agency to tell Jerry that someone was looking for him , only to be informed that Jerry had quit several days ago . pobj(After_IN_0_0, Jim_NNP_1_6); prep(stops_VBZ_2_10, After_IN_0_0); ccomp(stops_VBZ_2_10, phones_VBZ_6_27); punct(stops_VBZ_2_10, ._._32_163); complm(phones_VBZ_6_27, by_IN_3_16); punct(phones_VBZ_6_27, ,_,_4_19); nsubj(phones_VBZ_6_27, Susan_NNP_5_21); dobj(phones_VBZ_6_27, agency_NN_10_50); xcomp(phones_VBZ_6_27, tell_VB_12_60); det(agency_NN_10_50, the_DT_7_34); amod(agency_NN_10_50, real_JJ_8_38); nn(agency_NN_10_50, estate_NN_9_43); aux(tell_VB_12_60, to_TO_11_57); dobj(tell_VB_12_60, Jerry_NNP_13_65); ccomp(tell_VB_12_60, looking_VBG_17_88); punct(tell_VB_12_60, ,_,_20_104); dep(tell_VB_12_60, informed_VBN_24_117); complm(looking_VBG_17_88, that_IN_14_71); nsubj(looking_VBG_17_88, someone_NN_15_76); aux(looking_VBG_17_88, was_VBD_16_84); prep(looking_VBG_17_88, for_IN_18_96); pobj(for_IN_18_96, him_PRP_19_100); advmod(informed_VBN_24_117, only_RB_21_106); aux(informed_VBN_24_117, to_TO_22_111); auxpass(informed_VBN_24_117, be_VB_23_114); ccomp(informed_VBN_24_117, quit_VBN_28_141); complm(quit_VBN_28_141, that_IN_25_126); nsubj(quit_VBN_28_141, Jerry_NNP_26_131); aux(quit_VBN_28_141, had_VBD_27_137); advmod(quit_VBN_28_141, ago_RB_31_159); amod(days_NNS_30_154, several_JJ_29_146); dep(ago_RB_31_159, days_NNS_30_154) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1443 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.2182239652508405 0.0084 646 0.7130242825607064 (Mr. Inouye; is; able) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0084 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.21709886071443948 0.0416 647 0.7133406835722161 (76 %; have; a favorable opinion of her) false false Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . pobj(Among_IN_0_0, professionals_NNS_1_6); num(%_NN_4_25, 76_CD_3_22); prep(have_VBP_5_27, Among_IN_0_0); punct(have_VBP_5_27, ,_,_2_20); nsubj(have_VBP_5_27, %_NN_4_25); dobj(have_VBP_5_27, opinion_NN_8_44); punct(have_VBP_5_27, ,_,_11_59); prep(have_VBP_5_27, compared_VBN_12_61); punct(have_VBP_5_27, ._._23_120); det(opinion_NN_8_44, a_DT_6_32); amod(opinion_NN_8_44, favorable_JJ_7_34); prep(opinion_NN_8_44, of_IN_9_52); pobj(of_IN_9_52, her_PRP_10_55); dep(compared_VBN_12_61, to_TO_13_70); pobj(to_TO_13_70, %_NN_15_76); num(%_NN_15_76, 62_CD_14_73); rcmod(%_NN_15_76, approve_VB_17_82); nsubj(approve_VB_17_82, who_WP_16_78); prep(approve_VB_17_82, of_IN_18_90); pobj(of_IN_18_90, performance_NN_22_108); poss(husband_NN_20_97, her_PRP$_19_93); possessive(husband_NN_20_97, 's_POS_21_105); poss(performance_NN_22_108, husband_NN_20_97) 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0416 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.21626093986258596 0.1349 647 0.7125550660792952 (scientists and the public; Therefore must assess the possible benefits of transgenic products versus the risks that society is willing to take on; a case-by-case basis) false false Therefore , scientists and the public must assess on a case-by-case basis the possible benefits of transgenic products versus the risks that society is willing to take . cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.21477367315706544 0.0132 647 0.7117711771177118 (a higher level of order; can be not fully explain on; the one hand) false false On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) 0.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.20960831565057927 0.0155 647 0.710989010989011 (0.1 %; be rose on; a seasonally adjusted basis) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.20893674207645418 0.0084 648 0.7113062568605928 (GDP; is; the total value of a nation 's output of goods and services) false false GDP is the total value of a nation 's output of goods and services . nsubj(value_NN_4_17, GDP_NNP_0_0); cop(value_NN_4_17, is_VBZ_1_4); det(value_NN_4_17, the_DT_2_7); amod(value_NN_4_17, total_JJ_3_11); prep(value_NN_4_17, of_IN_5_23); punct(value_NN_4_17, ._._14_67); pobj(of_IN_5_23, output_NN_9_38); det(nation_NN_7_28, a_DT_6_26); possessive(nation_NN_7_28, 's_POS_8_35); poss(output_NN_9_38, nation_NN_7_28); prep(output_NN_9_38, of_IN_10_45); pobj(of_IN_10_45, goods_NNS_11_48); cc(goods_NNS_11_48, and_CC_12_54); conj(goods_NNS_11_48, services_NNS_13_58) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0084 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0 0.2087794370410841 0.0079 648 0.7105263157894737 (countryman Tommy Robredo; be defeating in; the first round and Italian Davide Sanguinetti) false false He reached the third round at the U.S. Open , where he lost to Thai Paradorn Srichaphan after defeating countryman Tommy Robredo in the first round and Italian Davide Sanguinetti in the second round . nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.2087794370410841 0.0079 648 0.7097480832420592 (its women 's magazine portfolio; be selling to; the Meredith Corporation and its business magazine portfolio) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.2087794370410841 0.0079 649 0.7100656455142232 (demos; be recording for; their next album) false false The band began recording demos for their next album at The Gallows Studio in Muncie , Indiana . det(band_NN_1_4, The_DT_0_0); nsubj(began_VBD_2_9, band_NN_1_4); xcomp(began_VBD_2_9, recording_VBG_3_15); punct(began_VBD_2_9, ._._17_94); dobj(recording_VBG_3_15, demos_NN_4_25); prep(recording_VBG_3_15, for_IN_5_31); pobj(for_IN_5_31, album_NN_8_46); poss(album_NN_8_46, their_PRP$_6_35); amod(album_NN_8_46, next_JJ_7_41); prep(album_NN_8_46, at_IN_9_52); pobj(at_IN_9_52, Studio_NNP_12_67); det(Studio_NNP_12_67, The_DT_10_55); nn(Studio_NNP_12_67, Gallows_NNP_11_59); prep(Studio_NNP_12_67, in_IN_13_74); pobj(in_IN_13_74, Muncie_NNP_14_77); punct(Muncie_NNP_14_77, ,_,_15_84); appos(Muncie_NNP_14_77, Indiana_NNP_16_86) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.20810428267890088 0.1349 649 0.7092896174863388 (we; can not fully explain a higher level of order on; the one hand) false false On the one hand , we can not fully explain a higher level of order by breaking it down into its parts . pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 1 0.2080512889741795 0.7345 650 0.7096069868995634 (he; led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol as; Commanding General of the newly formed Eighth Army) false false As Commanding General of the newly formed Eighth Army , he led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol . pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.7345 1.0 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.20719804071979295 0.0079 651 0.7099236641221374 (the soil; be affecting in; a way) false false The data support the hypothesis that garlic mustard suppresses growth of native trees by affecting the soil in a way that disrupts mutualistic associations between the trees and arbuscular mycorrhizal fungi . det(data_NNS_1_4, The_DT_0_0); nsubj(support_VBP_2_9, data_NNS_1_4); dobj(support_VBP_2_9, hypothesis_NN_4_21); punct(support_VBP_2_9, ._._31_207); det(hypothesis_NN_4_21, the_DT_3_17); prep(hypothesis_NN_4_21, that_IN_5_32); pobj(that_IN_5_32, growth_NN_9_63); amod(growth_NN_9_63, garlic_JJ_6_37); nn(growth_NN_9_63, mustard_NN_7_44); nn(growth_NN_9_63, suppresses_NNS_8_52); prep(growth_NN_9_63, of_IN_10_70); prep(growth_NN_9_63, by_IN_13_86); pobj(of_IN_10_70, trees_NNS_12_80); amod(trees_NNS_12_80, native_JJ_11_73); pcomp(by_IN_13_86, affecting_VBG_14_89); dobj(affecting_VBG_14_89, soil_NN_16_103); prep(affecting_VBG_14_89, in_IN_17_108); det(soil_NN_16_103, the_DT_15_99); pobj(in_IN_17_108, way_NN_19_113); det(way_NN_19_113, a_DT_18_111); prep(way_NN_19_113, that_IN_20_117); nsubj(that_IN_20_117, associations_NNS_23_143); nn(associations_NNS_23_143, disrupts_NNS_21_122); amod(associations_NNS_23_143, mutualistic_JJ_22_131); prep(associations_NNS_23_143, between_IN_24_156); pobj(between_IN_24_156, trees_NNS_26_168); det(trees_NNS_26_168, the_DT_25_164); cc(trees_NNS_26_168, and_CC_27_174); conj(trees_NNS_26_168, fungi_NNS_30_201); amod(fungi_NNS_30_201, arbuscular_JJ_28_178); amod(fungi_NNS_30_201, mycorrhizal_JJ_29_189) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0 0.20374160519204396 0.3797 651 0.7091503267973857 (Jr.; linked; Senator Panfilo Lacson) false false Armed Forces of the Philippines chief of staff General Hermogenes Esperon , Jr. linked Senator Panfilo Lacson to the February 6 , 2005 Coup d 'etat plot . nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.2016678985903059 0.0444 651 0.7083786724700761 (chemiosmosis; has helped of; its central importance) false false Because of its central importance to energy conversions in prokaryotes and eukaryotes , chemiosmosis has helped unify the study of bioenergetics . dep(of_IN_1_8, Because_IN_0_0); pobj(of_IN_1_8, importance_NN_4_23); poss(importance_NN_4_23, its_PRP$_2_11); amod(importance_NN_4_23, central_JJ_3_15); prep(importance_NN_4_23, to_TO_5_34); prep(importance_NN_4_23, in_IN_8_56); pobj(to_TO_5_34, conversions_NNS_7_44); nn(conversions_NNS_7_44, energy_NN_6_37); pobj(in_IN_8_56, prokaryotes_NNS_9_59); cc(prokaryotes_NNS_9_59, and_CC_10_71); conj(prokaryotes_NNS_9_59, eukaryotes_NNS_11_75); prep(helped_VBN_15_105, of_IN_1_8); punct(helped_VBN_15_105, ,_,_12_86); nsubj(helped_VBN_15_105, chemiosmosis_NN_13_88); aux(helped_VBN_15_105, has_VBZ_14_101); prep(helped_VBN_15_105, unify_IN_16_112); punct(helped_VBN_15_105, ._._21_145); pobj(unify_IN_16_112, study_NN_18_122); det(study_NN_18_122, the_DT_17_118); prep(study_NN_18_122, of_IN_19_128); pobj(of_IN_19_128, bioenergetics_NNS_20_131) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0444 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.2010895709903177 0.0079 651 0.7076086956521739 (Mr. Miller; said; response) false false In response to questions after the annual meeting , Mr. Miller said the company is no longer looking for an equity investor . pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0079 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.1971501007736681 0.0444 651 0.7068403908794788 (chemiosmosis; its central importance to energy conversions in prokaryotes and eukaryotes , chemiosmosis has helped unify; the study of bioenergetics) false false Because of its central importance to energy conversions in prokaryotes and eukaryotes , chemiosmosis has helped unify the study of bioenergetics . dep(of_IN_1_8, Because_IN_0_0); pobj(of_IN_1_8, importance_NN_4_23); poss(importance_NN_4_23, its_PRP$_2_11); amod(importance_NN_4_23, central_JJ_3_15); prep(importance_NN_4_23, to_TO_5_34); prep(importance_NN_4_23, in_IN_8_56); pobj(to_TO_5_34, conversions_NNS_7_44); nn(conversions_NNS_7_44, energy_NN_6_37); pobj(in_IN_8_56, prokaryotes_NNS_9_59); cc(prokaryotes_NNS_9_59, and_CC_10_71); conj(prokaryotes_NNS_9_59, eukaryotes_NNS_11_75); prep(helped_VBN_15_105, of_IN_1_8); punct(helped_VBN_15_105, ,_,_12_86); nsubj(helped_VBN_15_105, chemiosmosis_NN_13_88); aux(helped_VBN_15_105, has_VBZ_14_101); prep(helped_VBN_15_105, unify_IN_16_112); punct(helped_VBN_15_105, ._._21_145); pobj(unify_IN_16_112, study_NN_18_122); det(study_NN_18_122, the_DT_17_118); prep(study_NN_18_122, of_IN_19_128); pobj(of_IN_19_128, bioenergetics_NNS_20_131) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0444 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.19148155610938786 0.7345 652 0.7071583514099783 (Rage; left the music industry generally to focus on acting , appearing in an episode of Kenan & Kel after; the release of her album and a guest-appearance) false false After the release of her album and a guest-appearance with Gang Starr alongside Kurupt in 1998 , Rage left Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel . pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 1.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.18521423976058438 0.7345 652 0.7063921993499458 (July; saw bringing to; an ignominious close)[enabler=As if early elimination from the playoff race was n't enough] true false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.7345 0.0 0.0 0.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0 0.17953692638336752 0.0155 652 0.7056277056277056 (their first live show; Now Ian Butterworth guitar Roger Wikeley bass keyboards the band performed in; nearly two decades) false false Now with Ian Butterworth on guitar and Roger Wikeley on bass and keyboards the band performed their first live show in nearly two decades at their hometown Poulton-Le-Fylde in May 2006 followed by dates in Blackpool , Paris , Brussels , Leicester , London and Athens . dep(Now_RB_0_0, with_IN_1_4); cc(Now_RB_0_0, and_CC_11_61); conj(Now_RB_0_0, keyboards_VBD_12_65); pobj(with_IN_1_4, Butterworth_NNP_3_13); dep(with_IN_1_4, on_IN_4_25); nn(Butterworth_NNP_3_13, Ian_NNP_2_9); pobj(on_IN_4_25, guitar_NN_5_28); cc(guitar_NN_5_28, and_CC_6_35); conj(guitar_NN_5_28, Wikeley_NNP_8_45); prep(guitar_NN_5_28, on_IN_9_53); nn(Wikeley_NNP_8_45, Roger_NNP_7_39); pobj(on_IN_9_53, bass_NN_10_56); dobj(keyboards_VBD_12_65, band_NN_14_79); det(band_NN_14_79, the_DT_13_75); advmod(performed_VBD_15_84, Now_RB_0_0); dobj(performed_VBD_15_84, show_NN_19_111); prep(performed_VBD_15_84, in_IN_20_116); prep(performed_VBD_15_84, in_IN_28_173); prep(performed_VBD_15_84, followed_VBN_31_185); punct(performed_VBD_15_84, ._._46_267); poss(show_NN_19_111, their_PRP$_16_94); amod(show_NN_19_111, first_JJ_17_100); amod(show_NN_19_111, live_JJ_18_106); pobj(in_IN_20_116, decades_NNS_23_130); quantmod(two_CD_22_126, nearly_RB_21_119); num(decades_NNS_23_130, two_CD_22_126); prep(decades_NNS_23_130, at_IN_24_138); pobj(at_IN_24_138, hometown_NN_26_147); poss(hometown_NN_26_147, their_PRP$_25_141); dep(hometown_NN_26_147, Poulton-Le-Fylde_NNP_27_156); pobj(in_IN_28_173, May_NNP_29_176); num(May_NNP_29_176, 2006_CD_30_180); prep(followed_VBN_31_185, by_IN_32_194); pobj(by_IN_32_194, dates_NNS_33_197); prep(dates_NNS_33_197, in_IN_34_203); pobj(in_IN_34_203, Blackpool_NNP_35_206); punct(Blackpool_NNP_35_206, ,_,_36_216); conj(Blackpool_NNP_35_206, Paris_NNP_37_218); punct(Blackpool_NNP_35_206, ,_,_38_224); conj(Blackpool_NNP_35_206, Brussels_NNP_39_226); punct(Blackpool_NNP_35_206, ,_,_40_235); conj(Blackpool_NNP_35_206, Leicester_NNP_41_237); punct(Blackpool_NNP_35_206, ,_,_42_247); conj(Blackpool_NNP_35_206, London_NNP_43_249); cc(Blackpool_NNP_35_206, and_CC_44_256); conj(Blackpool_NNP_35_206, Athens_NNP_45_260) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.17876001014411533 0.3797 653 0.705945945945946 (Sivanath Sastri , Nilratan Sircar and Dwarkanath Ganguly; Immediately instituted; legal action) false false Immediately , Sivanath Sastri , Nilratan Sircar and Dwarkanath Ganguly , instituted legal action against the journal and its editor , who was subsequently sentenced to six months imprisonment and made to pay a fine of one hundred rupees . nn(Sastri_NNP_3_23, Sivanath_NNP_2_14); punct(Sastri_NNP_3_23, ,_,_4_30); conj(Sastri_NNP_3_23, Sircar_NNP_6_41); cc(Sastri_NNP_3_23, and_CC_7_48); conj(Sastri_NNP_3_23, Ganguly_NNP_9_63); punct(Sastri_NNP_3_23, ,_,_10_71); nn(Sircar_NNP_6_41, Nilratan_NNP_5_32); nn(Ganguly_NNP_9_63, Dwarkanath_NNP_8_52); advmod(instituted_VBD_11_73, Immediately_RB_0_0); punct(instituted_VBD_11_73, ,_,_1_12); nsubj(instituted_VBD_11_73, Sastri_NNP_3_23); dobj(instituted_VBD_11_73, action_NN_13_90); punct(instituted_VBD_11_73, ._._39_237); amod(action_NN_13_90, legal_JJ_12_84); prep(action_NN_13_90, against_IN_14_97); pobj(against_IN_14_97, journal_NN_16_109); det(journal_NN_16_109, the_DT_15_105); cc(journal_NN_16_109, and_CC_17_117); conj(journal_NN_16_109, editor_NN_19_125); punct(journal_NN_16_109, ,_,_20_132); rcmod(journal_NN_16_109, sentenced_VBN_24_155); poss(editor_NN_19_125, its_PRP$_18_121); nsubjpass(sentenced_VBN_24_155, who_WP_21_134); auxpass(sentenced_VBN_24_155, was_VBD_22_138); advmod(sentenced_VBN_24_155, subsequently_RB_23_142); prep(sentenced_VBN_24_155, to_TO_25_165); punct(sentenced_VBN_24_155, imprisonment_,_28_179); cc(sentenced_VBN_24_155, and_CC_29_192); conj(sentenced_VBN_24_155, made_VBD_30_196); pobj(to_TO_25_165, months_NNS_27_172); num(months_NNS_27_172, six_CD_26_168); xcomp(made_VBD_30_196, pay_VB_32_204); aux(pay_VB_32_204, to_TO_31_201); dobj(pay_VB_32_204, fine_NN_34_210); det(fine_NN_34_210, a_DT_33_208); prep(fine_NN_34_210, of_IN_35_215); pobj(of_IN_35_215, rupees_NNS_38_230); number(hundred_CD_37_222, one_CD_36_218); num(rupees_NNS_38_230, hundred_CD_37_222) 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.17805830632398745 0.0054 653 0.7051835853131749 (Mr. Inouye; to insert; a claim) false false Jamaica , wary of upsetting its Caribbean Basin allies , has apparently instructed its lobbyist to abandon the provision initially drafted by Mr. Gray , but the greater question is whether Mr. Inouye , who has strong ties to the sugar industry , is able to insert a claim by the Philippines . punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0054 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.17757573578880137 0.0577 654 0.7055016181229773 (he; besieged; the town) false false But when the Aetolians realised that Rome was to rule the Greek cities and asked Antiochus III the Great of Syria for help , the Roman general Manius Acilius Glabrio seized Lamia and advanced to Amfissa , where he conquered the Crissaean plain and besieged the town in 190 BC . det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0577 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0 0.1763505556877926 0.3797 654 0.7047413793103449 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing; an 11-yard sack of Brady) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 1.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.171405556467821 0.0079 654 0.7039827771797632 (13-0; be trailing in; the ninth inning)[enabler=when Manager Bill McKechnie called on Nuxhall to enter the game] true false On June 10 , the Reds were playing the first place St . Louis Cardinals at Crosley Field and trailing 13-0 in the ninth inning when Manager Bill McKechnie called on Nuxhall to enter the game . pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) 1.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0079 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.16973592019305225 1.0 654 0.7032258064516129 (the potentially fatal disease botulism; is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , in; another example) false false In another example , the potentially fatal disease botulism is caused by botulinum toxin , an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables . pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.16770193788121904 0.2444 655 0.7035445757250268 (he; expects to name a new group president to head that operation following; the Nov. 8 board meeting)[attrib=Mr. Bailey said] false true Mr. Bailey said he expects to name a new group president to head that operation following the Nov. 8 board meeting . nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.2444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.16532737265460923 0.7345 655 0.7027896995708155 (the Appropriations Committee leadership; turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months on; back-to-back roll calls) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.16256196782354992 0.0155 655 0.7020364415862809 (the coffins of captured Israeli soldiers; be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.16256196782354992 0.0155 655 0.7012847965738758 (the coffins of captured Israeli soldiers; be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in; exchange) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.16136428146081588 0.7345 656 0.7016042780748664 (Gruner + Jahr; exited the U.S. magazine business selling its women 's magazine portfolio to; the Meredith Corporation and its business magazine portfolio) false false In 2005 , Gruner + Jahr exited the U.S. magazine business , selling its women 's magazine portfolio to the Meredith Corporation and its business magazine portfolio to Mansueto Ventures . pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.15589581465104194 0.0155 656 0.7008547008547008 (efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy; be turned back on; back-to-back roll calls) false false And on back-to-back roll calls , 206-199 and 223-178 , the Appropriations Committee leadership turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months . pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.15461839701478508 0.0305 656 0.7001067235859125 (its common stock dividend; be reinstated in; this year) false false CMS ENERGY Corp. said management would recommend to its board today that its common stock dividend be reinstated at a " modest level " later this year . nn(Corp._NNP_2_11, CMS_NNP_0_0); nn(Corp._NNP_2_11, ENERGY_NNP_1_4); nsubj(said_VBD_3_17, Corp._NNP_2_11); ccomp(said_VBD_3_17, recommend_VB_6_39); punct(said_VBD_3_17, ._._27_151); nsubj(recommend_VB_6_39, management_NN_4_22); aux(recommend_VB_6_39, would_MD_5_33); prep(recommend_VB_6_39, to_TO_7_49); tmod(recommend_VB_6_39, today_NN_10_62); ccomp(recommend_VB_6_39, reinstated_VBN_17_102); pobj(to_TO_7_49, board_NN_9_56); poss(board_NN_9_56, its_PRP$_8_52); poss(dividend_NN_15_90, its_PRP$_12_73); amod(dividend_NN_15_90, common_JJ_13_77); nn(dividend_NN_15_90, stock_NN_14_84); complm(reinstated_VBN_17_102, that_IN_11_68); nsubjpass(reinstated_VBN_17_102, dividend_NN_15_90); auxpass(reinstated_VBN_17_102, be_VB_16_99); prep(reinstated_VBN_17_102, at_IN_18_113); tmod(reinstated_VBN_17_102, year_NN_26_146); pobj(at_IN_18_113, level_NN_22_127); det(level_NN_22_127, a_DT_19_116); punct(level_NN_22_127, "_``_20_118); amod(level_NN_22_127, modest_JJ_21_120); punct(level_NN_22_127, "_''_23_133); advmod(year_NN_26_146, later_RB_24_135); det(year_NN_26_146, this_DT_25_141) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0305 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1 0.14704461479396946 0.3797 657 0.7004264392324094 (July; saw suffer; two 8-0 demolitions)[enabler=As if early elimination from the playoff race was n't enough] true false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.3797 0.0 1.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0 0.14281035771963146 0.0071 657 0.6996805111821086 (1980; came to; He) false false He came to Tehran in 1980 and continued studying traditional arrangements under Mohammad Reza Lotfi and his brother Pashang . nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0071 0.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1 0.14232393373584143 0.1473 658 0.7 (Dr. Novello; would succeed; C. Everett Koop)[enabler=If she is nominated by President Bush and confirmed by the Senate] true false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 1.0 1.0 1.0 0.0 0.1473 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.13456659745447175 0.3797 658 0.6992561105207227 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling; quarterback Tom Brady) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.3797 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.1314968860500101 0.0155 658 0.6985138004246284 (0.1 %; be rose in; September) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.1314968860500101 0.0155 658 0.6977730646871686 (the coffins of captured Israeli soldiers; be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.1314968860500101 0.0155 658 0.6970338983050848 (the coffins of captured Israeli soldiers; be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on; July 16 2008) false false On July 16 2008 , Hezbollah transferred the coffins of captured Israeli soldiers , Ehud Goldwasser and Eldad Regev , in exchange for Samir Kuntar and four other Hezbollah members captured by Israel during the 2006 Lebanon War , as well as the remains of 199 Lebanese and Palestinians . pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.13137131096445323 0.0155 658 0.6962962962962963 (0.1 %; be rose from; the previous month) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.13137131096445323 0.0155 658 0.6955602536997886 (0.1 %; be rose to; 2.5 million) false false In September , the number of jobless rose 0.1 % from the previous month to 2.5 million on a seasonally adjusted basis . pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) 1.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0.12054297199339997 0.0079 658 0.6948257655755016 (Singer Bette Midler; won a $ 400,000 federal court jury verdict against Young & Rubicam; a case that threatens a popular advertising industry practice) false false Singer Bette Midler won a $ 400,000 federal court jury verdict against Young & Rubicam in a case that threatens a popular advertising industry practice of using " sound-alike " performers to tout products . nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0079 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0 0.11816614735714406 0.7345 658 0.6940928270042194 (he; had three tackles including 1.5 sacks for a total of 10.5 yards in losses on; December 10) false false On December 10 against the New England Patriots , he had three tackles including 1.5 sacks for a total of 10.5 yards in losses , tackling quarterback Tom Brady for a five-yard loss and sharing an 11-yard sack of Brady with defensive tackle Vonnie Holliday . pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7345 0.0 1.0 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.11729588290783442 0.1349 659 0.6944151738672286 (the team; suffer two 8-0 demolitions by; Des Moines Menace and in the last game of the season) false false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.1349 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.11420136506504475 0.0509 659 0.6936842105263158 (PLC; has practiced law with; Boult) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0509 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.11420136506504475 0.0509 659 0.6929547844374343 (PLC; has practiced law with; Boult) false false She has practiced law with Boult , Cummings , Conners & Berry , PLC in Nashville : Cunningham , Mitchell , Hicks & McMillan , in Clarksville : and with her husband in McMillan and McMillan , the Clarksville firm they founded . nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0509 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.11360950693592399 0.1349 660 0.6932773109243697 (he; will receive an $ 107,500 annually , or $ 537,000 total , from; the Booster club) false false As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . pobj(As_IN_0_0, part_NN_2_5); det(part_NN_2_5, a_DT_1_3); prep(part_NN_2_5, of_IN_3_10); pobj(of_IN_3_10, agreement_NN_7_28); nn(Bowden_NNP_5_18, Jeff_NNP_4_13); possessive(Bowden_NNP_5_18, 's_POS_6_25); poss(agreement_NN_7_28, Bowden_NNP_5_18); prep(agreement_NN_7_28, with_IN_8_38); pobj(with_IN_8_38, State_NNP_10_51); nn(State_NNP_10_51, Florida_NNP_9_43); cc(State_NNP_10_51, and_CC_11_57); conj(State_NNP_10_51, Boosters_NNP_13_70); punct(State_NNP_10_51, ,_,_14_79); appos(State_NNP_10_51, Inc._NNP_15_81); nn(Boosters_NNP_13_70, Seminole_NNP_12_61); prep(receive_VB_19_96, As_IN_0_0); punct(receive_VB_19_96, ,_,_16_86); nsubj(receive_VB_19_96, he_PRP_17_88); aux(receive_VB_19_96, will_MD_18_91); dobj(receive_VB_19_96, an_DT_20_104); prep(receive_VB_19_96, through_IN_30_147); prep(receive_VB_19_96, from_IN_33_167); punct(receive_VB_19_96, ._._37_189); dobj(an_DT_20_104, $_$_21_107); dep($_$_21_107, 107,500_CD_22_108); advmod($_$_21_107, annually_RB_23_116); punct($_$_21_107, ,_,_24_125); cc($_$_21_107, or_CC_25_127); conj($_$_21_107, total_NN_28_139); punct($_$_21_107, ,_,_29_145); dep($_$_26_130, 537,000_CD_27_131); amod(total_NN_28_139, $_$_26_130); pobj(through_IN_30_147, August_NNP_31_155); num(August_NNP_31_155, 2012_CD_32_162); pobj(from_IN_33_167, club_NN_36_184); det(club_NN_36_184, the_DT_34_172); nn(club_NN_36_184, Booster_NNP_35_176) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.10183616495893723 0.0132 661 0.6935991605456453 (two 8-0 demolitions; be suffer by; Des Moines Menace and in the last game of the season) false false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0132 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.0981908038196948 0.1349 661 0.6928721174004193 (workers; would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year in; the second year) false false In the second year , workers would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year . pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) 1.0 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.09287150831236092 0.0307 662 0.6931937172774869 (76 %; have a favorable opinion of her among; professionals) false false Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . pobj(Among_IN_0_0, professionals_NNS_1_6); num(%_NN_4_25, 76_CD_3_22); prep(have_VBP_5_27, Among_IN_0_0); punct(have_VBP_5_27, ,_,_2_20); nsubj(have_VBP_5_27, %_NN_4_25); dobj(have_VBP_5_27, opinion_NN_8_44); punct(have_VBP_5_27, ,_,_11_59); prep(have_VBP_5_27, compared_VBN_12_61); punct(have_VBP_5_27, ._._23_120); det(opinion_NN_8_44, a_DT_6_32); amod(opinion_NN_8_44, favorable_JJ_7_34); prep(opinion_NN_8_44, of_IN_9_52); pobj(of_IN_9_52, her_PRP_10_55); dep(compared_VBN_12_61, to_TO_13_70); pobj(to_TO_13_70, %_NN_15_76); num(%_NN_15_76, 62_CD_14_73); rcmod(%_NN_15_76, approve_VB_17_82); nsubj(approve_VB_17_82, who_WP_16_78); prep(approve_VB_17_82, of_IN_18_90); pobj(of_IN_18_90, performance_NN_22_108); poss(husband_NN_20_97, her_PRP$_19_93); possessive(husband_NN_20_97, 's_POS_21_105); poss(performance_NN_22_108, husband_NN_20_97) 1.0 1.0 1.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0307 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.09127825067320518 0.0509 662 0.6924686192468619 (2003; be released on; March 6) false false Amuro returned to solo activities on her own with the single " Shine More " , released on March 6 , 2003 . nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0509 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.08526106540263802 0.1473 663 0.6927899686520376 (the team; suffer; two 8-0 demolitions) false false As if early elimination from the playoff race was n't enough , July saw the team suffer two 8-0 demolitions by Des Moines Menace and in the last game of the season at St . Louis Lions , bringing a difficult freshman year to an ignominious close . amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) 0.0 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.1473 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.08254269274013405 0.1349 664 0.6931106471816284 (he; will receive an $ 107,500 annually , or $ 537,000 total , as; a part of Jeff Bowden 's agreement) false false As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . pobj(As_IN_0_0, part_NN_2_5); det(part_NN_2_5, a_DT_1_3); prep(part_NN_2_5, of_IN_3_10); pobj(of_IN_3_10, agreement_NN_7_28); nn(Bowden_NNP_5_18, Jeff_NNP_4_13); possessive(Bowden_NNP_5_18, 's_POS_6_25); poss(agreement_NN_7_28, Bowden_NNP_5_18); prep(agreement_NN_7_28, with_IN_8_38); pobj(with_IN_8_38, State_NNP_10_51); nn(State_NNP_10_51, Florida_NNP_9_43); cc(State_NNP_10_51, and_CC_11_57); conj(State_NNP_10_51, Boosters_NNP_13_70); punct(State_NNP_10_51, ,_,_14_79); appos(State_NNP_10_51, Inc._NNP_15_81); nn(Boosters_NNP_13_70, Seminole_NNP_12_61); prep(receive_VB_19_96, As_IN_0_0); punct(receive_VB_19_96, ,_,_16_86); nsubj(receive_VB_19_96, he_PRP_17_88); aux(receive_VB_19_96, will_MD_18_91); dobj(receive_VB_19_96, an_DT_20_104); prep(receive_VB_19_96, through_IN_30_147); prep(receive_VB_19_96, from_IN_33_167); punct(receive_VB_19_96, ._._37_189); dobj(an_DT_20_104, $_$_21_107); dep($_$_21_107, 107,500_CD_22_108); advmod($_$_21_107, annually_RB_23_116); punct($_$_21_107, ,_,_24_125); cc($_$_21_107, or_CC_25_127); conj($_$_21_107, total_NN_28_139); punct($_$_21_107, ,_,_29_145); dep($_$_26_130, 537,000_CD_27_131); amod(total_NN_28_139, $_$_26_130); pobj(through_IN_30_147, August_NNP_31_155); num(August_NNP_31_155, 2012_CD_32_162); pobj(from_IN_33_167, club_NN_36_184); det(club_NN_36_184, the_DT_34_172); nn(club_NN_36_184, Booster_NNP_35_176) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0 0.08166781495966251 0.0477 664 0.6923879040667362 (pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation; be hybrid sterility for; example) false false For example , hybrid sterility between two subspecies of the fruit fly Drosophila pseudoobscura results from gene interactions among at least four loci , and postzygotic isolation in the sunflower hybrid zone discussed earlier is influenced by at least 26 chromosome segments . pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) 0.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0477 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0 0.07024024418080231 0.0388 664 0.6916666666666667 (he; was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore of; 1972) false false In 1972 he was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore , Inspector of Police in Ruling the Roost and Okano in The Three Arrows at the Arts , Cambridge in October 1972 . pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) 1.0 1.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0388 0.0 0.0 0.0 1.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 1.0 1 0.06811636875046262 0.1349 665 0.6919875130072841 (he; will receive an $ 107,500 annually , or $ 537,000 total , through; August 2012) false false As a part of Jeff Bowden 's agreement with Florida State and Seminole Boosters , Inc. , he will receive an $ 107,500 annually , or $ 537,000 total , through August 2012 from the Booster club . pobj(As_IN_0_0, part_NN_2_5); det(part_NN_2_5, a_DT_1_3); prep(part_NN_2_5, of_IN_3_10); pobj(of_IN_3_10, agreement_NN_7_28); nn(Bowden_NNP_5_18, Jeff_NNP_4_13); possessive(Bowden_NNP_5_18, 's_POS_6_25); poss(agreement_NN_7_28, Bowden_NNP_5_18); prep(agreement_NN_7_28, with_IN_8_38); pobj(with_IN_8_38, State_NNP_10_51); nn(State_NNP_10_51, Florida_NNP_9_43); cc(State_NNP_10_51, and_CC_11_57); conj(State_NNP_10_51, Boosters_NNP_13_70); punct(State_NNP_10_51, ,_,_14_79); appos(State_NNP_10_51, Inc._NNP_15_81); nn(Boosters_NNP_13_70, Seminole_NNP_12_61); prep(receive_VB_19_96, As_IN_0_0); punct(receive_VB_19_96, ,_,_16_86); nsubj(receive_VB_19_96, he_PRP_17_88); aux(receive_VB_19_96, will_MD_18_91); dobj(receive_VB_19_96, an_DT_20_104); prep(receive_VB_19_96, through_IN_30_147); prep(receive_VB_19_96, from_IN_33_167); punct(receive_VB_19_96, ._._37_189); dobj(an_DT_20_104, $_$_21_107); dep($_$_21_107, 107,500_CD_22_108); advmod($_$_21_107, annually_RB_23_116); punct($_$_21_107, ,_,_24_125); cc($_$_21_107, or_CC_25_127); conj($_$_21_107, total_NN_28_139); punct($_$_21_107, ,_,_29_145); dep($_$_26_130, 537,000_CD_27_131); amod(total_NN_28_139, $_$_26_130); pobj(through_IN_30_147, August_NNP_31_155); num(August_NNP_31_155, 2012_CD_32_162); pobj(from_IN_33_167, club_NN_36_184); det(club_NN_36_184, the_DT_34_172); nn(club_NN_36_184, Booster_NNP_35_176) 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1349 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.058232215411916234 0.02 666 0.6923076923076923 (C. Everett Koop; rattled conservatives alike with; his outspoken views) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.02 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.058232215411916234 0.02 667 0.6926272066458983 (C. Everett Koop; rattled liberals alike with; his outspoken views) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.02 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.0579112400897685 0.0155 668 0.6929460580912863 (liberals and conservatives; be rattled alike with; his outspoken views) false false If she is nominated by President Bush and confirmed by the Senate , Dr. Novello would succeed C. Everett Koop , who rattled liberals and conservatives alike with his outspoken views on a range of health issues . mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) 0.0 0.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 0.0155 0.0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1 0.04122387589030051 0.0025 669 0.6932642487046632 (62 %; approve of; her husband 's performance) false false Among professionals , 76 % have a favorable opinion of her , compared to 62 % who approve of her husband 's performance . pobj(Among_IN_0_0, professionals_NNS_1_6); num(%_NN_4_25, 76_CD_3_22); prep(have_VBP_5_27, Among_IN_0_0); punct(have_VBP_5_27, ,_,_2_20); nsubj(have_VBP_5_27, %_NN_4_25); dobj(have_VBP_5_27, opinion_NN_8_44); punct(have_VBP_5_27, ,_,_11_59); prep(have_VBP_5_27, compared_VBN_12_61); punct(have_VBP_5_27, ._._23_120); det(opinion_NN_8_44, a_DT_6_32); amod(opinion_NN_8_44, favorable_JJ_7_34); prep(opinion_NN_8_44, of_IN_9_52); pobj(of_IN_9_52, her_PRP_10_55); dep(compared_VBN_12_61, to_TO_13_70); pobj(to_TO_13_70, %_NN_15_76); num(%_NN_15_76, 62_CD_14_73); rcmod(%_NN_15_76, approve_VB_17_82); nsubj(approve_VB_17_82, who_WP_16_78); prep(approve_VB_17_82, of_IN_18_90); pobj(of_IN_18_90, performance_NN_22_108); poss(husband_NN_20_97, her_PRP$_19_93); possessive(husband_NN_20_97, 's_POS_21_105); poss(performance_NN_22_108, husband_NN_20_97) 1.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0025 0.0 0.0 1.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 ================================================ FILE: core/pom.xml ================================================ 4.0.0 edu.washington.cs.knowitall knowitall-oss 1.0.2 edu.washington.cs.knowitall.ollie ollie-core_2.9.2 1.0.4-SNAPSHOT ollie-core Ollie is an open information extractor for binary relations. https://github.com/knowitall/ollie scm:git://github.com/knowitall/ollie.git scm:git:git@github.com:knowitall/ollie.git HEAD Ollie Software License Agreement https://raw.github.com/knowitall/ollie/master/LICENSE repo University of Washington CSE http://cs.washington.edu/ Michael Schmitz Robert Bart 2012 UTF-8 2.4.1 edu.washington.cs.knowitall.nlptools nlptools-core_2.9.2 ${nlptools.version} edu.washington.cs.knowitall.nlptools nlptools-stem-morpha_2.9.2 ${nlptools.version} edu.washington.cs.knowitall.nlptools nlptools-conf-breeze_2.9.2 ${nlptools.version} org.scalaz scalaz-core_2.9.2 7.0.0 org.slf4j slf4j-api 1.7.2 ch.qos.logback logback-classic 1.0.9 test ch.qos.logback logback-core 1.0.9 test junit junit 4.11 test org.specs2 specs2_2.9.2 1.12.3 test src/main/scala src/test/scala net.alchim31.maven scala-maven-plugin 3.1.1 compile testCompile doc-jar -deprecation -unchecked -Xms128m -Xmx1024m ================================================ FILE: core/project/plugins.sbt ================================================ resolvers += Resolver.url("sbt-plugin-releases", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases")) (Resolver.ivyStylePatterns) addSbtPlugin("com.jsuereth" % "xsbt-gpg-plugin" % "0.6") ================================================ FILE: core/scripts/applypatterns.sh ================================================ # 1 -- patterns # 2 -- sentences mvn -q -e -f ../pom.xml compile exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.PatternExtractor -Dexec.args="--patterns $1 --sentences $2" ================================================ FILE: core/scripts/build_templates.sh ================================================ mkdir "$1/templates/" mvn exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.BuildTemplates -Dexec.args="$1/raw/patterned.txt $1/templates/templates.txt --reltemplates $HOME/public/read/reltemplates.txt --debug $1/templates/" ================================================ FILE: core/scripts/create_patterns.sh ================================================ mvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.BuildTreePatterns -Dexec.args="$1/raw/parsed.txt $1/raw/patterned-all.txt -p --length 3" 2> $1/raw/patterned-all.log ================================================ FILE: core/scripts/create_test_train.sh ================================================ # 1 -- lda directory ROWS="$1/raw/patterned.txt" TEST="$1/raw/test.txt" TRAIN="$1/raw/train.txt" mvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.lda.CreateTestSet -Dexec.args="$ROWS $TEST $TRAIN" ================================================ FILE: core/scripts/extractor.sh ================================================ echo "$*" mvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.OpenParse -Dexec.args="$*" ================================================ FILE: core/scripts/keep_common_patterns.sh ================================================ # 1 -- lda directory cut -f5 "$1/raw/patterned-all.txt" | sort | uniq -c | sort -nr > "$1/raw/patterns.txt" mvn -q -e exec:java -Dexec.mainClass=edu.washington.cs.knowitall.pattern.KeepCommonPatterns -Dexec.args="$1/raw/patterned-all.txt 10" > "$1/raw/patterned.txt" ================================================ FILE: core/src/main/resources/edu/knowitall/ollie/cognitiveWords.txt ================================================ accept admit affirm aim allow apprehend assert attest aver avouch avow believe claim comprehend confirm conjecture consider contend define deny describe discover doubt dream envisage expect fathom feel follow foreknow foresee foretell grant grasp guarantee guess hold hope identify imagine infer intend know maintain mean misapprehend misconstrue misinterpret misunderstand observe plan portray presume prophesy propose reaffirm realize recognize recollect remember report represent repute reveal see show speculate suppose surmise suspect swear think trust understand vaticinate visualize wish yen ================================================ FILE: core/src/main/resources/edu/knowitall/ollie/communicationWords.txt ================================================ acknowledge acquaint add advise affirm allege announce apprise articulate believe blab blurt claim comment communicate confess confide confirm consider convey corroborate declare deem demonstrate disclose divulge elaborate elucidate establish esteem exclaim explain explicate expound feel illustrate imagine inform insinuate insist intimate justify know leak lecture mention moralize narrate note notify observe pose preach proclaim promulgate propose prove rant rate read reaffirm recite reckon recount reiterate relate relay remark remember remind repeat reply report respond retort reveal say see show sniff speak state suppose suspect talk teach tell testify theorize think update utter venture verify view voice write ================================================ FILE: core/src/main/resources/edu/knowitall/ollie/confidence/default-classifier.txt ================================================ args start and end with noun 0.030924657084179144 rel ends with of 0.1013506657501542 arg1 contains pronoun 0.19630801348782667 arg2 contains pronoun -0.13341646099789348 long relation -0.3547145229191737 gap of 10 in rel -0.34306426484946456 vacuous extraction -0.6389807893982924 nn edges in pattern 0.9130032848389 arg1 is proper 0.07933280909554899 Intercept 0.0 sentence begins with arg1 -0.1588407285556643 if right before arg1 -1.2206208992816086 arg2 is proper -0.04306420146120506 arg2 borders appositive -0.0017006187220647805 rel contains gerund -0.26200297625650837 arg1 borders appositive -0.13448972417475485 noun-verb-noun in arg1 0.0 prep right after arg2 0.19212879336967245 prep in arg2 0.16539493294341892 arg2 contains infinitive -0.0 prep mismatch in pattern -0.20092201136389673 sentence is imperative 0.11745202578145564 hyp words in rel -0.1449927441123399 sentence ends with arg2 0.11610654106632967 noun-verb-noun in arg2 0.07217080739835992 rel is contiguous 0.12562188545360878 non-contiguous rel -0.1849662870655201 semantic constraints in pattern -0.4343558913425681 openparse confidence 0.43411514029724824 arg1 bad characters -0.40339032821185783 sentence starts with extraction 0.18854224217974247 arg2 bad characters -0.009939551407472108 rel contains verb 0.4757113580400253 rel starts with be 0.0 prep right before arg1 -0.2350155331052106 sentence has question mark 0.0 arg2 before arg1 -0.35791735399208685 arg2 before rel -0.023882392179128745 rel bad characters -0.11794120943690224 ================================================ FILE: core/src/main/resources/edu/knowitall/ollie/prefixWords.txt ================================================ after although because before but however if once that though when whenever whether where while would ================================================ FILE: core/src/main/resources/edu/knowitall/openparse/categories/location.txt ================================================ abbacy abode abutment abysm abyss acme addition address aerie aerospace aery aim air airhead airspace airway ambiance ambience anchorage angle anomaly antapex antinode antipodes aperture apex aphelion apoapsis apogee apojove apolune aposelene approach apron archbishopric archdeaconry archdiocese archduchy area arena arrowhead ashram asthenosphere atelier atmosphere axil axis azimuth back backside backwater backwoods backyard bailiwick bakehouse bakery bakeshop barb barony barren barrio barycenter base basin battlefield battlefront battleground beachhead beak bearing beat bed bedground bedside beehive beeline beginning belly bellybutton belt bent benthos berm berth bight bilge bilges bilocation bindery biosphere birthplace bishopric bitthead bivouac block boatyard bookbindery boondocks border borderland borderline borough bottom bound boundary bounds bourn bourne bowels breach breadbasket break brickfield brickyard bridgehead brink brokerage brow buffer bull burg bush cabstand caliphate cambium camp campground campong campsite campus canthus canton cap capital capitulum carrefour casbah cavern cavity cell cemetery center centerfield central centre centrex centroid chap chapiter charnel chasm checkpoint chink chokepoint chromosphere churchyard circle circuit circumference circus city clear clearing cleft cloverleaf coalfield coastline col colliery colony columbarium common commons commonwealth commune community compartment confluence conurbation core corium corncob corner corneum cornfield country countryside county course court cowtown crack cradle cranny crawlspace creamery crenel crenelle crest crevasse crevice crinion croft crosscut crossing crossroad crossway crotch crown crud crust crypt cubbyhole culmination curtilage cusp cuticle dairy danger dark darkness dateline dec declination defile delimitation demarcation demesne den department dependency depth derivation derma dermis desert desktop destination determinant development diamond diastema dig diocese dip direction distance district divide dockside dockyard dogleg domain domicile dominion dooryard downtown drop duchy dukedom dump dumpsite earldom earreach earshot earth east ecliptic edge edging element emirate empire emptiness empyrean encampment enclave enclosure end endpoint entrepot environment environs eparchy epicenter epicentre epidermis episcopate epitope equator equinoctial equinox exaltation exarchate excavation exchange exosphere expanse exterior extreme extremity extremum exurbia eye eyeshot eyrie eyry face fairground fairway farm farmland farmplace farmstead fatherland faubourg fault faulting fiefdom field fingertip finish firebreak fireguard fireside firmament fishery fissure flies floor flowerbed fluke flyway focus foot foothold foramen forefront forepart forge fork fountainhead fracture fringe front frontier funfair gaff gap garden gasfield gasworks geosphere ghetto glade glassworks goal goldfield gorge grainfield grange grassland grave graveyard green greenbelt greenway gridiron ground grounds grove gulf habitat habitation hairline hamlet hand hangout harbor harborage harbour harbourage hatchery haunt haven hayfield head heading headspring headwater hearing heart hearth heartland heath heathland heaven heavens heel heights heliopause heliosphere hell hellhole hem hemisphere hemline here heronry hiatus hideaway hideout high hilltop hilum hinterland hip hipline hole hollow holy home homeland hometown horizon horst hotbed hotspot house hub hydathode hydrosphere imperium inclination inferno infield innersole inside insole interchange interface interior intersection ionosphere ironworks irredenta irridenta isarithm island isobar isochrone isoclinal isogone isogram isohel isopleth isotherm itinerary job junction jungle junkyard jurisdiction justiciary juxtaposition kampong kasbah key khanate kingdom knothole kraal lab laboratory lair land landmark landscape landscaping latitude launderette laundry lawn layer lea lead leak lee leeward left leftfield lenticel ley lie light limb limit line lineation lithosphere locale locality location locus longitude lookout lot loxodrome luff lumberyard mandate mandatory mansion mantle march marchland mare maria mastaba mastabah masthead matrix mausoleum maximum meadow mecca medina medium meeting megalopolis meridian mesosphere mete metropolis micropyle midair midden middle midfield midland midpoint midst midstream midway minefield minimum molding monument moorage mooring motherland moulding mouth municipality nadir nape navel necropolis neighborhood neighbourhood nest nib nidus nirvana node nombril nook north northeast northland northwest notch nucha nucleus oasis occident oilfield omphalos omphalus open opening orbit orchard orient origin orphrey outback outdoors outfield outline outport outpost outside outskirt outskirts outsole outstation overhead overlook ozonosphere paddy paint palaestra palate palatinate palestra pallium pampas panhandle paradise parallel parcel paries parish park parkland part parterre parting parts pass pasture pastureland patch patchboard pate path patisserie patriarchate pattern peak penetralia perch perforation periapsis perigee perigon perihelion perijove perilune periselene pesthole photosphere piazza pigeonhole piggery pike pinnacle pinpoint piscary piste pit pitch place plantation plate playground plaza pleasance plot plugboard pocket point pole poll polls pool pore port position possession post pottery pouch prairie precinct prefecture premises presence preserve princedom principality property proprioceptor protectorate provenance provenience province proximity puddle pueblo punctum pupil purlieu qibla quadrant quarter radius railhead railyard ranch range rathole reach realm rear rearward refuge region rendezvous rent repair repository reservation reserve residence resort retreat rhumb rift right rightfield rip roads roadside roadstead rockery rooftop rookery root rootage ropewalk rotary rough round roundabout roundhouse route sac sack saddle saddleback saddlery safety sanctuary sanctum sandlot savanna savannah scenario scene scenery schoolyard scissure scour scrapheap scrubland scruff seafront seam seaport seascape seat section sector see seedbed selvage selvedge semidesert semitropics separation sepulcher sepulchre sepulture setting settlement shadow shantytown sheeprun sheepwalk sheet sheikdom sheikhdom shift shipside shipyard shire shop shoreline short shoulder showplace shrubbery side sign silhouette site situation skyline skyway slack slip slit slot slum smithy snag snow sodom soil sole solitude somewhere source south southeast southland southwest spa space spearhead spearpoint sphere spike split spoor spot sprawl spread spring square stage stand state station steps stoma stomate stop stopover stratosphere stratum stretch studio subdivision substrate substratum subtopia subtropics suburb suburbia sultanate summit superstrate superstratum surface surround surroundings suzerainty swath switchboard tack tannery tape target taxistand tear tee telomere tendency tenderloin terminal termination terminus terrain terreplein territory theater theatre there thermosphere thick tiltyard timberline tip tiptoe tiptop tomb tonsure top topiary town township track tract trail trailhead treetop trend trichion tropic tropics tropopause troposphere trusteeship turf turnery umbilicus underbelly underside undersurface unknown upside uptown vacancy vacuity vacuum vantage variation vault veld veldt vent venue verge vertex viceroyalty vicinity view viewpoint village vinery vineyard viscounty void volcano wall ward warren washhouse waste wasteland wasteyard waterfront waterline watermark watershed waterworks wavefront way wayside weald wedge welkin wellhead wellspring west wheatfield whereabouts wild wilderness window windward wing wire wold woodlet work workplace workshop workspace yard yardarm zenith zodiac zone ================================================ FILE: core/src/main/resources/edu/knowitall/openparse/categories/person.txt ================================================ abator abbe abbess abbot abbreviator abdicator abductor abecedarian aberrant abetter abettor abhorrer abiogenist abjurer abnegator abolitionist abomination abominator aboriginal aborigine abortionist abridger abrogator absconder abseiler absentee absolutist absolver abstainer abstinent abstracter abstractionist abstractor abuser abutter academic academician acceptor accessary accessory accommodator accompanist accompanyist accomplice accordionist accoucheur accoucheuse accountant accumulator accused accuser ace achiever acolyte acoustician acquaintance acquirer acrobat active activist actor actress actuary adapter adder addict addlehead addressee adducer adept adherent adjudicator adjunct adjuster adjustor adjutant adman administrator admiral admirer admonisher adolescent adonis adoptee adopter adorer adulator adult adulterator adulterer adulteress advancer adventurer adventuress adversary advertiser advertizer advisee adviser advisor advocate advocator aerialist aeronaut aerophile aesthete aesthetician aetiologist affiant affiliate affine affirmer affluent aficionado agent aggravator aggregator aggressor agitator agnate agnostic agonist agriculturalist agriculturist agronomist aide aircraftman aircraftsman aircrewman airhead airman airwoman alarmist albino alcalde alchemist alcoholic alderman alexic algebraist alien alienator alienee alienist alienor aliterate alky allayer allegoriser allegorizer allergist alleviator alliterator allocator ally almoner almsgiver alphabetiser alphabetizer alpinist alternate alto altoist altruist alum alumna alumnus amah amalgamator amanuensis amateur amazon ambassador ambassadress ambler ambusher ameer amigo amir amnesiac amnesic amora amoralist amorist amputator amputee anachronism anaesthetist anagnost analogist analphabet analphabetic analysand analyst anarchist anathema anatomist ancestor ancestress anchor anchorite anchorman anchorperson ancient androgyne anecdotist anesthesiologist anesthetist angel angiologist angler anglophil anglophile anglophobe animator animist annalist annihilator annotator announcer annoyance annoyer annuitant anointer anomalist anomaly anorectic anorexic answerer antagonist antecedent antediluvian anthologist anthropoid anthropologist anthropophagite anthropophagus anti anticipant anticipator antifeminist antinomian antipope antiquarian antiquary antique apache ape aper aphakic aphasic aphorist apiarist apiculturist apologist apostate apostle apothecary apotheosis apparatchik appeaser appellant applauder applicant applier appointee appointment appraiser appreciator apprehender apprentice appropriator approver aquanaut arb arbiter arbitrager arbitrageur arbitrator arboriculturist arborist archaeologist archaist archbishop archdeacon archduchess archduke archeologist archer archimandrite architect archivist archpriest argonaut arguer arianist aristocrat arithmetician armiger armorer armourer arouser arranger arrival arriver arriviste arrogator arrowsmith arsonist arthritic articulator artificer artilleryman artisan artist artiste ascendant ascendent ascender ascetic asker aspirant aspirer ass assailant assassin assassinator assaulter assayer assemblyman assemblywoman assenter asserter assessee assessor asseverator asshole assignee assignor assimilator assistant associate asthmatic astrogator astrologer astrologist astronaut astronomer astrophysicist atheist athlete attache attacker attempter attendant attendee attender attestant attestator attester attestor attorney attracter attraction attractor auctioneer audile auditor augur aunt auntie aunty auspex auteur authenticator author authoress authoriser authoritarian authority authorizer autobiographer autochthon autocrat autodidact automaton auxiliary avatar avenger aviator aviatress aviatrix avower ayah ayatollah baas babbler babe baboo babu baby babyminder babysitter bacchanal bacchant bacchante bachelor bachelorette back backbencher backbiter backer backpacker backscratcher backslapper backslider backstop backstroker backup backwoodsman bacteriologist badgerer bag baggage baggageman bagger bagman bagpiper bailee bailiff bailor bairn baker balancer baldhead baldpate baldy balker balladeer ballerina balletomane balloonist ballplayer bambino banderillero bandit bandleader bandmaster bandsman banker bankrupt banneret bantamweight barbarian barber bard bargainer bargee bargeman baritone barkeep barkeeper barker barmaid barman barnburner barnstormer baron baroness baronet barrater barrator barrister bartender barterer barytone basileus basketeer basketmaker basketweaver bass bassist basso bassoonist bastard baster bather batman batsman batter battler baulker bawd bawler beachcomber beadle beadsman bear beard bearer beast beat beater beatnik beau beautician beauty bedesman bedfellow bedlamite bedwetter beefeater beekeeper begetter beggar beggarman beggarwoman beginner beguiler begum behaviorist behaviourist behemoth beholder beldam beldame believer bellboy belle bellhop belligerent bellman bellower bellwether bellyacher beloved benedick benedict benefactor benefactress beneficiary bereaved berk berserk berserker besieger best bestower betrayer betrothed better bettor bey bibliographer bibliophile bibliopole bibliopolist bibliothec bibliotist bicycler bicyclist bidder bigamist bigot bigwig bilingual bilingualist billionaire bimbo bimetallist binger biochemist biographer biologist biophysicist bird birdbrain birder birth bisexual bishop bitch biter blabber blabbermouth blackamoor blackguard blackleg blackmailer blacksmith blade blasphemer blaster bleacher bleeder blighter blocker blockhead blogger bloke blond blonde blood blowhard blubberer bludgeoner bluecoat bluejacket bluenose bluestocking bluffer blunderer blusterer boarder boaster boatbuilder boater boatman boatswain bobby bobbysoxer bodybuilder bodyguard boffin bohemian bolshie bolshy bombardier bomber bombshell bondholder bondmaid bondman bondsman bondswoman bondwoman bonehead bonesetter boniface boob booby bookbinder bookdealer booker bookie bookkeeper booklover bookmaker bookman bookseller bookworm boomer boor booster bootblack bootlegger bootlicker bootmaker boozer borderer bore borrower boss bosun botanist botcher boulevardier bouncer bounder bourgeois bowdleriser bowdlerizer bowler bowman boxer boy boyfriend bozo bracero brachycephalic braggart bragger brahman brahmin brain brainiac brainworker brakeman brat brave bravo brawler breadwinner breaker breaststroker breeder brewer briber brick bricklayer bride bridegroom bridesmaid brigadier brigand broad broadcaster broker broncobuster brother browser bruiser brunet brunette brute buccaneer buckaroo buckeroo bucolic buddy buff buffoon bugger bugler bugologist builder bulimic bull bullfighter bully bullyboy bum bumbler bumpkin bungler bunkmate bunny bunter bureaucrat burgess burgher burglar burgomaster burgrave bursar busboy bushman bushwhacker businessman businessperson businesswoman busker buster busybody butch butcher butler butt butter butterball butterfingers buttinsky buyer bystander cabalist cabinetmaker cad caddie cadet cadger caffer caffre cager caitiff calculator calif caliph caller calligrapher calligraphist cameraman campaigner camper campmate canary candidate candlemaker candymaker cannibal cannoneer canoeist canon canonist cantor canvasser capitalist capo captain captive captor capturer carabineer carabinier carbineer card cardholder cardinal cardiologist cardsharp cardsharper careerist caregiver caretaker carhop caricaturist carillonneur caroler caroller carouser carpenter carper carpetbagger carrier carrottop carter cartographer cartoonist cartwright carver case caseworker cashier castaway caster castrate castrato casualty casuist cat cataleptic cataloger cataloguer catamite catch catcher catechist catechumen caterer cattleman cavalier cavalryman caveman caviler caviller celebrant celebrater celebrator celebrity celibate cellist cenobite censor centenarian center centerfielder centrist centurion ceramicist ceramist chachka chair chairman chairperson chairwoman challenger chamberlain chambermaid chameleon champ champion chancellor chandler changeling changer chap chapelgoer chaperon chaperone chaplain chapman char character charge chargeman charioteer charlatan charmer chartist charwoman chased chaser chatelaine chatterbox chatterer chauvinist chawbacon cheapjack cheapskate cheat cheater chebab checker cheerer cheerleader cheesemonger chef chela chemist cherub chevalier chewer chichi chick chicken chief chieftain child chiliast chimneysweep chimneysweeper chink chiromancer chiropodist chiropractor chiseler chiseller chit choirboy choirmaster choker chooser choragus choreographer chorine chorister chosen christ chronicler chum chump churchgoer churchman churchwarden churl chutzpanik cicerone cinematographer cipher citizen civilian claimant clairvoyant clansman clanswoman clapper clarinetist clarinettist classic classicist classifier classmate claustrophobe cleaner clergyman cleric clericalist clerk client climatologist climber clinician cloakmaker clockmaker clocksmith clod clone closer clotheshorse clothier clown coach coachbuilder coachman coadjutor coalman coaster coastguardsman coauthor coaxer cobber cobbler cockscomb cocksucker coconspirator cocotte coddler codefendant coder codetalker codger coenobite coeval cofounder cog cognate cognoscente coiffeur coiffeuse coiner collaborationist collaborator colleague collectivist collector colleen collegian collier colonel colonial colonialist coloniser colonist colonizer coloratura colored colorist colossus columnist combatant comber comedian comedienne comer comforter comic commandant commander commando commentator commie commissar commissionaire commissioner committeeman committeewoman commodore commoner communicant communicator communist commuter companion company compatriot compeer compere competition competitor compiler complainant complainer complexifier composer compositor compromiser comptroller compulsive computer comrade con conceiver concessionaire concessioner conchologist concierge conciliator concubine conditioner conductor conductress confectioner confederate conferee conferrer confessor confidant confidante conformist confrere confuter congregant congressman congresswoman conjurer conjuror connection connoisseur conqueror conquistador conscript conservationist conservative conservativist conservator consignee consigner consignor consort conspirator constable constituent constitutionalist constructivist constructor consul consultant consumer consumptive contact contadino contemplative contemporary contender contestant contestee contester contortionist contrabandist contractor contralto contrapuntist contrarian contributor contriver controller controversialist convalescent convener conventioneer conversationalist conversationist convert conveyancer conveyer conveyor convict cook cookie cooky coolie cooly coon cooper cooperator coordinator cop copartner copilot copper coppersmith copycat copyist copyreader copywriter coquette coreligionist corespondent cornerback cornetist cornhusker coroner corporal corporatist correspondent corsair cosignatory cosigner cosmetician cosmetologist cosmographer cosmographist cosmologist cosmonaut cosmopolitan cosmopolite costermonger costumer costumier cotenant cottager cottar cotter cottier councillor councilman councilwoman counsel counsellor counselor count counter counterdemonstrator counterfeiter counterman counterperson counterrevolutionary counterrevolutionist counterspy countertenor counterterrorist counterwoman countess countryman countrywoman courier courser courtesan courtier cousin couturier cow coward cowboy cowgirl cowhand cowherd cowman cowpoke cowpuncher cox coxcomb coxswain coyote crab cracker crackerjack crackpot cracksman crafter craftsman cragsman crammer craniologist crank crapshooter crasher craven crawler crazy creator creature creditor creep creeper cretin crewman cricketer crier criminal criminologist crimp crimper criollo cripple critic crofter crone crony crook crookback crooner cropper crossbencher crossover crosspatch croupier cruiserweight crumb crusader crybaby cryptanalyst cryptographer cryptologist crystallographer cub cubist cuckold cuckoo cuirassier culprit cultist cultivator cummings cunctator cunt cupbearer cur curandera curandero curate curator curmudgeon currier cuss custodian customer cutler cutpurse cutter cutthroat cybernaut cyberpunk cyborg cyclist cymbalist cynic cypher cyprian cytogeneticist cytologist czar czarina czaritza dabbler dacoit dad dada daddy dago dairymaid dairyman dakoit dalesman dallier dame damoiselle damosel damozel damsel dancer dandy danseur danseuse daredevil darkey darkie darky darling darner dastard date dauber daughter dauphin dawdler dayboy daydreamer daygirl deacon deaconess deadbeat deadeye deadhead dealer dean dear dearest dearie deary deb debaser debater debauchee debaucher debitor debtor debutante decadent deceased decedent deceiver decipherer deckhand declarer decoder decorator decoy defalcator defamer defaulter defeatist defecator defector defendant defender defiler defrauder degenerate degrader deification deipnosophist deist delayer delegate delinquent deliverer deliveryman demagog demagogue demander demigod demimondaine democrat demographer demographist demoiselle demon demoniac demonstrator denier denizen dentist denturist departed departer dependant dependent deponent deportee deposer depositor depreciator depressive deputy derelict dermatologist dervish descendant descendent descender deserter designer deskman desperado desperate despoiler despot destroyer detainee detective determinist detractor developer deviant deviate deviationist devil devisee deviser devisor devotee devourer diabetic diabolist diagnostician dialectician diarist dichromat dick dickhead dictator diehard diemaker diesinker dieter dietician dietitian differentiator digger dignitary dike dilettante dillydallier dimwit diner dingbat diocesan dip diplomat diplomate diplomatist dipsomaniac director disarmer disbeliever disburser disciple disciplinarian discoverer discriminator discussant disentangler dish dishwasher disparager dispatcher dispenser disprover disputant dissembler disseminator dissenter dissident dissimulator distiller distortionist distributer distributor disturber diva diver diversionist divider divine diviner divorcee dj doc docent docker dockhand dockworker doctor doctrinaire dodderer dodger dodo doer dog doge dogfighter dogmatist dogsbody dolichocephalic doll dolt domestic dominatrix domine dominee dominie dominus don donee donna donor doofus doorkeeper doorman doormat dope dork dosser dotard double doubter doughboy doula dove dowager dowser doxy doyen doyenne draftee drafter draftsman draftsperson dragger dragoman dragon dragoon dramatist draper draughtsman draw drawee drawer drawler dreamer dresser dressmaker dribbler drifter drinker driveller driver drone drooler dropkicker dropout drover drudge druggist drumbeater drummer drunk drunkard dry dualist duce duchess ducky dud dude dueler duelist dueller duellist duenna duffer duke dulcinea dullard dumbass dumbbell dummy dunce dunderhead dunker dupe dustman dwarf dweeb dweller dyer dyke dynamiter dynamitist dynast dyslectic dyspeptic earl earner earthling earthman easterner eater eavesdropper eccentric ecclesiastic ecdysiast eclectic eclecticist ecologist econometrician econometrist economiser economist economizer ectomorph edger editor editorialist educatee educationalist educationist educator effecter effector effendi egalitarian egghead egocentric egoist egomaniac egotist ejaculator ejector elder eldest elector electrician electrocutioner electrologist electroplater electrotherapist elegist elitist elocutionist emancipationist emancipator embalmer embassador embezzler embodiment embroiderer embroideress embryologist emcee emeer emeritus emigrant emigre emigree emir emissary emperor empiricist employable employee employer empress emptor emulator enate enchanter enchantress encroacher encyclopaedist encyclopedist end endocrinologist endodontist endomorph endorser enemy energiser energizer enforcer engineer engraver enjoyer enlistee enologist enophile enquirer enrollee ensign enterpriser entertainer enthusiast entomologist entrant entrepreneur enumerator environmentalist envoy enzymologist eparch epicene epicure epicurean epidemiologist epigon epigone epileptic epistemologist equal equalitarian equerry equestrian equivocator eradicator eremite eristic erotic escalader escapee escapist escapologist eschatologist escort esquire essayer essayist esthete esthetician estimator etcher ethician ethicist ethnarch ethnic ethnographer ethnologist ethologist etiologist etymologist eulogist eunuch evacuee evaluator evangelist everyman evildoer evolutionist ex examinee examiner exarch excavator exchanger exciseman excogitator excursionist excuser executant executioner executive executor executrix exegete exhibitioner exhibitionist exhibitor exile existentialist exodontist exorciser exorcist expat expatriate expectorator expender experimenter expert exploiter explorer exponent exporter expositor expounder expressionist expurgator exterminator extern extoller extortioner extortionist extra extravert extremist extrovert eyeful eyewitness fabricator fabulist face facilitator factor factotum faddist fag faggot fagot failure fairy fake fakeer faker fakir falangist falconer faller falsifier familiar family famulus fan fanatic fancier fantasist fantast faqir faquir fare farmer farmerette farmhand farrier fascist fascista fashionmonger fastener fatalist fathead father fatso fatty faultfinder fauvist favorite favourite fawner featherweight federalist feeder fella fellah feller fellow felon female feminist fence fencer fencesitter fermentologist ferryman fetishist feudatory fiance fiancee fibber fiddler fiduciary fielder fieldhand fieldsman fieldworker fiend fighter figure figurehead figurer filer filibuster filibusterer filicide fille filmmaker finagler finalist financier finder finisher fink fireball firebrand firebug firefighter fireman firstborn fisher fisherman fishmonger fishwife fitter fixer fixture flack flagellant flak flake flamen flanker flapper flasher flatfoot flatmate flatterer flautist fledgeling fledgling fleer flibbertigibbet flier flirt floater flogger floorwalker floozie floozy flop florist flouter flunkey flunky flutist flyer flyweight fodder foe foeman fogey fogy follower fomenter fondler foodie fool foot footballer footer footman footpad footslogger fop forager forbear forebear forecaster forefather foreigner forelady foreman foremother foreperson forerunner forester forewoman forger forgiver fornicator fornicatress fortuneteller forward fossil fossilist fosterling founder foundling foundress fowler fox framer franklin fratricide fraud freak freebooter freedman freedwoman freeholder freelance freelancer freeloader freeman freethinker freewheeler freewoman frequenter fresher freshman friar friend frog frogman front frontbencher frontiersman frontierswoman frotteur fruitcake fruiterer frump fry fucker fuckhead fuckup fugitive fugleman fullback fuller fumbler fumigator funambulist functionalist functionary fundamentalist fundraiser furrier fusilier fusspot futurist fuzz gadabout gadfly gadgeteer gaffer gagman gagster gagwriter gainer gal gallant galoot galvaniser galvanizer gambist gambler gamecock gamekeeper gamin gamine ganef ganger gangsta gangster ganof gaolbird gaoler garbageman gardener garmentmaker garnishee garroter garrotter gasbag gasman gastroenterologist gastronome gatecrasher gatekeeper gatherer gaucho gawk gawker gay gazetteer geek geezer geisha gem gendarme genealogist general generalissimo generalist generator geneticist genitor genius gent gentile gentleman gentlewoman geographer geologist geomancer geometer geometrician geophysicist geriatrician gerontologist ghost ghostwriter ghoul giant giggler gigolo gilder gillie ginzo gipsy girl girlfriend git gitana gitano giver gladiator glassblower glassmaker glassworker glazer glazier gleaner globetrotter glossarist glutton goalie goalkeeper goaltender goat goatherd gob gobbler god godchild goddaughter godfather godmother godparent godson goer gofer goffer goldbeater goldbrick goldsmith goldworker golfer goliard goliath gondolier gondoliere goner gonif goniff goof goofball gook goon goose gopher gorger gospeler gospeller gossip gossiper gossipmonger gouger gourmand gourmandizer gourmet governess governor goy grabber grad grader graduate grammarian gramps gran grandad grandaunt grandchild granddad granddaddy granddaughter grandee grandfather grandma grandmaster grandmother grandnephew grandniece grandpa grandparent grandson grandstander granduncle granger grannie granny grantee granter grantor graphologist grappler grass gravedigger graverobber gravida graybeard grazier greaseball greaser great greengrocer greenhorn greenskeeper greeter grenadier greyback greybeard griever grifter grind gringo grinner griot grip groaner grocer groom groomsman grouch groundbreaker groundkeeper groundling groundskeeper groundsman groupie groveler groveller grower growler grownup grumbler grump grunt grunter guarantor guard guardian guardsman guerilla guerrilla guesser guest guestworker guide guitarist gull gulper gumshoe gun gunman gunner gunrunner gunslinger gunsmith guru gutter guttersnipe guvnor guy guzzler gymnast gymnosophist gynaecologist gynandromorph gynecologist gypsy haberdasher habitant habitue hack hacker hadji haematologist haemophile haemophiliac hag haggler hagiographer hagiographist hagiologist hairdresser hairsplitter hairstylist haji hajji hakeem hakim halberdier halfback ham hammerhead hand handicapper handler handmaid handmaiden handyman hanger hangman hangover haranguer harasser hardliner hardwareman harlequin harlot harmoniser harmonizer harper harpist harpooneer harpooner harpsichordist harpy harridan harrier harvester hatemonger hater hatmaker hatter hauler haulier have hawk hawker hawkshaw hayseed hazan head headcounter headhunter headliner headman headmaster headmistress headsman headwaiter healer hearer heartbreaker heartthrob heathen heaver heavy heavyweight heckler hedger hedonist heel heir heiress hellcat heller hellhound hellion helmsman helot help helper helpmate helpmeet hematologist hemiplegic hemophile hemophiliac henchman herald herbalist herder herdsman heretic heritor hermaphrodite hermit hero heroine herpetologist hesitater hesitator heterosexual hewer hick hierarch highbinder highbrow highflier highflyer highjacker highwayman hijacker hiker hillbilly hippie hippy hipster hire hireling hirer hisser histologist historian historiographer histrion hitchhiker hitman hitter hoarder hoaxer hobbledehoy hobbler hobbyist hobo hodman hog holder holdout holdover holidaymaker hombre homebody homeboy homebuilder homegirl homeless homemaker homeopath homeowner homesteader homo homoeopath homophile homophobe homosexual homunculus honcho honey honeymooner honkey honkie honky honoree hood hoodlum hoodoo hoofer hooker hooligan hope hopeful hoper hopper hornist horologer horologist horseman horseshoer horsewoman horticulturist hosier host hostage hosteller hostess hostler hotdog hotelier hotelkeeper hotelman hothead hotshot hotspur hound houri housebreaker housebuilder housefather houseguest householder househusband housekeeper housemaid houseman housemaster housemate housemother housewife housewrecker hoyden hubby huckster huddler hugger hulk humanist humanitarian humdinger hummer humorist humourist humpback hunchback hunk hunter huntress huntsman hurdler hurler husband husbandman hussar hussy hustler hydrologist hydromancer hygienist hymie hyperope hypertensive hypnotiser hypnotist hypnotizer hypochondriac hypocrite hypotensive hysteric ianfu iceman ichthyologist iconoclast ideal idealist idealogue ideologist ideologue idiot idler idol idolater idolatress idoliser idolizer ignoramus illegitimate illiterate illusionist illustrator image imam imaum imbecile imbiber imitator immigrant immortal immune immunologist imp imperialist impersonator import importee importer imposter impostor impresario impressionist improver inamorata inamorato incarnation incendiary inciter incompetent incubus incumbent incurable independent indexer indigen indigene individual individualist indorser inducer inductee industrialist indweller inebriate infant infanticide infantryman inferior infernal infidel infielder infiltrator informant informer ingenue ingrate inhabitant inheritor inheritress inheritrix initiate initiator inmate innkeeper innocent innovator inoculator inpatient inquirer inquisitor insect insider insolvent insomniac inspector inspirer instigant instigator instructor instructress instrument instrumentalist insured insurgent insurrectionist intellect intellectual intercessor interlocutor interloper intermediary intermediator intern internationalist interne internee internist internuncio interpreter interrogator intersex intervenor interviewee interviewer intimate intriguer introvert intruder invader invalid invalidator inventor investigator investor invigilator invitee ironist ironman ironmonger ironside ironworker irredentist irregular irreligionist irridentist islander isolationist issue itinerant jabberer jack jackanapes jackass jade jailbird jailer jailor janissary janitor jawan jaywalker jazzman jeerer jerk jerker jester jewel jeweler jeweller jezebel jigaboo jilt jimdandy jimhickey jingo jingoist jinx jobber jobholder jock jockey jogger john joiner joker jokester jonah jongleur journalist journeyer journeyman judge juggler juicer jumper junior junkie junky jurist juror juryman jurywoman justice justiciar justiciary justifier juvenile kabbalist kachina kaffir kafir kalif kaliph kamikaze keeper keyboardist khalif khalifah khan kibbutznik kibitzer kicker kid kiddy kidnaper kidnapper kike killer killjoy kin kindergartener kindergartner king kingmaker kingpin kink kinsman kinsperson kinswoman kisser kleptomaniac klutz knacker knave kneeler knight knitter knocker knockout knower knucklehead kolkhoznik kook kvetch laborer labourer lacer lackey lad laddie ladino lady ladylove laggard lagger laird lama lamb lame lamenter laminator lamplighter lampooner lancer landgrave landholder landlady landlord landlubber landman landowner landscaper landscapist landsman langlaufer languisher lapidarist lapidary lapidator lapidist larcener larcenist lascar lasher lass lassie latecomer lather latitudinarian laudator lauder laugher laughingstock laundress laundryman laundrywoman laureate lawbreaker lawgiver lawmaker lawman lawyer layabout layman layperson lazar lazybones lead leader leaker leaper learner leaseholder leatherneck leaver lech lecher lector lecturer ledgeman leech lefthander leftist lefty legate legatee legionary legionnaire legislator lender lensman leper lepidopterist lepidopterologist lesbian lessee lessor letch letter letterer letterman leveler leveller lexicographer lexicologist liar libber libeler liberal liberalist liberator libertarian libertine librarian librettist licensee licenser licentiate liege liegeman lieutenant life lifeguard lifer lifesaver lifter light lighterman lightweight lilliputian limey limner limnologist limper linebacker lineman linendraper linesman lingerer linguist linkboy linkman linksman lion liquidator lisper listener lister literate lithographer lithomancer litigant litigator litterateur litterbug litterer liturgist liver liveryman lizard loader loafer loaner loather lobbyist lobsterback lobsterman locater locator lockkeeper lockman lockmaster locksmith locum lodger logger loggerhead logician logistician logomach logomachist loiterer loner longbowman longer longshoreman looker lookout loon looney loony looter lord loser loudmouth lounger louse lout love lovely lover lowbrow lowerclassman lowlife loyalist lubber luger lulu lumberjack lumberman luminary lummox lump lumper lunatic luncher lunger lunkhead lurcher lurker lush lutanist lutenist luthier lutist lyricist lyrist ma macaroni mace macebearer macer machinator machine machinist macho macroeconomist macushla madam madame madcap madman madrigalist madwoman maenad maestro mafioso magdalen magician magistrate magnate magnifico magpie magus maharaja maharajah maharanee maharani mahatma mahout maid maiden maidservant mailer mailman maimer mainstay maintainer major majorette maker malacologist malahini malcontent male malefactor malfeasant maligner malik malingerer maltman maltreater maltster mama mamma mammalogist mammy man manager manageress manakin mandarin mandatary mandator mandatory maneuverer mangler maniac manicurist manikin manipulator mannequin mannikin manoeuvrer manservant manslayer mantrap manufacturer manumitter mapper marathoner marauder marcher marchioness margrave marine mariner mark marketer marksman maroon marquess marquis marquise married marshal marshall martinet martyr marveller masher masker masochist mason masquer masquerader massager masseur masseuse master mastermind masturbator matador match matcher matchmaker mate mater materfamilias material materialist mathematician matman matriarch matricide matriculate matrikin matrisib matron mauler maven maverick mavin mayor mayoress meanie meany measurer meatman mechanic mechanist medalist medallist meddler mediator mediatrix medic medico mediocrity medium meeter megalomaniac melancholiac melancholic meliorist melter member memoriser memorizer memsahib mender mendicant menial mensch mensh mentioner mentor mercenary mercer merchandiser merchant merrymaker meshuggeneh meshuggener mesmerist mesmerizer mesomorph messenger messiah messmate mestiza mestizo metalhead metallurgist metalworker meteorologist metic metropolitan mezzo microbiologist microeconomist microscopist middlebrow middleman middleweight midget midinette midshipman midwife migrant migrator mikado miler militant militarist militiaman milkmaid milkman milksop millenarian millenarist miller milliner millionaire millionairess millwright milord mime mimer mimic mimicker mind minder miner mineralogist mineworker miniaturist minimalist minion minister ministrant minor minstrel minter minx misanthrope misanthropist misbeliever miscreant miser misfit misleader misogamist misogynist miss missionary missioner missis missus missy mistress mixologist mnemonist moaner mobster mocker mod model modeler modeller moderate moderationist moderator modern modernist modifier modiste mogul mole molester moll mollycoddle mollycoddler mom momma mommy monarch monarchist monastic monetarist moneyer moneygrubber moneylender moneymaker moneyman monger mongoloid monitor monitrice monk monkey monochromat monogamist monogynist monolingual monologist monomaniac monopoliser monopolist monopolizer monotheist monster mooch moocher moonlighter moonshiner mope mopper moppet moralist moron morosoph mortal mortgagee mortgager mortgagor mortician mossback mother motherfucker motile motorcyclist motormouth moujik mountaineer mountebank mounter mourner mouse mouth mouthpiece mover moviegoer muadhdhin muazzin muckraker mudslinger muezzin mufti mug muggee mugger muggins mugwump mujahid mujik mujtihad mulatto muleteer muller mum mumbler mummer mummy muncher muralist murderee murderer murderess murmurer muscle musclebuilder muscleman muser musher musician musicologist musketeer mute mutilator mutineer mutterer muttonhead muzhik muzjik muzzler mycologist mycophage mycophagist myope myrmidon mystic mythologist nabob nag nagger naif nailer name namer namesake nan nance nanna nanny nanus naprapath narc narcissist narcist narcoleptic nark narrator natator national nationalist native nativist natural naturalist naturist naturopath navigator navvy nawab naysayer nazi nebbech nebbish necessitarian necker necromancer needer needlewoman needleworker negativist neglecter negotiant negotiator negotiatress negotiatrix neighbor neighbour neoclassicist neocon neoconservative neoliberal neologist neonate neophyte nephew nepotist nerd nester nestling netkeeper netminder neurasthenic neurobiologist neurolinguist neurologist neuroscientist neurosurgeon neurotic neutral neutralist newbie newborn newcomer newlywed newsagent newsboy newscaster newsdealer newsman newsmonger newspaperman newspaperwoman newsperson newsreader newsvendor newswoman newswriter nibbler niece nigga niggard nigger niggler nightbird nighthawk nightrider nigra nihilist nincompoop ninja ninny nipper niqaabi nitpicker nitwit nob noble nobleman noblewoman nobody noctambulist nomad nominalist nominator nominee nonachiever nonagenarian nonattender nonbeliever noncandidate noncitizen noncom noncombatant noncompliant nonconformist nondescript nondrinker nondriver nonentity nonesuch nonmember nonpareil nonparticipant nonpartisan nonpartizan nonperson nonreader nonresident nonsmoker nonstarter nonsuch nonworker normaliser normalizer nosher notability notable notary noticer novelist novice novillero novitiate nude nudger nudist nudnick nudnik nuisance nullifier nullipara numerologist numismatist numismatologist numskull nun nuncio nurse nurseling nursemaid nurser nurseryman nursling nut nutcase nutritionist nutter nymph nymphet nympho nympholept nymphomaniac oaf oarsman oarswoman objector oblate obliger oboist obscurantist observer obsessive obstetrician obstructer obstructionist obstructor occultist occupant occupier oceanaut oceanographer octogenarian octoroon oculist odalisque oddball odist oenologist oenophile offender offerer offeror officeholder officer official officiant offspring ogler ogre oiler oilman oldster oldtimer oligarch ombudsman omnivore onanist oncologist oneiromancer onlooker onomancer opener operagoer operative operator ophthalmologist opponent opportunist opposer opposite opposition oppressor optician optimist optometrist oracle orator orchestrator ordainer orderer orderly ordinand ordinary organiser organist organizer orientalist originator ornamentalist ornithologist orphan orthodontist orthoepist orthopaedist orthopedist orthoptist osculator osteologer osteologist osteopath osteopathist ostiarius ostiary ostler ostrich otolaryngologist otologist otorhinolaryngologist ouster outcast outcaste outdoorsman outdoorswoman outfielder outfitter outgoer outlander outlaw outlier outpatient outrider outsider overachiever overcomer overlord overnighter overseer owner oyabun pa pacha pachuco pacificist pacifier pacifist packer packman packrat padder paddler padre padrone paederast paediatrician paedophile pagan page pageboy pain painter pal paladin palaeontologist palatine paleface paleographer paleographist paleontologist pallbearer palmist palmister palooka palsgrave pamperer pamphleteer pandar pander panderer panegyrist panelist panellist panhandler panjandrum pansexual pansy pantheist pantomimer pantomimist pantryman pantywaist papa paparazzo paperboy paperer paperhanger papist papoose pappa pappoose para parachuter parachutist parader paragon paragrapher paralegal paralytic paramedic paramedical paramour paranoiac paranoid paraplegic paraprofessional parapsychologist parasite paratrooper pardner pardoner parent parer paretic pariah parishioner parliamentarian parlormaid parlourmaid parodist parolee parricide parrot parson partaker participant partisan partitionist partizan partner party partygoer parvenu pasha passenger passer passerby paster pastor patentee pater paterfamilias pathfinder pathologist patient patrial patriarch patrician patricide patrikin patriot patrioteer patrisib patroller patrolman patron patroness patronne patsy patternmaker patzer pauper pawer pawn pawnbroker payee payer paymaster paynim peacekeeper peacemaker peacenik peach peanut pearler peasant peculator pedagog pedagogue pedaler pedaller pedant peddler pederast pedestrian pediatrician pediatrist pedlar pedodontist pedophile peeler peeper peer peeress peewee pelter pendragon penetrator penitent penman penologist penpusher pensionary pensioner pentathlete peon perceiver percher percipient percussionist perfecter perfectionist performer perfumer peri perinatologist periodontist peripatetic perisher perjurer perpetrator persecutor person personage personality personification perspirer persuader pervert peshmerga pessimist pest pesterer pet petitioner petter pettifogger phalangist pharisee pharmacist pharmacologist philanderer philanthropist philatelist philhellene philhellenist philistine philologist philologue philomath philosopher philosophiser philosophizer phlebotomist phoner phonetician phoney phonologist phony photographer photojournalist photometrician photometrist phrenologist physician physicist physiologist physiotherapist phytochemist phytologist pianist picador picaninny piccaninny pickaninny picker picket picklepuss picknicker pickpocket pickup picnicker pig pigman pigmy pilferer pilgrim pill pillager pillar pillock pilot pimp pinchgut pinhead pink pinko pioneer piper piranha pirate pisser pistoleer pitcher pitchman pitman pivot placeholder placekicker placeman placeseeker plagiariser plagiarist plagiarizer plainclothesman plainsman plaintiff plaiter planet planner plant planter plantsman plasterer platelayer plater platitudinarian playactor playboy player playfellow playgoer playmaker playmate playwright pleader pleaser pleb plebe plebeian pledge pledgee pledger plenipotentiary plier plodder plotter ploughboy ploughman ploughwright plowboy plower plowman plowwright plugger plumber plunderer plunger pluralist plutocrat plyer poacher podiatrist poet poetess poetiser poetizer poilu pointillist pointsman poisoner poke pol polack polemic polemicist polemist policeman policewoman policyholder politician politico pollster polluter poltroon polyandrist polygamist polyglot polygynist polymath polytheist pom pommy pomologist ponce ponderer pontifex pontiff poof pooler poop poove pop pope popinjay populariser popularizer populist pornographer porter portraitist portrayer portwatcher poser poseur poseuse positivist posseman possessor possible postdoc poster postgraduate postilion postillion postman postmaster postmistress postponer postulant postulator posturer potboy potentate pothead potholer pothunter potman potter potterer pouf poulterer poultryman pouter powderer power powerbroker powerhouse practician practitioner praetor pragmatist prankster prater prattler prayer preacher prebendary precentor preceptor precursor predator predecessor predestinarian predestinationist predictor preemie preemptor prefect prelate premie premier prentice presbyope presbyter preschooler presenter presentist preservationist preserver president pressman prestidigitator preteen preteenager pretender preterist pretor prevaricator prexy prey prick prickteaser priest priestess prig primate primigravida primipara primitive primogenitor primus prince princeling princess principal printer printmaker prior prioress prisoner private privateer privateersman prizefighter pro probable probationer processor proconsul procrastinator proctologist proctor procurator procurer procuress prodigal prodigy producer prof professional professor profiteer profligate progenitor progeny prognosticator programmer progressive prohibitionist projectionist prole proletarian promisee promiser promisor promoter prompter promulgator proofreader propagandist propagator prophesier prophet prophetess propman proponent proposer propositus proprietor proprietress prosecutor proselyte prospect prospector prosthetist prosthodontist prostitute protagonist protectionist protector protege protegee protester protozoologist provider provincial provisioner provocateur provoker provost prowler proxy prude pruner psalmist psephologist pseud pseudo pseudohermaphrodite psychiatrist psychic psycho psychoanalyst psycholinguist psychologist psychoneurotic psychopath psychophysicist psychotherapist psychotic pteridologist publican publiciser publicist publicizer publisher puddler pudge puerpera pugilist puke puller puncher pundit punk punster punter pup pupil puppet puppeteer puppy purchaser purist puritan purser pursued pursuer purveyor pusher pushover pussycat putter putterer putz pygmy pyrographer pyromancer pyromaniac qadi quack quad quadripara quadriplegic quadroon quadruplet quaestor quaffer quaker qualifier quarreler quarreller quarrier quarry quarryman quarter quarterback quartermaster queen queer querier quester questioner quibbler quidnunc quietist quin quint quintipara quintuplet quisling quitter quizmaster quizzer quoter rabbi racialist racist racker racketeer raconteur radical radiobiologist radiochemist radiographer radiologist radiotherapist rafter raftman raftsman ragamuffin ragpicker ragsorter raider railbird railroader railwayman rainmaker raiser raja rajah rake rakehell rambler ramrod rancher ranee ranger rani ranker ranter raper rapist rappeller rapper rapporteur rapscallion rascal rat ratepayer ratifier ratiocinator rationalist ratter raver ravisher reactionary reader realist reaper reasoner rebel rebuker rebutter receiver receptionist recidivist recipient recitalist reciter reckoner recluse reconciler recorder recoverer recreant recruit recruiter rectifier rector recusant red redact redactor redcap redcoat redeemer redhead redheader redneck reeler reenactor ref referee referral refiner refinisher reformer reformist refugee refuter regent regicide registrant registrar regular regulator reincarnation relation relative relief reliever religionist religious reminder remover remunerator renegade renovator renter rentier rep repairer repairman repatriate repeater replacement reporter repository representative reproacher reprobate reprover republican requester rescuer researcher reserve reservist resident resister respecter respondent responder restauranter restaurateur rester restorer restrainer retailer retainer retaliator retard retiree retreatant reveler reveller revenant revenuer reverend reversioner reversionist reviewer reviser revisionist revivalist revolutionary revolutionist rewriter rhabdomancer rhetorician rheumatic rheumatologist rhinolaryngologist rhymer rhymester ribald rider ridiculer rifleman rigger righthander rightist ringer ringleader ringmaster rioter rip ripper riser ritualist rival riveter rivetter roadman roamer roarer roaster robber rock rocker rogue roisterer rollerblader romantic romanticist romp romper roofer rookie roomer roomie roommate roomy root rooter ropedancer ropemaker roper ropewalker rosebud rotter roue roughneck roughrider rounder roundhead roundsman rouser roustabout router rover rowdy rower royalist rubberneck rubbernecker rube ruffian ruiner ruler ruminator rummy rumormonger rumourmonger rumrunner runaway runner runt ruralist rusher rustic rustler saboteur sabra sachem sacrificer sacristan saddhu saddler sadhu sadist sadomasochist safebreaker safecracker sagamore sage sahib sailmaker sailor saint salesclerk salesgirl saleslady salesman salesperson saleswoman salter salutatorian saluter salvager salvor sampler samurai sandbagger sandboy sandwichman sangoma sannup sannyasi sannyasin sanyasi sap saphead sapper sartor satellite satirist satrap satyr saunterer savage savant saver savior saviour sawbones sawyer saxist saxophonist scab scalawag scallywag scalper scammer scamp scandalmonger scanner scapegoat scapegrace scaremonger scatterbrain scattergood scavenger scenarist sceneshifter sceptic schemer schizophrenic schlemiel schlep schlepper schlimazel schlockmeister schmo schmoozer schmuck schnook schnorrer scholar scholastic scholiast schoolboy schoolchild schoolfellow schoolfriend schoolgirl schoolman schoolmarm schoolmaster schoolmate schoolmistress schoolteacher scientist sciolist scion scoffer scofflaw scold scolder scorekeeper scorer scorner scoundrel scourer scourge scourger scout scouter scoutmaster scrag scrambler scrapper scratch scratcher scrawler screamer screecher screener screenwriter screw screwball screwballer scribbler scribe scrimshanker scriptwriter scrivener scrooge scrounger scrubber scrutineer scrutiniser scrutinizer sculler scullion sculptor sculptress sculpturer seafarer sealer seaman seamster seamstress searcher seasonal seasoner secessionist second seconder secretary sectarian sectarist sectary secular secularist secundigravida securer seducer seductress seed seeder seedman seedsman seeker seer segregate segregationist segregator seigneur seignior seismologist seizer selectman selector selectwoman self seller semanticist semifinalist seminarian seminarist semiotician semipro semiprofessional sempstress senator sendee sender seneschal senior sensation sensationalist sensitive sensualist sentimentalist sentinel sentry separationist separatist septuagenarian serf sergeant sericulturist serjeant sermoniser sermonizer serologist servant server serviceman servitor setter settler settlor sewer sexagenarian sexist sexpot sexton shadow shadower shaheed shaker sham shaman shammer shamus shanghaier shaper sharecropper shareholder shareowner sharer shark sharper sharpie sharpshooter sharpy shaver shearer shedder sheeny sheep sheepherder sheepman shegetz sheik sheika sheikh sheikha sheller shelver shepherd shepherdess sheriff sherlock shielder shifter shiksa shikse shill shingler shipbuilder shipmate shipowner shipper shipwright shirker shirtlifter shirtmaker shit shithead shitter shlemiel shlep shlepper shlimazel shlockmeister shmo shmuck shnook shnorrer shocker shoeblack shoemaker shogun shoofly shooter shopaholic shopkeeper shoplifter shopper shopwalker shortstop shot shouter shoveler shoveller shover shower showgirl showman shrew shrimp shrink shuffler shutterbug shylock shyster sib sibling sibyl sidekick sidesman sightreader sightseer signaler signaller signalman signatory signer signior signor signora signore signorina silly silversmith silverworker simperer simple simpleton singer sinner sipper sir sirdar sire siren sirrah sis sissy sister sitter skateboarder skater skeptic sketcher skidder skier skimmer skinflint skinhead skinner skipper skirmisher skirt skivvy skulker skunk skycap skydiver slacker slammer slanderer slapper slasher slattern slaughterer slave slaveholder slaver slavey slayer sledder sleeper sleepwalker sleepyhead sleuth sleuthhound slicer slicker slider slinger slip slipper slob slobberer sloganeer slogger slopseller slouch sloucher sloven slowcoach slowpoke slug slugabed sluggard slugger slumberer slut slyboots smallholder smarta smasher smiler smirker smith smoker smoothie smoothy smotherer smuggler snacker snake snapper snarer snatcher sneak sneaker sneerer sneezer sniffer sniffler sniper snitch snitcher sniveler sniveller snob snoop snooper snoot snorer snorter snot snowboarder snuffer snuffler soaker sobersides socialiser socialist socialite socializer sociobiologist sociolinguist sociologist sociopath sod sodalist sodbuster sodomist sodomite softie softy sojourner solderer soldier solicitor solitary solitudinarian soloist solon solver somebody someone sommelier somnambulist somniloquist son songster songstress songwriter sonneteer sonny soothsayer soph sophist sophisticate sophomore soprano sorcerer sorceress sorehead sorrower sort sorter sot soubrette soul soundman source sourdough sourpuss souse southpaw sovereign sower spaceman spacewalker spade spammer spanker sparer spastic speaker spearhead specialiser specialist specializer specifier spectator speculator speechifier speechmaker speechwriter speedskater spelaeologist speleologist spellbinder speller spelunker spender spendthrift spewer sphinx spic spick spik spiller spindlelegs spindleshanks spinmeister spinner spinster spiritualist spitfire spitter spiv splicer splitter spoiler spoilsport spokesman spokesperson spokeswoman sponge sponger sponsor spook sport sportscaster sportsman sportswoman sportswriter spotter spouse spouter sprawler sprayer sprigger sprinter sprog spurner spy spymaster squabbler squanderer square squatter squaw squawker squealer squeeze squinter squire squirmer squirt stabber stableboy stableman stacker staffer stagehand stager staggerer stainer stakeholder stalker stalwart stammerer stamper standardiser standardizer standby star starer starets stargazer starlet starter starveling stater statesman stateswoman stationer stationmaster statistician steady stealer steamfitter steelmaker steelman steelworker steeplejack steerer steersman stemmer stenographer stentor stepbrother stepchild stepdaughter stepfather stepmother stepparent stepper stepsister stepson stevedore steward stewardess stickler stiff stifler stigmatic stigmatist stinker stinkpot stinter stipendiary stippler stirrer stitcher stockbroker stockholder stockist stockjobber stockman stocktaker stoic stoker stomper stonecutter stonemason stoner stonewaller stooge stoolie stoolpigeon stooper storekeeper storyteller stowaway strafer straggler straight stranger strangler straphanger strapper strategian strategist strawman strayer streaker streetwalker strider strikebreaker striker stringer striper stripling stripper striptease stripteaser striver stroke stroller strongman struggler strumpet stud student study stuffer stumblebum stumbler stunner stupe stupid stutterer styler stylist stylite subaltern subcontractor subdeacon subdivider subduer subeditor subject subjectivist subjugator sublieutenant submariner submitter subnormal subordinate suborner subscriber subsidiary subsidiser subsidizer subsister substitute subtracter suburbanite subversive subverter subvocaliser subvocalizer succeeder success successor succorer succourer sucker suckling suer sufferer suffragan suffragette suffragist suggester suicide suit suitor sultan summercater summercaters sun sunbather sundowner super supercargo supergrass superintendent superior superman supermarketeer supermarketer supermodel supermom supernumerary superordinate superstar supervisor supplanter suppliant supplicant supplier supporter suppresser suppressor supremacist suprematist supremo surety surfboarder surfer surgeon surmounter surpriser surrealist surrenderer surrogate surveyor survivalist survivor suspect sustainer sutler swagger swaggerer swaggie swagman swain swami swashbuckler swayer swearer sweater sweep sweeper sweetheart sweetie swell swellhead swimmer swindler swineherd swinger switcher swordsman swot sybarite sycophant syllogiser syllogist syllogizer sylph symboliser symbolist symbolizer sympathiser sympathizer symphonist symposiarch symposiast syncopator syndic syndicalist syndicator synonymist syntactician synthesiser synthesist synthesizer syphilitic systematiser systematist systematizer systemiser systemizer tablemate tacker tackle tackler taco tactician tagalong tagger tail tailback tailor taker talebearer talent taleteller talker tallyman tamer tanker tanner tantaliser tantalizer taoiseach tapper tapster tar target tart tartar taskmaster taskmistress taster tatterdemalion tattler tattletale taxer taxidermist taxman taxonomer taxonomist taxpayer tchotchke tchotchkeleh teacher teammate teamster tearaway tease teaser tec techie technician technocrat technologist technophile technophobe teen teenager teetotaler teetotalist teetotaller tekki telecaster teleologist telepathist telephoner televangelist teller telltale tellurian temp temporary temporiser temporizer tempter temptress tenant tender tenderfoot tenno tenor tenorist tentmaker tergiversator termagant termer terminator terpsichorean territorial terror terrorist tertigravida testate testator testatrix testee tester testifier thane thatcher thaumaturge thaumaturgist theatergoer theatregoer theist theologian theologiser theologist theologizer theoretician theoriser theorist theorizer theosophist therapist thespian thief thinker thirster thoroughbred thrall threat throttler throwaway thrower throwster thrush thruster thug thurifer thwarter tiddler tier tiger tightwad tike tiler tiller tilter timberman timekeeper timer timeserver timpanist tinker tinkerer tinner tinsmith tinter tipper tippler tipster tiro titan tither titterer toady toast toaster toastmaster tobacconist tobogganist toddler toff toiler toller tollgatherer tollkeeper tollman tomboy tomfool tool toolmaker toper topper torchbearer toreador torero tormenter tormentor torpedo tortfeasor torturer tosser tot totalitarian totemist toter totterer toucher tough toughie tourer tourist tout touter tovarich tovarisch towhead townee towner townie townsman towny toxicologist tracer tracker tracklayer trader tradesman traditionalist traducer trafficker tragedian tragedienne trailblazer trailer trainbandsman trainbearer trainee trainer trainman trainmaster traitor traitress tramp tramper trampler transactor transalpine transcendentalist transcriber transexual transfer transferee transferer transferor transferrer transgressor transient translator transmigrante transmitter transplanter transsexual transvestite trapper trapshooter traveler traveller traverser trawler treasonist treasurer treater trekker trembler trencher trencherman trespasser tribade tribesman tribologist tribune trick tricker trickster trier trifler triggerman trigonometrician trimmer triplet tripper tritheist triumvir troglodyte troller trollop trombonist trooper troubadour troublemaker troubler troubleshooter trouper truant truckler trudger truelove trumpeter trustbuster trustee truster trustor trusty tsar tsarina tsaritsa tsatske tshatshke tubercular tucker tugger tumbler tuner turkey turncoat turncock turner turnkey turtler tutee tutor twaddler twat twerp twiddler twin twiner twirler twirp twit tycoon tyke tympanist type typesetter typist typographer tyrant tyro tzar tzarina ultraconservative ultramontane ump umpire unbeliever uncle underachiever underboss underclassman underdog undergrad undergraduate underling underperformer undersecretary underseller understudy undertaker underwriter undesirable undoer unfastener unfortunate unicyclist unilateralist unionist unknown unperson unraveler unraveller untier untouchable upbraider upholder upholsterer uprooter upsetter upstager upstart uranologist urchin urinator urologist user usher usherette usufructuary usurer usurper utiliser utilitarian utilizer utterer uxor uxoricide vacationer vacationist vaccinator vaccinee vacillator vagabond vagrant valedictorian valentine valet valetudinarian valuator valuer vamp vamper vandal vanisher vanquisher vaquero varlet varmint varnisher vassal vaticinator vaudevillian vaulter vaunter vegan vegetarian vendee vender vendor venerator venter ventriloquist venturer verbaliser verbalizer verger verifier vermin versifier vestal vestryman vestrywoman vet veteran veterinarian veterinary vexer vibist vibraphonist vicar vicegerent vicereine viceroy victim victimiser victimizer victor victualer victualler viewer vigilante vilifier villager villain villainess villein vindicator vintager vintner violator violinist violist violoncellist virago virgin virologist virtuoso viscount viscountess visionary visitant visitor visualiser visualizer vitaliser vitalist vitalizer viticulturist vivisectionist vixen vizier vocaliser vocalist vocalizer vociferator voice voicer voider voluntary volunteer voluptuary vomiter votary voter vouchee voucher vower voyager voyeur vulcaniser vulcanizer vulgarian vulgariser vulgarizer vulture wacko waddler waffler wag wagerer waggoner waggonwright wagoner wagonwright waif wailer wainwright waiter waitress waker walker wallah wallflower walloper wallpaperer wally waltzer wanderer wangler wanker wannabe wannabee wanter wanton warbler ward warden warder wardress warehouseman warehouser warhorse warlord warmonger warner warrantee warranter warrantor warrener warrior washer washerman washerwoman washout washwoman wassailer waster wastrel watch watchdog watcher watchmaker watchman watercolorist watercolourist waterer waterman waver waverer wayfarer weakling wearer weasel weatherman weaver webmaster weeder weekender weeper weigher weightlifter weirdie weirdo weirdy weisenheimer welcher welcomer welder welsher welterweight wench wencher westerner wetback wetnurse wetter whacko whale whaler wheedler wheeler wheelwright whiffer whiner whip whipper whippersnapper whirler whisperer whistleblower whistler whiteface whitey whittler whiz whizz wholesaler whore whoremaster whoremonger whoreson widow widower widowman wife wiggler wight wigmaker wildcat wildcatter wimp windbag winder windtalker winemaker wing wingback winger wingman winker winner wino wiper wireman wirer wiretapper wiseacre wisenheimer wisp wit witch withdrawer withholder withstander witness witnesser wittol wiz wizard wog wolf woman womaniser womanizer wonderer wonk woodcarver woodcutter woodman woodsman woodworker wooer woolgatherer woolsorter wop wordmonger wordsmith workaholic worker workfellow workingman workman workmate worldling worm worrier worrywart worshiper worshipper worthy wrangler wrecker wrester wrestler wretch wriggler wright writer wrongdoer wuss xylophonist yachtsman yachtswoman yahoo yakuza yanker yardbird yardie yardman yardmaster yawner yearling yearner yeller yenta yeoman yid yielder yob yobbo yobo yodeller yogi yokel youngster younker youth yuppie zany zealot zombi zombie zoologist ================================================ FILE: core/src/main/resources/edu/knowitall/openparse/openparse.model ================================================ template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0000 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345 {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.7345 be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 {rel} {arg1} dobj> {arg2} 0.3797 {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.2444 {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.2444 be {rel} of {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|book|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceo|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|co-author|co-chair|co-creator|co-editor|co-founder|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editor-at-large|editor-in-chief|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|goddess|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|home|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|island|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journal|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|mascot|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moon|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaper|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|president-elect|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publication|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|secretary-general|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburb|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unit|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nn> {arg2:postag=NNP} 0.1492 {rel} {arg1} dobj> {arg2} 0.1473 {rel} {arg1} dobj> {arg2} 0.1473 {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1473 {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.1473 {rel} {arg1} dobj> {arg2} 0.1443 {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1443 {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.1443 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.1349 {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.1349 be {rel} by {arg1} agent> {arg2} 0.1148 be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.1110 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0961 be {rel} {prep} {rel:postag=VBN:regex=base|bear|border|compose|comprise|find|hold|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0901 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=aberdeen|accomack|adam|addiscombe|addison|ajaccio|akron|albany|albuquerque|aldershot|alexandrium|allahabad|allegheny|alloway|alsace|amstelveen|amsterdam|anaheim|antrim|arezzo|arlington|armagh|armonk|aston|astorium|atchison|athen|atlanta|aug|augsburg|augusta|austin|avondale|ayr|ayrshire|baden|ballymoney|baltimore|banff|barcelona|basingstoke|bath|battersea|bavarium|beaconsfield|beckenham|bedford|bedfordshire|beij|beirut|belfast|belleville|bellevue|bellingham|bellshill|benonus|berkeley|berkhamst|berkshire|berlin|bermondsey|berwickshire|bethel|bethlehem|bildeston|binghamton|birkenhead|birmingham|blackburn|blackheath|blackpool|blantyre|bloemfontain|bloemfontein|bluefield|bollington|bolton|bombay|bonham|bordeaux|boston|bournemouth|bradford|braintree|braunau|breckenridge|brereton|brighton|brisbane|bristol|brixton|brockton|brocton|bromley|bronx|brooklyn|brookville|brunswick|bucktown|budapest|buffalo|burlington|burnaby|bury|busan|calcutta|calgary|camberwell|cambridge|cambridgeshire|camden|canterbury|canton|caprese|castleford|castleknock|catford|cavan|chairperson|charleston|charlestown|charlotte|charlton|chatsworth|chattanooga|cheapside|chelsea|cheltenham|cheshire|chester|chicago|chillicothe|chiswick|chorley|cincinnatus|claire|clapham|clarksburg|clayton|cleveland|clifton|colchester|coleraine|colfax|cologne|colon|columbiana|columbus|concord|cork|corn|cornhill|cornistone|cornwall|corona|cortland|coshocton|county|coventry|creston|croydon|cumberland|curle|daegu|dalla|danville|daresbury|darmstadt|dartford|dartmouth|davenport|dayton|decatur|dedham|delaware|denver|derby|derbyshire|derry|detroit|devon|devonshire|director|donegal|dorchester|dorset|dorsetshire|dortmund|dresden|dublin|dubuque|duluth|dulwich|dumbarton|dumfry|dunbar|dundee|dunfermline|durham|dusseldorf|duxbury|easton|eastwood|edgware|edinburgh|edmonton|egypt|eisenach|eisleben|elizabeth|elizabethtown|eltham|enfield|english|epworth|essex|europe|fairfax|fairfield|fairmont|farmington|ferry|florence|flush|fockbury|fountainbridge|frankfurt|franklin|fredericksburg|freiburg|friday|fulton|funchal|galway|geneva|georgetown|germantown|glasgow|glendale|gloucester|gloucestershire|godalm|gorus|gravesend|graz|greenville|greenwich|groton|grundleton|guangzhou|guildford|hackney|hadlow|haifa|halifax|halle|halstead|hamburg|hamilton|hammersmith|hampshire|hampstead|hampton|hanau|hancock|hanover|harlem|harlesden|harrison|harrow|hartford|havana|hawaius|heidelberg|henderson|henrico|herefordshire|hertford|hertfordshire|highgate|hillsboro|hingham|hodgenville|hollidaysburg|holloway|hollywood|homer|honolulu|hope|horncastle|horsemonden|hotel|houston|huddersfield|hull|huntingdon|huntington|huntsville|ibstock|indianapoli|inglewood|ipswich|ireland|irve|islington|ithaca|jackson|jamaica|jamestown|jerusalem|johannesburg|john|jul|karlsruhe|kelvedon|ken|kensington|kiev|kilburn|kilkenny|kilmarnock|kilmartin|kilnaleck|kinderhook|king|kingston|kirby|kirkcaldy|kirkcudbright|kirkcudbrightshire|kittann|knox|knoxville|kosciusko|kumus|ladysmith|lambeth|lanarkshire|lancashire|lancaster|landau|landport|laon|leamington|lebanon|lee|leed|leesylvanium|leicester|leicestershire|leith|lewisham|lexington|leytonstone|liberty|lima|limerick|lincoln|lincolnshire|lisbon|litchfield|liverpool|london|londonderry|loui|lowell|lumberport|lumbinus|luxemburg|lydd|lynchburg|lynn|lyon|macclesfield|madison|madrid|maidstone|mako|malaga|malford|malmesbury|manchester|manhattan|mansfield|marietta|marion|martinsburg|marton|marylebone|maryport|massena|maud|mayfair|medan|medina|melbourne|memphi|michael|middlesex|middleton|middletown|milan|milston|milton|mineolum|minneapoli|mitchelstown|mobile|mombasa|monaghan|mondovus|monmouthshire|monroe|monterey|montgomery|montreal|montrose|morgantown|moscow|motiharus|mumbaus|munich|nailstone|nairobus|napanee|nashville|navan|nayland|nenagh|newark|newburgh|newbury|newcastle|newry|newtown|nile|norfolk|northampton|northamptonshire|northumberland|norwich|nottingham|nottinghamshire|noyon|oak|oakland|oberweier|oceanside|october|odessa|of|oldham|olean|olympium|oneonta|ontario|orange|orlando|osaka|ossine|ottawa|ottumwa|oxford|oxfordshire|paddington|paisley|palermo|pancra|pari|pasadena|passaic|paterson|peckham|pembroke|penang|pentonville|perry|perth|perthshire|petersburg|petrovichus|philadelphium|phoenix|pimlico|pinner|pittsburgh|pittsylvanium|plano|plymouth|pontypridd|poplar|portadown|portland|portsea|portsmouth|potsdam|poughkeepsie|president|preston|princeton|pulaskus|pusan|puyallup|quebec|queen|queensland|raid|rangoon|rathgar|rattlesden|read|redhill|regina|rheim|rhinebeck|richardson|richland|richmond|ripley|riverside|roanoke|rochester|rome|romford|room|rosario|roscommon|rosscarbery|rutherford|rye|sacramento|salem|salford|salisbury|sandpoint|sandusky|sandymount|santurce|sardinium|saunderstown|savannah|scarborough|schaafheim|schenectady|scott|scranton|seattle|seneca|seoul|seymour|shadwell|shanghaus|sheffield|shenandoah|shiplake|shoreditch|shrewsbury|shropshire|slatina|slough|smiljan|smithville|soho|solihull|somersby|somersetshire|southampton|southgate|southwark|spokane|springfield|stafford|staffordshire|staunton|steubenville|steventon|stockholm|stratford|streatham|sudbury|suffolk|sunday|sunderland|surrey|sussex|sutton|swansea|syracuse|tacoma|tamico|tampico|taunton|texa|thal|thessalonikus|thetford|thompson|thursday|tidworth|time|tioga|tipperary|toledo|toronto|torquay|torrington|trampa|tremadoc|trento|trenton|troy|truro|tuesday|tuscaloosa|tuscumbium|tyler|ulm|ulster|uniontown|usa|utica|vallejo|vancouver|venice|ventura|victorium|vienna|vincenne|virginium|wale|walsall|walthamstow|walworth|wandsworth|wapp|warren|warrington|warsaw|warwick|warwickshire|washington|waterford|waterloo|watertown|waterville|waxhaw|weimar|wellington|westbury|westchester|westerham|westminster|westmoreland|westphalium|wexford|weymouth|wheel|wigan|williamsburg|willoughby|wiltshire|winchester|windham|windsor|winterset|wolverhampton|wonju|wood|woodhull|woolsthorpe|woolwich|worcester|worcestershire|wrentham|wurtemberg|wurtemburg|yarmouth|yonker|york|yorkshire|youngstown|zanesville|zundert} >appos> {arg2} 0.0839 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0724 {rel} to {arg1} prep_at> {arg2} 0.0623 {rel} {arg1} dobj> {arg2} 0.0577 {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.0577 {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.0577 be {rel} in {arg1} prep_on> {arg2} 0.0565 be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0530 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0444 {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0444 be {rel} in {arg1} prep_at> {arg2} 0.0432 be {rel} {prep} {arg1} partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0428 {rel} {arg1} dobj> {arg2} 0.0416 {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.0416 {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.0416 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393 {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0393 {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0393 be {rel} of {arg1} prep_in> {arg2} 0.0388 be {rel} in {arg1} prep_in> {slot0:postag=NN:regex=area|arrondissement|basement|basin|borough|capital|center|centre|city|coast|colony|community|continent|corner|country|county|desert|dialect|district|east|edge|end|foothill|forest|form|garden|ghetto|half|hamlet|heart|heartland|hill|hometown|hub|island|kingdom|land|language|level|lowland|mainland|middle|mixture|month|mountain|nation|neighborhood|neighbourhood|north|northeast|northwest|outskirts|parish|parsonage|part|person|plain|port|portion|position|province|quadrant|quarter|region|republic|righteousness|room|ruggedness|seaport|section|session|side|slum|south|southeast|state|street|suburb|surround|tip|town|township|variant|vicinity|village|water|week|west|work|zone} >prep_of> {arg2} 0.0377 {rel} in {arg1} prep_on> {arg2} 0.0371 {rel} to {arg1} prep_unto> {arg2} 0.0363 be {rel} in {rel:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg1} >appos> {arg2} 0.0360 be {rel} in {arg1} prep_of> {arg2} 0.0338 be {rel} in {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0331 be {rel} {prep} {arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0314 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0307 {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0307 be {rel} in {arg1} tmod> {arg2} 0.0305 be {rel} of {arg1} poss> {arg2} 0.0297 {rel} {arg1} dobj> {arg2} 0.0292 {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.0292 {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.0292 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0282 be {rel} {prep} {arg1} partmod> {slot0:postag=VBN:regex=base|bear|beget|celebrate|found|grow|locate|nestle|place|publish|register|set|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2} 0.0254 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agency|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthday|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|body|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cause|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|form|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|gift|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|government|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|month|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearl|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religion|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subset|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symbol|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0239 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0233 be {rel} in {arg1} prep_of> {rel:postag=NN:regex=airline|airport|bank|building|city|country|county|destination|festival|group|holiday|industry|island|lake|language|market|nation|neighborhood|park|party|place|player|port|province|region|religion|river|sport|square|state|team|town|university|village} >prep_in> {arg2} 0.0230 be {rel} {prep} {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0227 {rel} {arg1:postag=NNP} dobj> {slot0:postag=NN:regex=a|abt|age|album|alliance|angel|appearance|area|arr|award|b|backstage|beta|billion|browser|c|capability|caucus|cd|championship|chord|church|circa|coast|code|collection|colony|committee|competition|computer|console|contest|county|cover|coverage|crown|daughter|delegate|directory|discography|district|download|election|event|everyone|example|family|fan|feat|feature|force|friend|game|government|hand|handily|head|honor|i|kernel|kit|laptop|lyric|machine|magazine|majority|man|master|match|member|model|moment|month|movement|movie|music|name|news|newspaper|night|no|nomination|null|offer|patch|percent|phone|photo|pill|platform|player|power|president|price|primary|prize|product|program|programme|project|puppy|qualifier|race|radio|recount|regime|region|reporter|review|right|ring|ringtone|river|sample|satellite|season|seat|series|servant|service|sex|site|slave|software|something|son|song|spinster|standard|state|stockpile|strip|system|tab|team|television|thanks|thing|thousand|thrice|ticket|time|title|tonight|tournament|trophy|tv|update|v|vaccine|version|victory|video|vote|website|woman|year} >nn> {arg2:postag=NNP} 0.0221 {rel} {arg1} cop> {rel:postag=VBD} 0.0216 be {rel} by {arg1} >partmod> {rel:postag=VBN} >agent> {arg2} 0.0214 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=abt|account|afternoon|alphabet|approx|area|article|block|borough|brothel|browser|cemetery|chairperson|channel|city|close|coast|code|codebase|community|core|country|county|d|database|daughter|day|dialect|distribution|district|distro|dye|engine|even|evening|family|father|file|flavor|format|foundation|garden|grove|guideline|holiday|home|hospital|house|implementation|island|issue|kernel|kilometer|km|language|letter|library|life|location|lyric|market|medium|mile|minute|model|morn|morning|name|neighborhood|newsletter|night|no|north|northeast|null|number|ocean|office|outlet|page|parent|part|party|periphery|platform|pop|port|procedure|project|prose|protocol|province|recommendation|region|right|room|script|sea|section|semester|settlement|side|site|slum|software|son|south|southeast|spreadsheet|stable|standard|state|story|student|style|suburb|syntax|system|technology|temple|term|territory|toolkit|town|township|translation|version|village|website|word|year|zone} >nn> {arg2:postag=NNP} 0.0213 be {rel} in {arg1:postag=NNP} prep_of> {arg2:postag=NNP} 0.0210 be {rel} {prep} {arg1} xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0208 be {rel} of {arg1:postag=NNP} >appos> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agency|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|book|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|co-founder|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|division|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|mascot|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaper|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|president-elect|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|secretary-general|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|stronghold|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unit|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >nn> {arg2:postag=NNP} 0.0208 be {rel} of {arg1} >appos> {rel:postag=NN} >poss> {arg2} 0.0206 {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.0200 {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0195 {rel} {prep} {arg1} >partmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0192 be {rel} {arg1} dobj> {arg2} 0.0191 {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0181 be {rel} in {arg1} prep_on> {slot0:postag=NNP:regex=apr|april|aug|august|dec|december|feb|february|friday|jan|january|jul|july|jun|june|mar|march|mary|may|nov|november|oct|october|route|saturday|sep|sept|september|strip|thursday} >prep_in> {arg2} 0.0178 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=administration|alliance|archipelago|area|art|b|beach|bloc|border|branch|brother|browser|calculator|capital|car|celebration|cf|chain|church|city|civilization|close|club|code|colony|committee|community|company|complex|comprise|computer|conglomerate|constellation|continent|corporation|country|county|culture|database|datum|day|desert|desktop|division|document|dynasty|e|economy|empire|experience|faith|family|file|forum|framework|franchise|government|grace|group|head|heritage|history|holiday|home|interpreter|island|kernel|king|kingdom|language|law|life|ltd|magazine|man|market|movement|music|nation|network|no|north|offer|operate|or|organization|package|party|pc|people|period|phrase|plan|platform|plc|point|policy|portion|power|practice|problem|program|project|prophecy|protocol|province|publication|region|resort|right|sea|season|security|series|service|software|solution|son|south|sovereignty|specification|standard|state|strip|submission|suite|system|team|technology|territory|thanks|tour|trademark|tradition|tribe|use|website|year} >nn> {arg2:postag=NNP} 0.0175 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=account|address|administration|advertise|afternoon|airport|album|announcement|appearance|area|army|art|article|audience|authority|believer|bird|body|boyfriend|briefly|brother|c|caucus|century|ceremony|chapter|cheese|chip|choice|church|citizen|city|club|code|column|commandment|community|conference|convention|cross|day|debate|defense|digamma|discipline|download|e|elder|even|event|face|factory|fansite|father|fear|floor|fluid|force|form|forum|function|game|grant|half|handler|hat|hero|home|hospital|hotel|house|hummingbird|hundred|hurricane|interview|invader|issue|king|label|language|law|letter|life|lineup|love|lyric|machine|man|mansion|meet|meeting|moment|monarch|morn|morph|neighborhood|newspaper|night|no|offer|office|page|people|performance|petition|photograph|picture|platform|play|power|priest|primary|processor|program|ranch|read|record|region|relationship|report|review|right|romance|school|screamer|seat|sell|show|side|signing|site|son|song|speech|sport|state|statement|story|strip|suburb|symposium|system|table|team|television|thousand|time|title|tour|town|township|v|verse|war|way|weapon|week|welcome|workshop|year} >nn> {arg2:postag=NNP} 0.0174 be {rel} of {arg1} poss> {arg2} 0.0169 be {rel} for {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|baseman|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choice|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|extension|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|framework|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nn> {arg2:postag=NNP} 0.0162 be {rel} of {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|co-founder|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|home|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|island|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moon|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaper|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|product|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} poss> {arg2:postag=NNP} 0.0162 {rel} {arg1} dobj> {slot0:postag=NN:regex=administration|adventure|bite|border|choice|city|control|degree|existence|interest|lot|member|nation|number|part|people|percent|primary|return|role|selection|sign|state|use|version|work} >prep_of> {arg2} 0.0160 be {rel} to {arg1} >appos> {rel:postag=NN:regex=home|precursor|successor} >prep_of> {arg2} 0.0157 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 {rel} to {arg1} nsubj> {arg2} 0.0152 be {rel} of {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0152 {rel} in {arg1} tmod> {arg2} 0.0151 be {rel} in {arg1} prep_at> {slot0:postag=NNP:regex=ajaccio|albany|avenue|be|birtley|brielle|bristol|brooklyn|camberwell|cheapside|circleville|clifton|cockermouth|college|cork|cowgate|devonshire|dublin|dunbar|edinburgh|fairfield|freehold|gloucestershire|ipswich|ken|kingston|lewisham|liverpool|locke|london|manchester|marbach|middletown|milston|neck|newbury|norwich|nottinghamshire|noyon|nw|of|oxford|oxfordshire|paddington|palace|pm|portsmouth|salem|schenectady|shadwell|shrewsbury|southampton|steventon|stratford|street|theatrette|ulm|warwick|waterloo|wedmore|westminster|weymouth|winchester|windsor|woolsthorpe|youngstown} >appos> {arg2} 0.0146 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0141 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offshoot|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religion|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sect|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subset|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symbol|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0134 be {rel} {prep} {arg1} prep_of> {slot0:postag=NN:regex=birth|board|body|book|border|branch|brother|capital|celebration|chapter|child|city|colony|committee|commonwealth|community|congregation|constellation|continent|country|county|department|division|domain|draft|dynasty|economy|education|embodiment|family|government|graduate|grandson|incarnation|inhabitant|island|kingdom|land|language|law|life|love|magic|majority|man|mandate|member|mind|month|myth|nation|nature|nome|notation|origin|part|people|person|practice|presence|president|prophet|province|region|religion|republic|revelation|ruler|run|section|sign|son|state|structure|supercontinent|teaching|territory|town|trademark|tribe|union|version|whole|will|word} >{prep:regex=prep_(.*)}> {arg2} 0.0132 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 be {rel} in {arg1} prep_in> {slot0:postag=NN:regex=area|borough|center|centre|city|coast|colony|constellation|continent|corner|country|county|desert|district|east|end|existence|group|heart|heartland|highland|history|middle|nation|north|northeast|northwest|part|portion|province|region|section|south|southeast|southwest|state|territory|west|whole} >prep_of> {arg2} 0.0131 {rel} {arg1:postag=NNP} nn> {rel:postag=NN:regex=appoint|attack|beat|bless|bomb|buy|call|camera|cause|close|conquer|control|convene|damn|defeat|discover|elect|endorse|executive|habe|help|impeach|invade|issue|kidnap|kiss|launch|lead|love|marry|mean|meet|mount|murder|need|obey|pardon|pick|play|release|rule|run|ship|shoot|sign|slay|star|steal|su|support|test|thru|use|visit|win} 0.0128 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0128 be {rel} {prep} {arg1} appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0126 {rel} at {arg1} prep_at> {slot0:postag=NN:regex=aspect|chapter|conference|congress|convention|form|history|meet|meeting|proceedings|section|seminar|session|symposium} >prep_of> {arg2} 0.0126 be {rel} in {arg1} prep_at> {slot0:postag=NNP:regex=avenue|casino|headquarters|hilton|hospital|hotel|landport|lumbinus|marton|museum|palace|pm|shadwell|stagira|steventon|street} >prep_in> {arg2} 0.0126 be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=chairman|head|president|president-elect|speaker|word} >prep_of> {arg2} 0.0126 {rel} {prep} {arg1} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2} 0.0125 be {rel} {prep} {arg1} dobj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0124 {rel} in {arg1} tmod> {arg2} 0.0124 be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=capital|chairman|city|crossroads|father|goddess|island|king|land|member|president|queen|secretary|speaker} >prep_of> {arg2} 0.0123 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0120 be {rel} {prep} {arg1} >appos> {slot0:postag=NN:regex=actor|actress|agency|airline|architect|artist|association|author|babe|bank|body|browser|business|candidate|career|carrier|charity|child|citizen|city|college|commander|community|company|composer|consult|consultancy|corporation|country|designer|director|distribution|economist|engineer|facility|father|firm|foundation|giant|group|hospital|institution|inventor|island|language|leader|mall|man|market|mother|operate|organisation|organization|painter|parent|philanthropist|philosopher|physicist|poet|provider|research|resort|school|service|slave|son|system|temple|territory|town|university|writer} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0118 be {rel} {prep} {arg1} >infmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0117 {rel} to {arg1} prep_in> {arg2} 0.0115 {rel} {arg1} dobj> {slot0:postag=NN:regex=adventure|area|author|back|backside|base|beta|body|book|capital|child|city|coast|colony|control|country|couple|creation|daughter|dialect|edition|face|form|game|gift|glory|gospel|half|hometown|house|inheritance|island|land|launch|line|majority|meet|member|message|nation|part|people|percent|piece|portion|power|province|region|release|republic|rest|role|sale|section|share|shore|sign|son|state|stockpile|support|swath|term|title|use|version|vision|vote|whole|winner|word|write|writer} >prep_of> {arg2} 0.0114 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=account|afternoon|al|area|believer|benefit|beta|book|branch|campaign|chairperson|chapter|chip|church|climax|column|company|compatible|computer|courtesy|cup|database|day|degree|device|dispenser|document|download|elder|energy|etc|even|evening|event|feature|file|floor|folder|force|format|friend|grant|hardware|heat|home|hospital|hypothesis|injection|kind|layer|level|liverpool|lyric|machine|magazine|man|mansion|member|moment|morning|nanosecond|network|night|no|office|package|page|pants|part|pc|peninsula|phone|platform|policy|power|preach|processor|profile|program|project|protocol|read|reading|representative|review|scripture|seat|server|service|site|soda|software|song|sound|state|system|television|thing|ticket|time|timer|town|v|verse|version|video|warrior|word|workstation} >nn> {arg2:postag=NNP} 0.0110 be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=ajaccio|anaheim|athen|baden|baltimore|beckley|beij|belfast|bellingham|birmingham|bombay|bradford|brampton|braunau|bristol|bronx|brooklyn|budapest|buffalo|burlington|burnaby|cambridge|canton|changsha|charleston|chengdu|chester|cincinnatus|cleveland|clinton|dalian|dayton|decatur|dublin|dunbar|edinburgh|essex|everett|fayette|fuzhou|galway|geneva|gloucester|haikou|hangzhou|honolulu|irve|islington|kilkenny|kilmarnock|kirkland|kunm|lancashire|lancaster|laupheim|limerick|liverpool|london|macclesfield|manchester|mineolum|newark|nottingham|nottinghamshire|ottawa|oxford|philadelphium|plymouth|queen|redmond|richmond|rochester|rome|sacramento|seattle|shanghaus|sheffield|shenyang|shenzhen|spokane|stafford|stratford|surrey|syracuse|tacoma|texa|tianjin|toronto|troy|tuscumbium|vancouver|victorium|wayne|wuhan|xian|yorkshire} >appos> {arg2} 0.0109 be {rel} {prep} {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locate|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0108 be {rel} of {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0108 {rel} {arg1} ccomp> {slot0:postag=VBD:regex=aka|announce|appear|approve|ask|attack|attempt|be|beat|beget|begin|blame|break|bring|buy|call|capture|carry|cause|celebrate|change|choose|circa|claim|come|command|control|create|crucify|cry|decide|declare|defeat|deliver|demand|deny|die|discover|do|draw|drop|emerge|enlist|enter|establish|estimate|fall|favor|fear|feel|find|flee|fly|follow|ft|get|give|go|greet|grow|have|help|hit|hold|inspire|intend|introduce|invade|invent|join|kill|know|launch|lead|leave|lift|live|look|lose|love|make|marry|mean|meet|name|opt|pass|pick|place|play|pledge|produce|prove|publish|put|raise|reach|read|realize|receive|refuse|release|replace|respond|rise|salt|sample|say|see|send|serve|set|show|sign|speak|spend|spring|stand|start|stay|stop|suffer|surprise|take|teach|tell|think|try|turn|use|veto|vote|wake|walk|want|win|write} >nsubj> {arg2} 0.0105 be {rel} {prep} {rel:postag=VBN:regex=base|bear|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >conj> {arg2} 0.0105 be {rel} {prep} {rel:postag=VBN:regex=base|bear|locate|publish} >{prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=ajax|alliston|ancaster|aurora|bancroft|barrie|belleville|bloomfield|brampton|brantford|brisbane|burlington|cairn|cambridge|cannington|catharine|clair|cobourg|cornwall|dashwood|dunda|etobicoke|guelph|hamilton|kana|kingston|kitchener|laval|listowel|london|markham|midland|milton|mississauga|montreal|newmarket|oakville|orangeville|oshawa|ottawa|peterborough|queenston|rockhampton|sarnium|scarborough|stratford|strathroy|sudbury|thornhill|toowoomba|toronto|townsville|waterloo|wheatley|whitby|windsor|woodstock} >appos> {arg1} >appos> {arg2} 0.0104 {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0104 {rel} at {arg1} prep_to> {arg2} 0.0104 be {rel} in {arg1} prep_to> {arg2} 0.0102 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=birth|bishop|body|capital|cause|chairman|governor|head|incarnation|king|language|leader|mayor|member|minister|mother|part|people|president|president-elect|religion|secretary|son|source|type|word} >prep_of> {arg2} 0.0102 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0101 be {rel} in {arg1} prep_from> {arg2} 0.0101 {rel} {arg1} dobj> {rel:postag=NN:regex=close|control|end|launch|love|release|write} >prep_of> {arg2} 0.0100 {rel} {arg1:postag=NNP} dobj> {slot0:postag=NN:regex=album|application|approach|attack|award|battle|beta|car|card|caucus|championship|city|computer|concept|contest|course|creation|cuisine|culture|degree|design|desktop|dish|even|evening|example|family|file|flavor|format|fusion|hand|head|hypothesis|job|kind|laptop|lyric|menu|morning|movie|music|network|newspaper|night|nomination|offer|park|payment|percent|philosophy|phone|platform|player|plugin|pm|point|primary|program|programme|protocol|race|reader|room|satellite|seat|service|software|something|song|story|style|supporter|system|technology|theme|time|title|tv|type|union|version|video} >nn> {arg2:postag=NNP} 0.0100 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=albany|ame|anaheim|association|austin|bible|brighton|brisbane|brooklyn|cambridge|casper|conference|elkhart|florence|hollywood|houston|institute|ithaca|lincoln|london|medcoast|meet|midland|mose|oakland|orlando|pasadena|queen|reykjavik|seattle|spokane|sydney|university|vancouver|venice|workshop} >appos> {arg2} 0.0099 be {rel} of {arg1:postag=NNP} prep_in> {arg2:postag=NNP} 0.0098 {rel} in {rel:postag=VBD:regex=arrive|begin|come|die|hold|live|locate|meet|open|report|say|start|win|write} >nsubj> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0097 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0096 be {rel} {prep} {arg1} prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0095 be {rel} of {arg1} prep_in> {rel:postag=NN:regex=capital|city|heart|member|part|region|state|suburb} >prep_of> {arg2} 0.0095 be {rel} by {arg1} partmod> {rel:postag=VBN} >agent> {arg2} 0.0094 {rel} in {arg1} prep_on> {arg2} 0.0093 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=alphabet|area|bank|block|city|cook|corner|country|dish|distribution|hand|handside|language|oven|part|quarter|script|shore|side|system|territory} >amod> {arg2} 0.0093 be {rel} {prep} {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0092 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=author|birth|capital|cause|chairman|father|government|governor|head|home|incarnation|king|language|leader|member|messenger|mother|officer|part|president|prophet|religion|revelation|secretary|son|speaker|type|word} >prep_of> {arg2} 0.0091 {rel} {arg1} amod> {rel:postag=JJ:regex=belate|control|edit|elect|executive|head|leave|occupy|register} 0.0091 be {rel} {prep} {arg1} dobj> {slot0:postag=NNP:regex=apr|april|aug|august|bc|ce|dec|december|feb|february|jan|january|jew|jul|july|jun|june|mar|march|may|nov|november|oct|october|paddington|protestant|saturday|sep|september} >{prep:regex=prep_(.*)}> {arg2} 0.0091 be {rel} by {arg1} >rcmod> {rel:postag=VBN} >agent> {arg2} 0.0090 {rel} in {arg1} prep_in> {slot0:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|month|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|week|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0089 be {rel} at {arg1} prep_in> {arg2} 0.0089 be {rel} by {arg1} xcomp> {arg2} 0.0087 be {rel} of {rel:postag=NN:regex=author|capital|ceo|creator|director|god|home|island|king|language|leader|member|president|queen} amod> {arg2:postag=NNP} 0.0087 {rel} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0086 {rel} of {arg1} prep_to> {arg2} 0.0086 be {rel} in {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0085 {rel} in {arg1} prep_on> {arg2} 0.0084 {rel} at {arg1} prep_at> {slot0:postag=NNP:regex=academy|association|conference|congress|meet|proceed|society} >prep_of> {arg2} 0.0084 {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 be {rel} {prep} {rel:postag=VBN:regex=appoint|award|bear|call|elect|equip|find|hold|locate} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0083 {rel} in {arg1} prep_at> {arg2} 0.0083 {rel} {arg1} cop> {rel:postag=VB} 0.0080 {rel} {arg1} >appos> {slot0:postag=NN:regex=actor|boy|group|movement|virus} >rcmod> {rel:postag=VBZ} >dobj> {arg2} 0.0080 {rel} {arg1} prep_in> {arg2} 0.0079 be {rel} in {arg1} prep_in> {arg2} 0.0079 {rel} {arg1} xcomp> {slot0:postag=CD:regex=one} >nsubj> {arg2} 0.0079 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 {rel} to {arg1} prep_at> {slot0:postag=NN:regex=aspect|conference|convention|destruction|meet|meeting|proceedings|session} >prep_of> {arg2} 0.0078 be {rel} in {arg1} prep_in> {arg2} 0.0078 be {rel} in {arg1} >appos> {rel:postag=NN:regex=book|borough|city|country|island|language|neighborhood|officer|person|province|region|river|state|town} >prep_of> {arg2} 0.0077 be {rel} to {arg1} prep_of> {arg2} 0.0076 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0076 be {rel} {prep} {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0076 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|body|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|gift|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symbol|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0076 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=abingdon|africa|antrim|astorium|atlanta|australium|belfast|belleville|bermondsey|birmingham|brighton|bronx|brooklyn|buffalo|camberwell|cambridge|cleveland|dublin|duxbury|english|funchal|glasgow|groton|hammersmith|hampstead|harlem|honolulu|huntington|january|keresley|lewisham|leytonstone|limerick|liverpool|london|lowell|lynn|malaga|manchester|motiharus|napanee|navan|norwich|noyon|october|oxford|portland|president|preston|pymble|queen|rochester|seattle|seoul|stepney|stonington|surrey|walworth|yorkshire} >conj> {arg2} 0.0076 be {rel} by {rel:postag=VBN:regex=appoint|elect} >dobj> {arg1} >prep_of> {arg2} 0.0075 be {rel} {prep} {arg1:postag=NNP} partmod> {rel:postag=VBN:regex=base|bear|compose|design|develop|find|give|grow|headquarter|hold|list|locate|make|name|persecute|publish|quote|release|situate|speak|use|write} >{prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0075 {rel} in {arg1} nsubj> {arg2} 0.0075 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0074 be {rel} in {arg1} >partmod> {rel:postag=VBN} >tmod> {arg2} 0.0073 be {rel} {prep} {rel:postag=NNP:regex=author|bear|capital|ceo|chairman|chief|city|creator|director|editor|executive|father|god|goddess|governor|head|king|land|lord|member|minister|mother|museum|officer|person|president|professor|region|savior|son|speaker|spirit|university} {prep:regex=prep_(.*)}> {arg2} 0.0072 {rel} in {arg1} prep_at> {arg2} 0.0072 be {rel} {prep} {arg1} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0071 {rel} {arg1} prep_on> {arg2} 0.0071 {rel} to {arg1} nsubj> {arg2} 0.0071 {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0071 be {rel} in {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0070 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|body|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} >prep_of> {arg2} 0.0069 be {rel} of {arg1:postag=NNP} poss> {arg2:postag=NNP} 0.0069 {rel} {prep} {arg1} advcl> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.0068 {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0068 {rel} to {arg1} prep_from> {arg2} 0.0068 {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0067 {rel} {arg1:postag=NNP} dobj> {slot0:postag=NN:regex=ad|alliance|app|application|arr|award|campaign|caucus|championship|description|family|feat|file|finale|game|handily|help|line|lyric|machine|man|member|minus|moment|month|night|nod|nomination|null|overdose|page|people|percent|play|plugin|power|primary|prison|program|programme|race|right|season|seat|series|sermon|software|state|strip|subcommittee|tablet|talk|time|title|tonight|trophy|version|victory|video|vote|week|year} >nn> {arg2:postag=NNP} 0.0067 be {rel} by {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0066 be {rel} {prep} {arg1} appos> {slot0:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logo|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republic|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg2} 0.0065 be {rel} in {rel:postag=VBN:regex=bear|locate|situate} >prep_in> {slot0:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hill|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mountain|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|portion|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg1} >appos> {arg2} 0.0065 {rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=actress|article|back|battle|book|briefly|caucus|column|conference|contest|country|decision|delegate|document|election|epistle|essay|force|goal|gospel|investigation|job|letter|life|look|majority|man|meet|messenger|nomination|nothing|notice|opinion|part|piece|primary|promise|proposal|question|race|report|review|rule|seat|settlement|settler|something|stateside|store|thing|time|top|tour|victory|vote|war|way|word|work|year} >{prep:regex=prep_(.*)}> {arg2} 0.0065 {rel} in {arg1} prep_on> {arg2} 0.0062 be {rel} of {arg1} poss> {arg2} 0.0062 be {rel} in {arg1} prep_on> {slot0:postag=NN:regex=afternoon|bank|beach|border|campus|coast|continent|corner|day|edge|end|even|floor|fringe|grounds|island|level|morn|outskirts|part|perimeter|periphery|region|shore|side|th|third|tip|waterfront|weekend|west} >prep_of> {arg2} 0.0061 {rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=article|bank|boutique|branch|brand|business|casino|center|column|company|course|degree|event|facility|flight|goodbye|hotel|interest|letter|line|location|lot|major|master|minor|network|nonstop|nothing|number|office|park|part|percent|piece|plan|plant|play|program|programme|property|race|report|representative|restaurant|rule|sale|service|site|something|station|store|subsidiary|superstore|thing|time|way|week|word} >{prep:regex=prep_(.*)}> {arg2} 0.0061 be {rel} in {arg1} >nsubj> {rel:postag=NN:regex=airport|book|city|country|currency|ingredient|island|language|peak|religion|river|state|town} >prep_of> {arg2} 0.0061 be {rel} {prep} {rel:postag=VBD:regex=hold|locate|publish} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0060 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0060 be {rel} {prep} {arg1:postag=NNP} >appos> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alternative|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|co-editor|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|division|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gateway|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symbol|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {slot0:postag=NN:regex=a|alliance|archipelago|area|blog|board|book|cartoon|chain|committee|complex|computer|concept|cult|distribution|division|empire|faction|family|federation|group|island|king|magazine|member|movement|movie|network|novel|organization|party|porcelain|program|province|region|series|son|star|state|strip|suite|system|talk|team|temple|tribe|union} >nn> {arg2:postag=NNP} 0.0060 {rel} of {arg1} ccomp> {slot0:postag=VB:regex=abide|accept|apologize|appoint|attend|be|betray|bring|cease|come|consider|continue|convict|count|damage|damn|decide|deliver|die|disarm|discuss|do|emerge|end|face|fit|get|give|go|guide|have|head|help|hold|issue|judge|know|lead|learn|leave|let|like|live|lose|make|meet|miss|need|place|play|pose|provide|pursue|put|receive|reign|remain|remind|return|review|say|see|sign|sit|speak|spend|stand|start|stay|stop|support|take|talk|teach|tell|try|turn|understand|veto|wait|want|win|withdraw} >nsubj> {arg2} 0.0060 be {rel} {prep} {arg1} nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0060 be {rel} in {arg1} prep_on> {arg2} 0.0058 be {rel} {prep} {arg1} prep_in> {slot0:postag=NN:regex=ad|area|basin|bc|build|cabin|cave|center|century|city|community|cottage|country|county|datacenter|deer|district|elk|entirety|fall|family|farmhouse|heart|herd|home|hospital|house|human|island|location|manger|morn|neighborhood|oasis|office|position|poverty|province|rectory|region|section|set|shack|situation|spring|story|summer|town|valley|village|war|year} >{prep:regex=prep_(.*)}> {arg2} 0.0057 {rel} in {arg1} nsubj> {arg2} 0.0057 be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0057 {rel} {prep} {arg1:postag=NNP} partmod> {rel:postag=VBG:regex=begin|call|come|consist|convert|fall|fly|go|grow|lead|live|make|move|operate|run|start|work} >{prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0057 {rel} {arg1} nn> {arg2:postag=NNP} 0.0056 {rel} to {rel:postag=VBD:regex=come|go|move|post|recommend|report|return|say|write} >nsubj> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0056 be {rel} in {arg1} prep_near> {arg2} 0.0056 be {rel} of {arg1} prep_of> {rel:postag=NN:regex=borough|capital|center|city|country|county|island|language|member|president|province|region|religion|sport|state|suburb} >prep_in> {arg2} 0.0056 be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=chairman|director|governor|justice|lord|mayor|member|president|secretary|speaker} >prep_of> {arg2} 0.0056 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0055 be {rel} in {rel:postag=VBN:regex=base|bear|hold|locate} >prep_at> {arg1} >appos> {arg2} 0.0055 be {rel} {prep} {arg1} xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0055 {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0055 {rel} {prep} {rel:postag=VBN:regex=call|elect|hold|present} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0055 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0055 be {rel} on {arg1} prep_at> {arg2} 0.0055 be {rel} in {arg1} prep_of> {rel:postag=NN:regex=borough|city|country|county|festival|island|language|person|place|province|region|river|state|town} >prep_of> {arg2} 0.0054 {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0054 be {rel} by {arg1} nsubj> {arg2} 0.0054 be {rel} {prep} {arg1} appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0054 be {rel} of {arg1} prep_in> {rel:postag=NN:regex=capital|centre|city|heart|language|member|part|province|region|state|suburb|word} >prep_of> {arg2} 0.0054 be {rel} in {arg1} dobj> {slot0:postag=NN:regex=away|block|distance|drive|hour|kilometer|kilometre|km|m|meter|metre|mile|minute|step|walk|yard} >prep_from> {arg2} 0.0053 be {rel} {prep} {arg1} xcomp> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0052 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0052 be {rel} in {arg1} nsubjpass> {arg2} 0.0052 {rel} to {arg1} prep_to> {slot0:postag=NN:regex=area|child|city|conference|continent|convention|descendant|desert|garden|hand|heart|home|homeland|hometown|house|island|judge|king|land|leader|man|meet|mountain|multitude|nation|part|people|port|province|region|shore|side|son|south|sovereignty|state|suburb|throne|tomb|top|town|tribe|village|voice} >prep_of> {arg2} 0.0052 {rel} at {arg1} prep_in> {arg2} 0.0052 be {rel} {prep} {rel:postag=VBN:regex=bear|cede|compare|defeat|establish|hold|locate|speak} {prep:regex=prep_(.*)}> {arg2} 0.0051 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=computer|device|download|file|form|format|garage|language|location|machine|network|office|outlet|page|phone|platform|resident|section|site|system|translation|user|version|website} >nn> {arg2:postag=NNP} 0.0051 {rel} to {arg1} prep_into> {arg2} 0.0051 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|government|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religion|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0051 be {rel} {prep} {rel:postag=NN:regex=body|book|city|country|county|executive|festival|head|holiday|industry|island|lake|language|law|leader|member|minority|mountain|museum|novel|officer|park|part|play|problem|religion|representative|river|sport|state|time|town|trademark} >nsubj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0051 {rel} {prep} {arg1} >rcmod> {rel:postag=VBP} >{prep:regex=prep_(.*)}> {arg2} 0.0051 be {rel} {prep} {arg1} >infmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0051 be {rel} in {arg1} prep_in> {slot0:postag=NNP:regex=akron|belfast|belleville|bradford|bristol|bronx|brooklyn|buffalo|cambridge|cincinnatus|cleveland|columbus|glasgow|harlem|honolulu|hull|kirriemuir|leicester|lewisham|liverpool|london|maidenhead|manchester|newark|norfolk|nunhead|philadelphium|plymouth|portsmouth|rickinghall|sheffield|suffolk|swindon|walworth|warwickshire} >appos> {arg2} 0.0050 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0050 be {rel} {prep} {arg1} partmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0050 be {rel} on {arg1} prep_in> {arg2} 0.0050 {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0049 be {rel} in {arg1:postag=NNP} poss> {arg2:postag=NNP} 0.0049 be {rel} on {arg1} prep_on> {slot0:postag=NN:regex=amalgam|bank|coast|combination|corner|day|edge|end|expanse|foot|fringe|implementation|island|life|line|metre|north|part|principle|review|sand|seafront|shore|side|stretch|teach|teaching|tip|version} >prep_of> {arg2} 0.0049 be {rel} in {rel:postag=NNP:regex=city|island|state|town|university} >appos> {arg1} >appos> {arg2} 0.0049 {rel} to {arg1} nsubj> {arg2} 0.0049 be {rel} in {rel:postag=VBN:regex=base|bear|hold|locate|publish|situate|take} appos> {arg2} 0.0048 be {rel} {prep} {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moon|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0048 {rel} to {arg1} prep_at> {slot0:postag=NNP:regex=association|conference|meet|society} >prep_of> {arg2} 0.0048 be {rel} in {arg1} prep_at> {arg2} 0.0048 be {rel} {prep} {arg1} nsubj> {arg2} 0.0048 be {rel} of {arg1} prep_in> {slot0:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chief|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|history|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|whole|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg2} 0.0048 be {rel} {prep} {arg1} prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0047 {rel} {arg1:postag=NNP} dobj> {slot0:postag=NN:regex=award|beisbol|beta|browser|caucus|cd|championship|code|contest|daughter|download|election|family|game|handily|line|list|lyric|match|music|phone|primary|race|recount|ring|seat|series|service|software|system|ticket|time|title|trophy|update|version|video|vote|war|website} >nn> {arg2:postag=NNP} 0.0047 {rel} of {arg1} nsubj> {arg2} 0.0046 {rel} {prep} {arg1} xcomp> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0046 {rel} {arg1} prep_of> {arg2} 0.0046 be {rel} {prep} {arg1:postag=NNP} partmod> {slot0:postag=VBN:regex=base|distribute|locate|publish|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0045 {rel} {arg1} advcl> {rel:postag=VBD} >dobj> {arg2} 0.0045 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0045 be {rel} of {arg1} >nsubj> {rel:postag=NN:regex=capital|city|country|currency|island|language|law|person|province|region|religion|sport|state} >prep_in> {arg2} 0.0045 {rel} in {arg1} prep_in> {arg2} 0.0044 {rel} to {arg1} advcl> {slot0:postag=VBD:regex=announce|answer|approach|ask|be|begin|bring|bury|call|cast|close|come|continue|die|do|draw|enter|entitle|follow|give|go|grab|have|heal|hold|join|leave|look|make|mock|move|nod|open|pass|pull|put|return|run|say|see|send|set|show|sin|sit|speak|stand|step|stretch|struggle|take|tell|think|thou|try|turn|visit|wa|walk|wonder|write} >nsubj> {arg2} 0.0044 be {rel} in {arg1} prep_to> {arg2} 0.0044 {rel} {rel:postag=VBD:regex=marry} >dobj> {arg1} >appos> {slot0:postag=NN:regex=brother|daughter|sister|son} >prep_of> {arg2} 0.0044 {rel} to {arg1} xcomp> {slot0:postag=VB:regex=ask|attend|bring|catch|dominate|end|establish|face|find|follow|help|join|liberate|make|meet|open|present|question|rebuild|redeem|rival|run|save|see|settle|take|tell|tempt|test|upstate|visit|watch|win} >dobj> {arg2} 0.0043 be {rel} of {arg1} nsubj> {arg2} 0.0043 be {rel} of {arg1} appos> {arg2} 0.0043 {rel} to {arg1} nsubj> {arg2} 0.0043 be {rel} by {rel:postag=VBN:regex=appoint|elect} >xcomp> {arg1} >prep_of> {arg2} 0.0043 be {rel} to {arg1} tmod> {arg2} 0.0042 {rel} {arg1} infmod> {rel:postag=VB} >dobj> {arg2} 0.0042 be {rel} {prep} {rel:postag=VBN:regex=base|bear|hold|know|locate|make|power|publish|relate|save|schedule|write} >{prep:regex=prep_(.*)}> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0042 be {rel} {prep} {arg1} >amod> {rel:postag=JJ:regex=available|different|free|full|headquarter|hold|native|own|present|president|rich|similar|subject} >{prep:regex=prep_(.*)}> {arg2} 0.0042 be {rel} {arg1} prep_through> {slot0:postag=NN:regex=server} >amod> {arg2} 0.0042 be {rel} of {arg1} poss> {arg2} 0.0042 be {rel} {prep} {rel:postag=NN:regex=book|city|home|member|name|part|son} >prep_of> {arg1} >appos> {slot0:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|book|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|branch|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|component|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|division|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg2} 0.0042 {rel} {arg1} nsubj> {arg2} 0.0041 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=antille|elizabeth|father|gen|himself|inc|incorporate|java|macromedium|matt|microsystem|nemour|psa|rom|savior|saviour|system} >nn> {arg2:postag=NNP} 0.0041 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=albany|anaheim|athen|austin|berkeley|brisbane|chicago|cooperstown|dalla|denver|irvine|madison|monterey|ottawa|pasadena|portland|rochester|sacramento|seattle|spokane|toronto|vancouver|victorium|vienna|washington} >appos> {arg2} 0.0041 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0041 be {rel} in {rel:postag=NN:regex=city|country|town} appos> {arg2} 0.0041 be {rel} of {arg1:postag=NNP} dobj> {rel:postag=NN:regex=chairman|governor|mayor|member|president|son} >nn> {arg2:postag=NNP} 0.0041 be {rel} of {arg1} >appos> {rel:postag=NN:regex=book|capital|city|country|county|island|language|leader|member|person|president|province|region|state} >prep_in> {arg2} 0.0040 be {rel} {prep} {arg1} prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0040 be {rel} in {rel:postag=VBN:regex=bear|locate} >prep_at> {slot0:postag=NNP:regex=street|university} >appos> {arg1} >appos> {arg2} 0.0040 be {rel} in {arg1} prep_in> {arg2} 0.0040 {rel} at {arg1} advcl> {slot0:postag=VBD:regex=appear|approach|arrive|bear|begin|check|close|come|continue|direct|enter|entitle|feel|finish|get|give|go|grab|hold|join|lay|leave|look|move|nod|open|point|pull|put|raise|return|roll|say|see|set|shrug|sigh|smile|speak|start|step|take|throw|try|turn|wa|walk|want} >nsubj> {arg2} 0.0040 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=address|advisor|area|box|button|certificate|change|chip|city|computer|copy|face|floor|hardware|interest|issue|machine|meet|member|night|no|nominee|notice|officer|pc|percent|person|platform|policy|poster|processor|proposal|recommendation|report|representative|salary|seat|server|system|team|time|version|video|way|west} >nn> {arg2:postag=NNP} 0.0040 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=author|body|brother|capital|father|head|image|incarnation|king|land|language|man|member|mother|part|power|president|prophet|religion|son|voice|word} >prep_of> {arg2} 0.0039 {rel} {arg1} dobj> {slot0:postag=NN:regex=battle|caucus|championship|contest|count|county|delegate|election|everything|majority|man|nature|percent|primary|race|seat|spot|target|time|victory|vote|year} >prep_in> {arg2} 0.0039 {rel} to {arg1} nsubj> {arg2} 0.0039 be {rel} {prep} {arg1} nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0039 be {rel} in {arg1} prep_on> {slot0:postag=NN:regex=acre|archipelago|bank|base|campus|corner|date|day|equator|estate|even|farm|grounds|installation|island|jun|mountaintop|peninsula|plantation|shore|side|site|soil|territory|water|waterfront} >prep_in> {arg2} 0.0039 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=author|birth|birthday|capital|cause|head|home|image|incarnation|language|member|mother|part|power|president|revelation|son|type|word} >prep_of> {arg2} 0.0038 be {rel} {prep} {arg1} nsubjpass> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0038 be {rel} {prep} {arg1} partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0038 {rel} {prep} {rel:postag=VBD:regex=begin|collapse|come|continue|declare|die|do|elect|end|erupt|go|hold|live|locate|meet|open|report|say|start|work|write} >nsubj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0038 be {rel} of {arg1} prep_from> {arg2} 0.0038 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0038 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=arm|back|body|comment|cross|door|edition|expression|eye|face|father|foot|form|gospel|hand|heart|house|performance|portrait|position|power|profile|question|rescue|response|rib|shore|show|side|son|surface|throne|today|weapon|week|will|word} >poss> {arg2} 0.0038 be {rel} {prep} {rel:postag=VBN:regex=abolish|accept|award|bear|build|celebrate|comprise|conduct|dedicate|establish|find|give|hold|know|locate|make|offer|provide|publish|release|require|reveal|situate|speak|submit|use|write} >nsubjpass> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0038 be {rel} {prep} {arg1} xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0037 be {rel} by {arg1} agent> {arg2} 0.0037 be {rel} {prep} {arg1:postag=NNP} nsubj> {arg2} 0.0037 {rel} {arg1} dobj> {arg2} 0.0037 {rel} in {arg1} prep_on> {arg2} 0.0037 {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0037 be {rel} on {arg1} prep_in> {slot0:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|hour|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg2} 0.0037 {rel} {arg1} dobj> {arg2} 0.0036 be {rel} of {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} appos> {arg2} 0.0036 be {rel} on {arg1} dobj> {slot0:postag=NN:regex=away|block|kilometer|kilometre|km|m|meter|metre|mile|minute|moment|mt|step|stop|walk|yard} >prep_from> {arg2} 0.0036 be {rel} of {arg1} nsubj> {arg2} 0.0036 be {rel} {prep} {arg1} rcmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0036 {rel} in {arg1} prep_to> {arg2} 0.0036 {rel} {arg1} prepc_by> {rel:postag=VBG} >dobj> {arg2} 0.0036 {rel} in {arg1} nsubj> {arg2} 0.0036 {rel} {arg1} prep_of> {arg2} 0.0036 be {rel} in {rel:postag=VBN:regex=base|hold|locate} >prep_on> {slot0:postag=NN:regex=border|campus|coast|day|edge|floor|grounds|shore|slope|tip} >prep_of> {arg1} >prep_in> {arg2} 0.0035 be {rel} {prep} {arg1} prep_in> {slot0:postag=NNP:regex=apr|april|aug|bc|bce|chelsea|dec|december|feb|february|fountainbridge|harlem|honolulu|jul|july|jun|june|mar|march|nov|noyon|oct|october|sep|sept|september|usa} >{prep:regex=prep_(.*)}> {arg2} 0.0035 be {rel} in {arg1} prep_in> {arg2} 0.0035 {rel} {prep} {rel:postag=VBD:regex=appear|begin|come|die|go|move|open|report|return|say|serve|write} >{prep:regex=prep_(.*)}> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0035 be {rel} by {arg1} >appos> {slot0:postag=NN:regex=agency|automaker|bill|brand|browser|carmaker|channel|character|city|company|country|detective|drug|film|initiative|language|law|magazine|majority|man|network|newspaper|organization|percent|portal|program|religion|service|site|system|tabloid} >partmod> {rel:postag=VBN} >agent> {arg2} 0.0035 be {rel} by {arg1:postag=NNP} agent> {arg2:postag=NNP} 0.0035 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cause|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religion|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0035 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0035 be {rel} in {arg1} prep_in> {arg2} 0.0035 be {rel} {prep} {rel:postag=NNP:regex=bear|city|locate|place} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0035 be {rel} {prep} {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|body|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|gift|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|law|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|return|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trademark|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|word|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0035 {rel} in {arg1} prep_in> {slot0:postag=NN:regex=area|book|center|centre|chapter|city|district|draft|existence|flesh|form|gospel|heart|highland|hometown|hour|land|middle|month|neighborhood|oneness|part|person|region|section|sort|state|town|village|week} >prep_of> {arg2} 0.0035 be {rel} in {rel:postag=NN:regex=city|town|village} >prep_of> {arg1} >conj> {arg2} 0.0035 {rel} {arg1} prep_for> {arg2} 0.0034 be {rel} in {arg1} prep_on> {arg2} 0.0034 {rel} to {arg1} iobj> {arg2} 0.0034 {rel} {arg1} ccomp> {slot0:postag=VBZ:regex=be|beat|become|begin|caucus|come|continue|create|do|give|go|have|hold|imitate|lose|love|make|meet|need|offer|own|play|present|say|see|start|take|win} >nsubj> {arg2} 0.0034 be {rel} of {arg1} prep_for> {arg2} 0.0034 be {rel} for {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0034 be {rel} {prep} {arg1} >rcmod> {rel:postag=JJ} >{prep:regex=prep_(.*)}> {arg2} 0.0034 be {rel} of {arg1:postag=NNP} >nsubj> {rel:postag=NN:regex=birthstone|body|capital|chairman|city|color|currency|festival|governor|king|language|member|name|officer|president|religion|sign|son|variant|version|way|wife} >nn> {arg2:postag=NNP} 0.0034 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0034 be {rel} {prep} {arg1} <{prep:regex=prep_(.*)}< {rel:postag=NN} nsubj> {arg2} 0.0034 be {rel} in {arg1} prep_of> {rel:postag=NN:regex=city|country|county|destination|island|language|neighborhood|park|player|province|region|river|sport|state|team|town} >poss> {arg2} 0.0034 be {rel} by {arg1} agent> {arg2} 0.0034 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0034 be {rel} in {arg1} tmod> {arg2} 0.0033 be {rel} in {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0033 {rel} {prep} {arg1} <{prep:regex=prep_(.*)}< {rel:postag=VB} nsubj> {arg2} 0.0033 be {rel} of {arg1} prep_in> {arg2} 0.0033 {rel} {arg1} ccomp> {slot0:postag=VB:regex=be|believe|bring|buy|check|come|defeat|deny|destroy|die|do|enjoy|establish|face|fill|find|get|give|go|guide|have|help|issue|kick|lead|let|look|make|name|perform|play|release|reveal|run|see|serve|share|show|sit|take|talk|teach|tell|tend|think|use|win|work|worship} >nsubj> {arg2} 0.0033 be {rel} of {arg1} nsubj> {arg2} 0.0033 be {rel} in {arg1} >partmod> {rel:postag=VBN:regex=base|bear|hold|locate|situate|speak} >prep_in> {slot0:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg2} 0.0033 be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=chair|chairman|chairperson|executive|member|officer|president|speaker} >prep_of> {arg2} 0.0033 {rel} {prep} {arg1} ccomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0032 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >prep_of> {arg2} 0.0032 be {rel} in {arg1} ccomp> {rel:postag=VBN:regex=bear|headquarter|locate} >prep_in> {arg2} 0.0032 be {rel} in {arg1} >partmod> {rel:postag=VBN:regex=bear|hold|list|locate|publish|release|take} >prep_on> {arg2} 0.0032 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=area|birth|birthday|campus|candidate|capital|character|city|countryside|culture|government|grace|heritage|history|life|love|person|plan|presence|province|region|state|territory|wife|will} >poss> {arg2} 0.0032 {rel} {arg1} appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0032 be {rel} {prep} {arg1} <{prep:regex=prep_(.*)}< {rel:postag=NN:regex=capital|city|colony|festival|form|island|land|part|sign|spirit} >amod> {arg2} 0.0032 be {rel} {prep} {arg1} >rcmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=athen|baden|bavarium|brooklyn|cork|cornwall|dublin|edinburgh|edmonton|glasgow|hanover|ken|liverpool|london|nottingham|pla|seattle|toronto|vancouver} >appos> {arg2} 0.0031 {rel} {arg1} dobj> {arg2} 0.0031 be {rel} to {rel:postag=VBD:regex=marry} >dobj> {arg1} >appos> {slot0:postag=NN:regex=daughter|son|widow} >prep_of> {arg2} 0.0031 {rel} to {arg1} ccomp> {rel:postag=VBD} >nsubj> {arg2} 0.0031 be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0031 be {rel} in {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0031 {rel} {arg1} appos> {rel:postag=NN:regex=area|city|country|island|lake|mountain|museum|neighborhood|officer|peak|player|region|soldier|state|team|town|village} >nn> {arg2:postag=NNP} 0.0031 {rel} in {arg1} nsubj> {arg2} 0.0030 {rel} {prep} {arg1} prepc_before> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0030 {rel} as {rel:postag=NN:regex=star} nn> {arg2:postag=NNP} 0.0030 be {rel} {prep} {arg1} >nsubj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0030 {rel} to {arg1} nsubj> {arg2} 0.0030 {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0030 {rel} at {arg1} nsubj> {arg2} 0.0030 be {rel} {prep} {arg1} nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0030 {rel} {arg1} xcomp> {slot0:postag=VB:regex=be|bless|come|consider|die|do|get|handle|have|help|hold|kill|leave|lie|live|make|mean|open|promote|provide|read|save|start|take|view} >nsubj> {arg2} 0.0030 be {rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=ad|bc|be|block|c|circa|citizen|family|kilometer|km|life|man|meter|mile|minute|north|officer|pm|prince|right|slave|son|time|way|west|work|yard} >{prep:regex=prep_(.*)}> {arg2} 0.0030 {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0030 be {rel} of {arg1} prep_of> {arg2} 0.0030 be {rel} {arg1} prep_on> {arg2} 0.0030 be {rel} by {arg1} nsubj> {arg2} 0.0030 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0030 be {rel} of {arg1} prep_in> {arg2} 0.0030 be {rel} {prep} {arg1} ccomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0030 {rel} {prep} {arg1} partmod> {rel:postag=VBG:regex=begin|come|die|go|live|move|run|travel|work} >{prep:regex=prep_(.*)}> {arg2} 0.0030 be {rel} {prep} {arg1} nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0030 be {rel} by {arg1} prep_on> {arg2} 0.0029 {rel} to {arg1} nsubj> {arg2} 0.0029 be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=chair|chairman|chairperson|member|officer|president|speaker} >prep_of> {arg2} 0.0029 {rel} {arg1} ccomp> {slot0:postag=VB:regex=address|be|bless|collect|defeat|die|do|establish|face|get|give|go|guide|have|help|lay|let|live|lose|love|make|meet|please|prohibit|promote|regulate|require|save|serve|take|tell|watch|win} >nsubj> {arg2} 0.0029 {rel} in {arg1} ccomp> {slot0:postag=VBD:regex=appoint|be|choose|claim|come|command|create|die|do|enter|exist|found|fulfil|give|hang|have|inspire|institute|love|make|perform|promise|provide|raise|reveal|rise|say|send|show|speak|take|teach|tell|use|walk} >nsubj> {arg2} 0.0029 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=chairman|city|director|member|officer|part|president|son} >prep_of> {arg2} 0.0029 {rel} in {arg1:postag=NNP} prep_at> {rel:postag=NN:regex=meet} >nn> {arg2:postag=NNP} 0.0029 be {rel} in {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0029 {rel} {arg1} xcomp> {rel:postag=VBG} >dobj> {arg2} 0.0029 be {rel} by {arg1:postag=NNP} partmod> {rel:postag=VBN:regex=administer|appoint|back|cause|chair|create|design|develop|direct|found|fund|head|lead|make|own|power|provide|sign|sponsor|support|use|write} >agent> {arg2:postag=NNP} 0.0028 {rel} {prep} {rel:postag=VBN:regex=call|elect} >xcomp> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0028 be {rel} of {arg1} prep_in> {rel:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|son|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg2} 0.0028 be {rel} of {arg1} partmod> {slot0:postag=VBN:regex=base|conceive|locate|situate|speak|take|use} >prep_in> {arg2} 0.0028 {rel} {arg1} prep_to> {arg2} 0.0028 {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0028 {rel} {prep} {arg1} ccomp> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.0028 be {rel} {prep} {rel:postag=NN:regex=belief|body|city|country|father|head|holiday|law|member|officer|president|representative|river|son|town} {prep:regex=prep_(.*)}> {arg2} 0.0028 {rel} of {arg1} ccomp> {slot0:postag=VBN:regex=act|agree|ask|attempt|attend|be|believe|bind|bring|call|change|choose|come|continue|decide|discuss|do|express|fail|give|go|have|hear|hide|lay|leave|make|meet|misrepresent|play|present|promise|provide|put|raise|say|seek|set|show|speak|spend|submit|take|tell|try|use|vote} >nsubj> {arg2} 0.0028 {rel} {prep} {rel:postag=VBZ:regex=begin|come|consist|continue|end|offer|open|operate|run|say|star|start|work|write} >nsubj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0028 {rel} {arg1} infmod> {rel:postag=VB} >dobj> {arg2} 0.0028 be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=chairman|president|speaker} >prep_of> {arg2} 0.0028 {rel} {arg1} dobj> {slot0:postag=NN:regex=child|control|face|game|house|installation|kingdom|majority|man|member|memory|nation|part|people|president|remnant|rest|right|role|section|state|stockpile|transition|use|version} >prep_of> {arg2} 0.0028 be {rel} from {rel:postag=NN:regex=band|congressman|duo|rapper|release|senator} nn> {arg2:postag=NNP} 0.0028 be {rel} {prep} {arg1} >rcmod> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0028 be {rel} in {arg1} >partmod> {rel:postag=VBN:regex=base|bear|hold|locate|take} >prep_at> {arg2} 0.0027 {rel} on {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0027 {rel} {arg1} ccomp> {rel:postag=VB} >dobj> {arg2} 0.0027 be {rel} in {rel:postag=VBN:regex=locate} >prep_at> {slot0:postag=NNP:regex=avenue|blvd|street} >prep_in> {arg1} >appos> {arg2} 0.0027 be {rel} of {arg1:postag=NNP} nsubj> {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agency|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|co-founder|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} >nn> {arg2:postag=NNP} 0.0027 be {rel} {prep} {arg1} >xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0027 be {rel} by {arg1:postag=NNP} agent> {slot0:postag=NN:regex=award|bacterium|company|corporation|grant|group|infection|ltd|member|no|parasite|program|pursuant|query|rocket|software|species|subject|terrorist|theme|virus|year} >nn> {arg2:postag=NNP} 0.0027 {rel} to {rel:postag=VBD:regex=go|say|write} >prep_in> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0027 be {rel} in {arg1} amod> {arg2} 0.0027 be {rel} in {arg1} prep_on> {slot0:postag=NNP:regex=apr|aug|dec|feb|february|friday|jan|jul|jun|mar|march|may|monday|oct|october|saturday|sep|sunday|thursday|tuesday|wednesday} >appos> {arg2} 0.0027 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0027 {rel} of {arg1} ccomp> {slot0:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|one|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|riddle|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thing|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|war|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >nsubj> {arg2} 0.0027 be {rel} for {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0027 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0027 {rel} {arg1} xcomp> {slot0:postag=VB:regex=begin|bring|come|complete|create|die|do|find|follow|get|give|go|have|head|issue|know|lead|leave|live|make|mean|offer|populate|provide|reunite|sacrifice|say|share|take|talk|travel|trust|walk} >nsubj> {arg2} 0.0027 {rel} {arg1} dobj> {slot0:postag=NN:regex=beta|build|control|edition|game|half|house|inheritance|launch|nation|number|part|people|preview|release|state|territory|total|use|version} >prep_of> {arg2} 0.0027 {rel} {arg1} prep_of> {arg2} 0.0027 be {rel} of {arg1} appos> {rel:postag=NN:regex=capital|city|home|member|part|son|suburb} >prep_of> {arg2} 0.0027 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0027 be {rel} of {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|co-founder|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nsubj> {arg2:postag=NNP} 0.0027 be {rel} {prep} {arg1} nsubjpass> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0027 be {rel} {prep} {arg1} nn> {arg2:postag=NNP} 0.0026 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0026 be {rel} in {rel:postag=VBN:regex=assassinate|bear|give|hold|introduce|locate|publish|situate|write} >nsubjpass> {arg1:postag=NNP} >nn> {arg2:postag=NNP} 0.0026 {rel} to {arg1} nsubj> {arg2} 0.0026 be {rel} in {arg1} prep_at> {slot0:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|begin|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossroads|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|gate|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg2} 0.0026 be {rel} to {arg1:postag=NNP} ccomp> {slot0:postag=VBD:regex=answer|appear|ask|baptize|be|begin|call|carry|come|create|declare|die|do|exist|form|give|go|have|keep|know|love|make|put|rise|say|see|send|show|speak|take|tell} >nsubj> {arg2} 0.0026 {rel} {arg1:postag=NNP} dobj> {slot0:postag=NN:regex=bookmark|caucus|championship|file|game|holiday|language|majority|money|name|player|plugin|primary|product|quot|reader|restaurateur|seat|software|title|trophy|version} >nn> {arg2:postag=NNP} 0.0026 be {rel} in {arg1} prep_between> {arg2} 0.0026 {rel} {arg1} prep_for> {arg2} 0.0026 be {rel} in {arg1} dobj> {slot0:postag=NNP:regex=apr|aug|bedfordshire|county|dec|february|george|jan|jul|jun|mar|nov|november|october|sep|september|street} >appos> {arg2} 0.0026 {rel} in {arg1} dobj> {arg2} 0.0026 {rel} in {arg1} ccomp> {slot0:postag=VB:regex=address|agree|allow|be|bring|build|come|consider|consult|continue|die|do|give|have|help|intend|issue|keep|like|make|move|oppose|peer|play|provide|push|raise|receive|return|rule|send|support|take|talk|use|want|work} >nsubj> {arg2} 0.0026 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=anguillum|can|david|god|lord|nation|president|spain|un} >appos> {arg2} 0.0026 {rel} {arg1:postag=NNP} dobj> {slot0:postag=NNP:regex=adam|christian|cowboy|dium|elder|eve|feat|gen|germany|indiana|leopard|m|primary|satan|savior} >nn> {arg2:postag=NNP} 0.0026 be {rel} of {arg1} prep_from> {rel:postag=NN:regex=city|member|part|region} >prep_of> {arg2} 0.0026 {rel} of {arg1} nsubj> {arg2} 0.0026 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0025 {rel} of {arg1} ccomp> {slot0:postag=VBN:regex=allow|bar|bear|bless|break|brief|commit|concern|crucify|curse|destroy|engage|expect|fit|give|hold|involve|justify|keep|limit|make|oppose|permit|play|preach|qualify|raise|satisfy|seat|send|take|test} >nsubjpass> {arg2} 0.0025 {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0025 be {rel} in {arg1} prep_of> {arg2} 0.0025 be {rel} of {arg1} prep_from> {arg2} 0.0025 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=atlanta|austin|dalla|edmonton|evanston|henderson|houston|louisville|mckinney|miamus|mississauga|portland|seattle|tampa|toronto|vancouver|washington} >appos> {arg2} 0.0025 be {rel} in {rel:postag=VBN:regex=base|bear|hold|locate} nn> {arg2:postag=NNP} 0.0025 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0025 be {rel} of {arg1} appos> {rel:postag=NN} 0.0025 be {rel} for {arg1} poss> {arg2} 0.0025 {rel} {prep} {arg1} >rcmod> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0025 {rel} to {arg1} nsubj> {arg2} 0.0025 {rel} {arg1:postag=NNP} prep_of> {arg2:postag=NNP} 0.0025 be {rel} in {arg1} prep_in> {arg2} 0.0025 {rel} {arg1:postag=NNP} dobj> {arg2:postag=NNP} 0.0025 {rel} at {arg1} nsubj> {arg2} 0.0025 be {rel} of {arg1} prep_in> {arg2} 0.0025 {rel} {prep} {arg1} rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2} 0.0025 be {rel} by {arg1} nsubj> {arg2} 0.0024 be {rel} in {arg1} prep_to> {slot0:postag=NN:regex=attraction|country|death|family|farmer|father|immigrant|member|merchant|mother|north|parent|slave|south|wife} >prep_in> {arg2} 0.0024 be {rel} in {arg1} nsubj> {arg2} 0.0024 {rel} in {arg1} ccomp> {slot0:postag=VBD:regex=agree|be|begin|come|consider|create|die|do|fall|give|have|hope|launch|live|make|null|promise|record|report|rise|say|see|send|speak|torpedo|want|welcome|win|write} >nsubj> {arg2} 0.0024 {rel} {prep} {arg1} rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.0024 {rel} {arg1} ccomp> {slot0:postag=VBZ:regex=appear|be|caucs|caucus|come|continue|do|download|feature|find|give|have|make|need|offer|present|promise|provide|say|seem|singles|take|tell|use|want} >nsubj> {arg2} 0.0024 {rel} {arg1} ccomp> {slot0:postag=VB:regex=administer|approach|be|bless|buffet|carry|choose|come|continue|control|create|deny|do|drink|enjoy|experience|face|feel|get|give|have|help|inherit|live|look|love|make|manage|matter|meet|run|serve|take|wait|watch|win|work} >nsubj> {arg2} 0.0024 be {rel} of {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0024 {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0024 be {rel} of {arg1} partmod> {slot0:postag=VBN:regex=administer|appoint|bear|call|choose|create|develop|elect|establish|found|give|inspire|license|make|operate|own|practice|produce|provide|publish|register|reveal|rule|send|speak|sponsor|surround|use|write} >agent> {arg2} 0.0024 {rel} for {arg1} prep_in> {arg2} 0.0024 be {rel} for {arg1} prep_after> {arg2} 0.0024 be {rel} {prep} {arg1} appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0024 be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0024 {rel} of {arg1} prep_unto> {arg2} 0.0024 {rel} of {arg1} ccomp> {slot0:postag=VBZ:regex=be|believe|blow|come|continue|convict|deserve|do|get|have|intend|know|lack|look|need|plan|represent|save|say|stand|support|think|understand|want|welcome} >nsubj> {arg2} 0.0024 {rel} {arg1} prep_in> {arg2} 0.0023 be {rel} {prep} {arg1} agent> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0023 {rel} in {arg1} prep_until> {arg2} 0.0023 {rel} {arg1} prep_in> {arg2} 0.0023 {rel} {arg1} prep_in> {arg2} 0.0023 be {rel} {prep} {rel:postag=NN:regex=city|form|member|part|son} >{prep:regex=prep_(.*)}> {arg1} >conj> {arg2} 0.0023 {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0023 {rel} {prep} {arg1} ccomp> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0023 be {rel} {prep} {arg1} nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0023 {rel} in {arg1} prep_on> {arg2} 0.0023 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=celebration|country|dieth|group|king|m|message|proof|region|slay|son|stack|standard|state|system|talent|tomorrow|wife|word} >nn> {arg2:postag=NNP} 0.0023 {rel} in {arg1} prep_at> {arg2} 0.0023 be {rel} in {arg1} prep_of> {slot0:postag=NNP:regex=aldershot|andover|auckland|bihar|darien|devon|florence|ghent|glasgow|guangzhou|gujarat|honshu|jammu|java|leed|mecca|nnberg|ontario|queensland|rome|shanghaus|york} >prep_in> {arg2} 0.0023 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0023 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=architecture|area|box|cause|chapter|chip|church|computer|hardware|law|machine|neighborhood|night|pc|platform|poll|processor|race|ranch|scripture|seat|server|suburb|system|time} >nn> {arg2:postag=NNP} 0.0023 be {rel} on {arg1:postag=NNP} nsubj> {arg2:postag=NNP} 0.0023 {rel} in {arg1} ccomp> {slot0:postag=VBD:regex=appear|be|begin|break|bring|call|choose|come|create|descend|die|do|give|go|have|know|love|make|purchase|request|rise|save|say|see|speak|take|tell|vote} >nsubj> {arg2} 0.0023 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0023 {rel} to {arg1} ccomp> {slot0:postag=VB:regex=accept|appear|appoint|approve|authorize|baptize|be|bring|come|consider|die|do|eat|fall|fight|find|get|give|go|have|judge|know|lead|leak|leave|let|love|make|remain|see|speak|take|think|work} >nsubj> {arg2} 0.0022 be {rel} {prep} {arg1} agent> {slot0:postag=NN:regex=appointment|fire|flight|force|grandparent|letter|member|membership|mother|nationalist|native|parent|people|police|power|rail|slave|speaker} >{prep:regex=prep_(.*)}> {arg2} 0.0022 {rel} {arg1} >rcmod> {arg2} >cop> {rel:postag=VBD} 0.0022 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {rel:postag=NN:regex=area|city|country|island|park|region|state|town} >nn> {arg2:postag=NNP} 0.0022 be {rel} {prep} {arg1:postag=NNP} <{prep:regex=prep_(.*)}< {rel:postag=VBN:regex=base|locate|publish|write} nn> {arg2:postag=NNP} 0.0022 be {rel} {prep} {rel:postag=NN:regex=book|city|country|currency|day|head|island|language|law|member|mountain|museum|officer|peak|president|river|song|star|town} {prep:regex=prep_(.*)}> {arg2} 0.0022 {rel} in {arg1} prep_at> {slot0:postag=NN:regex=age|brief|ceremony|conference|event|headquarters|home|hospital|house|meet|rally|side|speech|time} >prep_in> {arg2} 0.0022 {rel} to {arg1} ccomp> {slot0:postag=VBN:regex=agree|approve|ask|be|bind|come|desire|discuss|do|give|go|hear|leave|make|meet|receive|send|speak|start|state|take|tell} >nsubj> {arg2} 0.0022 {rel} {prep} {arg1} >rcmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0022 be {rel} in {arg1} poss> {arg2} 0.0022 {rel} to {arg1} nsubj> {arg2} 0.0022 be {rel} {prep} {arg1} >rcmod> {slot0:postag=VBD:regex=announce|appear|ask|be|begin|build|come|die|give|go|have|make|marry|preach|receive|remain|rise|say|spend|take|tell|walk|write} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0022 be {rel} {arg1} prep_as> {arg2} 0.0022 be {rel} in {arg1} prep_at> {slot0:postag=NNP:regex=mit|nation|newseum} >prep_in> {arg2} 0.0022 be {rel} in {rel:postag=VBN:regex=bear|locate} >prep_near> {arg1} >appos> {arg2} 0.0022 be {rel} of {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0022 be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0022 be {rel} by {arg1} nsubj> {arg2} 0.0022 {rel} {arg1} dobj> {slot0:postag=NN:regex=amount|chamber|charge|choice|control|dialect|download|game|house|piece|state|use|version} >prep_of> {arg2} 0.0022 be {rel} in {arg1} prep_on> {arg2} 0.0022 be {rel} {prep} {arg1} >appos> {rel:postag=NN} >prep_of> {slot0:postag=NN:regex=art|brother|city|country|division|founder|god|island|kingdom|member|nation|people|president|province|region|republic|son|state} >{prep:regex=prep_(.*)}> {arg2} 0.0022 {rel} at {arg1} prep_into> {slot0:postag=NN:regex=eye|face|gaze} >poss> {arg2} 0.0022 {rel} in {arg1} nsubj> {arg2} 0.0022 {rel} {arg1} >infmod> {rel:postag=VB} >dobj> {arg2} 0.0022 {rel} {prep} {arg1} nsubj> {arg2} 0.0022 be {rel} in {arg1} partmod> {rel:postag=VBN:regex=base|bear|hold|locate|situate|speak|write} >prep_in> {arg2} 0.0022 {rel} to {arg1} prep_for> {arg2} 0.0022 {rel} to {arg1} nsubj> {arg2} 0.0022 {rel} in {arg1} ccomp> {slot0:postag=VBZ:regex=act|allow|be|call|come|continue|create|exist|forget|give|have|incarnate|intend|know|love|make|need|offer|provide|speak|take|use|want|work} >nsubj> {arg2} 0.0021 be {rel} {prep} {arg1} dobj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0021 {rel} {arg1} >rcmod> {rel:postag=VBN} >dobj> {arg2} 0.0021 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0021 be {rel} {prep} {arg1} >dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0021 {rel} {arg1} ccomp> {slot0:postag=VBN:regex=bear|call|consider|defeat|design|elect|excite|find|give|hold|know|launch|make|mention|name|own|produce|set|slay|tag|use|win|write} >nsubjpass> {arg2} 0.0021 {rel} {arg1} dobj> {rel:postag=NN:regex=control} >prep_of> {arg2} 0.0021 be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0021 {rel} {arg1:postag=NNP} infmod> {rel:postag=VB:regex=attack|beat|betray|buy|close|come|invade|join|love|run|support|use|win} >dobj> {arg2:postag=NNP} 0.0021 be {rel} {prep} {arg1} partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0021 {rel} to {arg1:postag=NNP} prep_unto> {arg2:postag=NNP} 0.0021 {rel} {arg1} nsubjpass> {arg2} 0.0021 be {rel} {prep} {arg1} rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0021 be {rel} by {arg1} nsubj> {arg2} 0.0021 {rel} {arg1} nsubj> {arg2} 0.0021 {rel} at {arg1} nsubj> {arg2} 0.0021 {rel} of {arg1} nsubj> {arg2} 0.0021 {rel} of {arg1} ccomp> {slot0:postag=VB:regex=appear|bring|change|come|create|destroy|do|face|get|give|have|help|judge|keep|kiss|lead|leak|need|profit|reign|return|see|send|speak|stay|stop|take|teach|turn|understand|want|win|work} >nsubj> {arg2} 0.0021 {rel} of {arg1} ccomp> {slot0:postag=VBZ:regex=be|call|do|draw|feel|give|have|know|lack|life|look|need|pose|say|sit|support|think|want} >nsubj> {arg2} 0.0021 be {rel} in {rel:postag=VBN:regex=bear|hold|locate|situate} >nsubjpass> {arg1} >appos> {arg2} 0.0021 be {rel} by {arg1} agent> {slot0:postag=NNP:regex=chair|chairman|chairperson|commission|congress|division|house|president} >prep_of> {arg2} 0.0021 be {rel} {prep} {arg1} <{prep:regex=prep_(.*)}< {rel:postag=NN} nsubj> {arg2} 0.0021 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0021 be {rel} {prep} {arg1} prep_from> {arg2} 0.0021 {rel} {arg1} dobj> {slot0:postag=NN:regex=ciali|order|pharmacy|phentermine|pill|prescription|shoe|store|tadalafil|viagra|video} >amod> {arg2} 0.0021 be {rel} in {arg1} dobj> {arg2} 0.0020 be {rel} of {arg1:postag=NNP} nn> {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} 0.0020 be {rel} {prep} {arg1} nsubj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0020 {rel} {prep} {arg1} prepc_after> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0020 be {rel} of {arg1:postag=NNP} nsubj> {arg2:postag=NNP} 0.0020 {rel} in {arg1} cop> {rel:postag=VBN} 0.0020 be {rel} of {arg1} prep_as> {rel:postag=NN:regex=capital|chairman|governor|head|member|part|president|secretary|son} >prep_of> {arg2} 0.0020 be {rel} of {arg1} prep_as> {rel:postag=NNP:regex=chairman|president|region} >prep_of> {arg2} 0.0020 {rel} of {arg1} ccomp> {slot0:postag=JJ:regex=able|articulate|aware|best|clean|disingenuous|fine|good|guilty|healthy|inexperience|naive|polarize|prepare|proud|ready|responsible|right|sympathetic|unfit|will|wrong} >nsubj> {arg2} 0.0020 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=anaheim|chairman|europe|falmouth|malaysium|mayor|monday|orlando|president|queen|russium|singapore|word} >appos> {arg2} 0.0020 be {rel} by {arg1} prep_in> {slot0:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|image|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|likeness|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg2} 0.0020 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0020 {rel} {arg1} prep_on> {arg2} 0.0020 be {rel} in {arg1} prep_in> {arg2} 0.0020 be {rel} in {arg1} >rcmod> {rel:postag=VBN:regex=bear|hold|list|locate|release} >prep_on> {arg2} 0.0020 be {rel} {prep} {arg1} prep_of> {slot0:postag=NN:regex=area|brother|committee|daughter|grandson|island|law|member|part|region|rest|son|state|trademark} >{prep:regex=prep_(.*)}> {arg2} 0.0020 {rel} to {arg1} advcl> {rel:postag=VBD} >nsubj> {arg2} 0.0020 be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0020 {rel} {arg1} >rcmod> {rel:postag=VBP} >dobj> {arg2} 0.0020 be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0020 be {rel} in {arg1} prep_on> {slot0:postag=NN:regex=border|coast|continent|edge|end|island|mainland|part|shore|side|tip} >prep_of> {arg2} 0.0020 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NNP:regex=aramean|august|baptist|beatle|christian|comic|conference|convention|datawatch|father|gen|information|jesus|july|june|lord|matt|october|state|video} >nn> {arg2:postag=NNP} 0.0020 be {rel} of {arg1} nsubj> {arg2} 0.0020 be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {slot0:postag=NN:regex=area|chip|church|daughter|day|face|factory|falciparum|grant|issue|km|language|no|null|offer|outlet|processor|state|thousand|version} >nn> {arg2:postag=NNP} 0.0020 be {rel} {prep} {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0020 be {rel} in {arg1} conj> {arg2} 0.0020 {rel} of {arg1} ccomp> {slot0:postag=VBG:regex=act|allow|amass|betray|come|develop|do|enter|feel|get|go|hold|live|make|play|prepare|run|seek|stalk|stand|suffer|take|tell|try|use|work} >nsubj> {arg2} 0.0019 {rel} {prep} {arg1} prep_in> {slot0:postag=NN:regex=area|century|column|country|exile|flesh|form|home|hospital|hotel|interview|neighborhood|remark|speech|statement|town} >{prep:regex=prep_(.*)}> {arg2} 0.0019 be {rel} {prep} {arg1} appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0019 {rel} to {arg1} nsubj> {arg2} 0.0019 {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0019 {rel} of {arg1} prep_to> {arg2} 0.0019 {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0019 {rel} {rel:postag=NN:regex=attack|beat|buy|chair|elect|head|host|invade|love|marry|meet|need|play|speak|support|thru} nn> {arg2:postag=NNP} 0.0019 be {rel} in {arg1} prep_in> {arg2} 0.0019 {rel} {arg1} dobj> {slot0:postag=NN:regex=album|back|bid|body|campaign|caucus|command|endorsement|faith|glory|hand|offer|primary|proposal|right|vote|way} >poss> {arg2} 0.0019 {rel} {prep} {arg1} <{prep:regex=prep_(.*)}< {rel:postag=VBG} nsubj> {arg2} 0.0019 {rel} to {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0019 be {rel} {prep} {arg1} <{prep:regex=prep_(.*)}< {rel:postag=VBN} >tmod> {arg2} 0.0019 {rel} {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0019 {rel} {arg1:postag=NNP} dobj> {arg2:postag=NNP} 0.0019 {rel} {arg1} prep_of> {arg2} 0.0019 {rel} {arg1} dobj> {slot0:postag=NN:regex=award|bill|check|ciali|degree|enzyme|john|order|program|programme|theme} >amod> {arg2} 0.0019 {rel} {arg1} nsubj> {arg2} 0.0019 ================================================ FILE: core/src/main/scala/edu/knowitall/common/enrich/Traversable.scala ================================================ package edu.knowitall package common package enrich import edu.knowitall.collection.immutable.Bag import scalaz._ import Scalaz._ import Monoid._ /** * Enrichments for traversables. * * @author Michael Schmitz */ object Traversables { implicit def traversableOnceTo[T](as: TraversableOnce[T]): SuperTraversableOnce[T] = new SuperTraversableOnce[T](as) implicit def traversableOncePairIntTo[T](as: TraversableOnce[(T, Int)]): SuperTraversableOncePairInt[T] = new SuperTraversableOncePairInt[T](as) implicit def traversableOncePairTo[T, U](as: TraversableOnce[(T, U)]): SuperTraversableOncePair[T, U] = new SuperTraversableOncePair[T, U](as) } sealed class SuperTraversableOnce[T](value: TraversableOnce[T]) { def histogram: Map[T, Int] = { value.foldLeft(Map[T, Int]()) { (m, c) => m.updated(c, m.getOrElse(c, 0) + 1) } } } sealed class SuperTraversableOncePairInt[T](value: TraversableOnce[(T, Int)]) { import Traversables._ def mergeHistograms: Map[T, Int] = value.mergeKeys(_ + _) } sealed class SuperTraversableOncePair[T, U](value: TraversableOnce[(T, U)]) { def mergeKeys(implicit mon: Semigroup[U]): Map[T, U] = { value.foldLeft(Map[T, U]()) { case (map, (k, v)) => map + (k -> (map.get(k).map(_ |+| v).getOrElse(v))) } } def mergeKeys[F[_]](implicit monoid: Monoid[F[U]]): Map[T, F[U]] = { value.foldLeft(Map[T, F[U]]()) { case (map, (k, v)) => val pure = monoid.zero map + (k -> (map.get(k).map(_ |+| pure).getOrElse(pure))) } } def mergeKeys(merge: (U, U) => U): Map[T, U] = { value.foldLeft(Map[T, U]()) { case (map, (k, v)) => map + (k -> map.get(k).map(merge(_, v)).getOrElse(v)) } } def toListMultimap: Map[T, List[U]] = { value.foldLeft(Map[T, List[U]]().withDefaultValue(List.empty[U])) { case (map, (k, v)) => map + (k -> (v :: map(k))) } } def toSetMultimap: Map[T, Set[U]] = { value.foldLeft(Map[T, Set[U]]().withDefaultValue(Set.empty[U])) { case (map, (k, v)) => map + (k -> (map(k) + v)) } } def toBagMultimap: Map[T, Bag[U]] = { value.foldLeft(Map[T, Bag[U]]().withDefaultValue(Bag.empty[U])) { case (map, (k, v)) => val bag = map(k) map + (k -> (bag + v)) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/DependencyGraphExtras.scala ================================================ package edu.knowitall.ollie import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.tool.parse.graph.Dependency import edu.knowitall.tool.parse.graph.DependencyNode import edu.knowitall.collection.immutable.Interval import edu.knowitall.tool.tokenize.Tokenizer import edu.knowitall.collection.immutable.graph.Graph class DependencyGraphExtras(dgraph: DependencyGraph) { private def graph = dgraph.graph def passiveVoice: Iterable[DependencyGraph] = { require(dgraph.nodes forall (_.indices.length == 1)) // look for passive constructions val activeVoices = this.graph.vertices.filter { v => (v.postag startsWith "VB") && (dgraph.dependencies exists {edge => edge.label == "nsubj" && edge.source == v}) && (dgraph.dependencies exists {edge => edge.label == "dobj" && edge.source == v}) } activeVoices map { v => val nsubj = dgraph.dependencies.find(edge => edge.label == "nsubj" && edge.source == v).get val dobj = dgraph.dependencies.find(edge => edge.label == "dobj" && edge.source == v).get val nsubjInterval = Interval.span(dgraph.graph.inferiors(nsubj.dest).map(_.indices)) val dobjInterval = Interval.span(dgraph.graph.inferiors(dobj.dest).map(_.indices)) val nsubjpass = new Dependency(v, dobj.dest, "nsubjpass") val by = new DependencyNode("by", "IN", dobjInterval.start, -1) val prep = new Dependency(v, by, "prep") val pobj = new Dependency(by, nsubj.dest, "pobj") val was = new DependencyNode("was", "VBD", v.indices.start, -1) val auxpass = new Dependency(nsubj.source, was, "auxpass") // adjust the edges var edges: Iterable[Dependency] = dgraph.dependencies edges = edges.toSet - nsubj - dobj + prep + pobj + auxpass + nsubjpass // adjust for the "by" node def nodeMap = { (v: DependencyNode) => var interval = v.indices if (v.indices.start >= by.indices.start && v != by) interval = DependencyGraphExtras.shift(interval, 1) if (v.indices.start >= was.indices.start && v != was) interval = DependencyGraphExtras.shift(interval, 1) new DependencyNode(v.text, v.postag, interval, v.offset) } edges = edges.map { e => e mapNodes nodeMap } edges = DependencyGraphExtras.swapOrders(edges, graph.inferiors(nsubj.dest) map nodeMap, graph.inferiors(dobj.dest) map nodeMap) // create the new graph val newGraph = new DependencyGraph(edges.flatMap(_.vertices), edges) val text = newGraph.nodes.iterator.map(_.text).mkString(" ") // compute the correct offsets val offsets = Tokenizer.computeOffsets(newGraph.nodes.iterator.map(_.text).toList, text) val nodeOffsetTransformation = ((newGraph.graph.vertices.iterator zip offsets.iterator) map {case (node, token) => node -> new DependencyNode(node.text, node.postag, node.indices, token.offset)}).toMap newGraph map nodeOffsetTransformation } } def activeVoice: Iterable[DependencyGraph] = { require(dgraph.nodes forall (_.indices.length == 1)) // look for active constructions val passiveVoices = this.graph.vertices.filter { v => if (!(v.postag startsWith "VB") && (dgraph.dependencies exists {edge => edge.label == "nsubjpass" && edge.source == v}) && (dgraph.dependencies exists (edge => edge.label == "auxpass" && edge.source == v))) false else { dgraph.dependencies.find(e => e.label == "prep" && e.source == v && e.dest.text == "by") match { case None => false case Some(prep) => dgraph.dependencies.exists(e => e.source == prep.dest && e.label == "pobj") } } (dgraph.dependencies exists {edge => edge.label == "prep" && edge.source == v}) } passiveVoices map { v => val nsubjpass = dgraph.dependencies.find(edge => edge.label == "nsubjpass" && edge.source == v).get val prep = dgraph.dependencies.find(edge => edge.label == "prep" && edge.source == v && edge.dest.text == "by" && dgraph.dependencies.exists(e => e.source == edge.dest && e.label == "pobj")).get val pobj = dgraph.dependencies.find(edge => edge.label == "pobj" && edge.source == prep.dest).get val auxpass = dgraph.dependencies.find(edge => edge.label == "auxpass" && edge.source == v).get val nsubj = new Dependency(v, pobj.dest, "nsubj") val dobj = new Dependency(v, nsubjpass.dest, "dobj") // adjust the edges var edges: Iterable[Dependency] = dgraph.dependencies edges = edges.toSet - nsubjpass - auxpass - prep - pobj + nsubj + dobj edges = DependencyGraphExtras.swapOrders(edges, graph.inferiors(nsubjpass.dest), graph.inferiors(pobj.dest)) val nodes = scala.collection.immutable.SortedSet.empty[DependencyNode] ++ edges.flatMap(_.nodes) val nodeMap = nodes.iterator.zipWithIndex.map{case (node, i) => node -> new DependencyNode(node.text, node.postag, Interval.singleton(i), -1)}.toMap edges = edges.map(_ mapNodes nodeMap) // create the new graph val newGraph = new DependencyGraph(edges.flatMap(_.vertices), edges) val text = newGraph.nodes.iterator.map(_.text).mkString(" ") // compute the correct offsets val offsets = Tokenizer.computeOffsets(newGraph.nodes.iterator.map(_.text).toList, text) val nodeOffsetTransformation = ((newGraph.graph.vertices.iterator zip offsets.iterator) map {case (node, token) => node -> new DependencyNode(node.text, node.postag, node.indices, token.offset)}).toMap newGraph map nodeOffsetTransformation } } def switchVoice: Iterable[DependencyGraph] = { passiveVoice ++ activeVoice } } object DependencyGraphExtras { private def shift(interval: Interval, by: Int) = Interval.open(interval.start + by, interval.end + by) private def swapOrders(edges: Iterable[Dependency], left: scala.collection.Set[DependencyNode], right: scala.collection.Set[DependencyNode]) = { val leftInterval = Interval.span(left.map(_.indices)) val rightInterval = Interval.span(right.map(_.indices)) require(leftInterval.end <= rightInterval.start) val leftOffset = left.iterator.map(_.offset).max val rightOffset = right.iterator.map(_.offset).min val tokensBetween = rightInterval.start - leftInterval.end + 1 val charsBetween = rightOffset - leftOffset edges.map(e => e.mapNodes(v => if (left contains v) new DependencyNode(v.text, v.postag, DependencyGraphExtras.shift(v.indices, tokensBetween), v.offset + charsBetween) else if (right contains v) new DependencyNode(v.text, v.postag, DependencyGraphExtras.shift(v.indices, -tokensBetween), v.offset - charsBetween) else v)) } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/NaryExtraction.scala ================================================ package edu.knowitall.ollie import scala.Option.option2Iterable import scala.collection.SortedSet import scala.collection.immutable import edu.knowitall.collection.immutable.Interval import edu.knowitall.openparse.extract.DetailedExtraction import edu.knowitall.openparse.extract.Extraction import edu.knowitall.openparse.extract.Extraction.AdverbialModifier import edu.knowitall.openparse.extract.Extraction.ClausalComponent import edu.knowitall.tool.parse.graph.DependencyNode import edu.knowitall.tool.postag.Postagger /** * Represents a part {arg1, rel, arg2} of an extraction. * * @param string the representation of the part * @param interval the interval of the part in the source sentence */ class ExtractionPart(val string: String, val interval: Interval) extends Ordered[ExtractionPart] { override def compare(that: ExtractionPart) = this.interval compare that.interval override def toString = string.replaceAll("/", "") } /** * Represents a possible suffix for an extended extraction. * For example, in the sentence "He ate from 7 until 10." * there are two suffixes: "from 7" and "until 10". * * @param string the text of the suffix * @param interval the interval of the suffix in the source sentence * @param confidence the confidence of the suffix */ class Suffix( text: String, nodes: SortedSet[DependencyNode], val confidence: Double) extends Extraction.Part(nodes, text) { override def toString = ("%1.4f" format confidence) + "/\"" + super.toString + "\"" /** Annote the suffix with a type. */ def annotate(string: String) = new AnnotatedSuffix(this, string) } /** * Represents a possible suffix for an extended extraction * along with an annotation. * * For example, in the sentence "He ate from 7 until 10." * there are two suffixes: "from 7" and "until 10". * * @param string the text of the suffix * @param interval the interval of the suffix in the source sentence * @param confidence the confidence of the suffix * @param annotation an annotation for the suffix */ class AnnotatedSuffix( text: String, nodes: SortedSet[DependencyNode], confidence: Double, val annotation: String) extends Suffix(text, nodes, confidence) { def this(suffix: Suffix, annotation: String) = this(suffix.text, suffix.nodes, suffix.confidence, annotation) override def toString = annotation + "/" + super.toString } /** * A representaiton of an n-ary extraction, i.e. * * (Michael, ran, to the store, on Monday, at 2 PM) * * N-ary extractions have multiple secondary arguments (objects) * and these arguments include the preposition. * * @param arg1 the first argument * @param rel the relation * @param suffixes the suffixes * @param clausals a clause restricting this extraction to a context * @param modifier a modifier for this extraction (i.e. attribution) * * @author Michael Schmitz */ class NaryExtraction(val arg1: Extraction.Part, val rel: Extraction.Part, val suffixes: Seq[Suffix], val attributions: Seq[Attribution] = Seq.empty, val enablers: Seq[EnablingCondition] = Seq.empty) { override def toString = "(" + arg1.text + ", " + rel.text + ", " + suffixes.map(_.text).mkString(", ") + ")" } object NaryExtraction { implicit object SuffixOrdering extends Ordering[Suffix] { def compare(x: Suffix, y: Suffix) = x.span.compare(y.span) } /** * Create extended extractions from a collection of extractions * from the same sentence. */ def from(extrs: Iterable[(Double, OllieExtractionInstance)]): Iterable[NaryExtraction] = { // keep extractions that end with a one-word preposition val prepositionEnding = extrs.filter { case (conf, inst) => Postagger.simplePrepositions(inst.extr.rel.text drop (1 + inst.extr.rel.text lastIndexOf ' ')) } // break off the preposition case class BrokenExtraction(rel: String, preposition: String, extr: (Double, OllieExtraction)) val split: Iterable[BrokenExtraction] = prepositionEnding.map { case (conf, inst) => val preps = Postagger.prepositions.filter(inst.extr.rel.text endsWith _) val longest = preps.maxBy(_.length) BrokenExtraction(inst.extr.rel.text.dropRight(longest.length + 1), longest, (conf, inst.extr)) } // group by the arg1 and text split groupBy { case BrokenExtraction(rel, preposition, (conf, extr)) => (extr.arg1.text, rel) } filter (_._2.size > 1) map { case ((arg1, rel), extrs) => val suffixes: immutable.SortedSet[Suffix] = extrs.map { case BrokenExtraction(rel, prep, (conf, extr)) => new Suffix(prep + " " + extr.arg2.text, extr.arg2.nodes, conf) }(scala.collection.breakOut) val first = extrs.head.extr._2 val argument1 = new Extraction.Part(first.arg1.nodes, arg1) val relation = new Extraction.Part(first.rel.nodes, rel) val attributions = extrs.flatMap(_.extr._2.attribution).toSet.toSeq val enablers = extrs.flatMap(_.extr._2.enabler).toSet.toSeq new NaryExtraction(argument1, relation, suffixes.toSeq, enablers = enablers, attributions = attributions) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/Ollie.scala ================================================ package edu.knowitall.ollie import scala.io.Source import edu.knowitall.collection.immutable.Interval import edu.knowitall.common.Resource.using import edu.knowitall.openparse.OpenParse import edu.knowitall.openparse.extract.DetailedExtraction import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.tool.stem.Stemmer /** Ollie is an Open Information Extractor that produces binary extractions * with context. The constructor takes an OpenParse instance. Ollie extends * OpenParse's extractions with enabling conditions and attributions. There * is also a trained confidence function for OllieExtractions. * * @author Michael Schmitz */ class Ollie(val openparse: OpenParse) { val stemmer = new MorphaStemmer /** Construct with the default model. */ def this() = this(OpenParse.withDefaultModel(OpenParse.Configuration(confidenceThreshold = 0.005))) def apply(dgraph: DependencyGraph): Iterable[OllieExtractionInstance] = extract(dgraph) /** * primary method for getting extractions */ def extract(dgraph: DependencyGraph): Iterable[OllieExtractionInstance] = { val openparseExtrs = openparse.extract(dgraph) for { (conf, extr) <- openparseExtrs enabler = enablingAdverbialClauseHelper(extr) attribution = attribClausalComponentHelper(extr) } yield new OllieExtractionInstance( new OllieExtraction(extr.arg1, extr.rel, extr.arg2, conf, enabler, attribution), dgraph, extr.extractor) } /** Identify enabling condition, i.e. "if it's raining..." */ private def enablingAdverbialClauseHelper(extr: DetailedExtraction): Option[EnablingCondition] = { extr.modifier map { modifier => val prefix = modifier.contents.nodes.head.text val phrase = modifier.contents.nodes.iterator.drop(1).map(_.text).mkString(" ") new EnablingCondition(prefix, phrase, modifier.contents.span) } } /** Identify attributions from clausal components, i.e. "He said..." */ private def attribClausalComponentHelper(extr: DetailedExtraction): Option[Attribution] = { extr.clausal flatMap { clausal => // find the first verb in the clausal rel clausal.rel.nodes.find(_.postag.startsWith("VB")).flatMap { node => val normalized = stemmer.stem(node.text.toLowerCase()) if (Ollie.communicationWords.contains(normalized) || Ollie.cognitiveWords.contains(normalized)) { val clausalArgInterval = Interval.span(clausal.arg.nodes.map(_.indices)) val clausalRelInterval = Interval.span(clausal.rel.nodes.map(_.indices)) Some(new Attribution( clausal.arg.text, clausal.arg.span, clausal.rel.text, clausal.rel.span)) } else None } } } } object Ollie { implicit def stemmer: Stemmer = MorphaStemmer /** A collection of verbs used for communication, i.e. "said" */ val communicationWords = using(Source.fromInputStream(classOf[Ollie].getResource("communicationWords.txt").openStream())) { source => source.getLines.toSet } /** A collection of verbs used for beliefs, i.e. "think" */ val cognitiveWords = using(Source.fromInputStream(classOf[Ollie].getResource("cognitiveWords.txt").openStream())) { source => source.getLines.toSet } /** A collection of prefixes used for enabling conditions, i.e. "if" and "when" */ val enablerPrefixes = using(Source.fromInputStream(classOf[Ollie].getResource("prefixWords.txt").openStream())) { source => source.getLines.toSet } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/OllieExtraction.scala ================================================ package edu.knowitall.ollie import scala.Option.option2Iterable import scala.collection.breakOut import edu.knowitall.collection.immutable.Interval import edu.knowitall.common.HashCodeHelper import edu.knowitall.openparse.extract.Extraction.Part import edu.knowitall.tool.parse.graph.DependencyNode /** A base representation for additional context around an extraction. */ sealed abstract class Context { def text: String def interval: Interval } /** A representation for an enabling condition. * An example of an enabling condition is "if it's raining". */ case class EnablingCondition( /** The enabling condition word, i.e. "if" */ val prefix: String, /** The rest of the enabling condition, i.e. "it's raining" */ val phrase: String, /** The token interval of the enabling condition */ override val interval: Interval) extends Context { override def text = prefix + " " + phrase def serialize: String = Seq(prefix, phrase, interval.start.toString, interval.last.toString).map(_.replaceAll("_", "_UNSC_")).mkString("_") } object EnablingCondition { def deserialize(string: String) = { val Array(prefix, phrase, intervalStart, intervalLast) = try (string.split("_")) catch { case e => throw new RuntimeException("could not deserialize EnablingCondition: " + string, e); } new EnablingCondition(prefix, phrase, Interval.closed(intervalStart.toInt, intervalLast.toInt)) } } /** A representation for an attribution. * An example of an is "Obama believes". */ case class Attribution( /** The argument of the attribution, i.e. "Obama" */ val arg: String, /** The token interval of the argument of the attribution */ val argInterval: Interval, /** The relation of the attribution, i.e. "believes" */ val rel: String, /** The token interval of the relation of the attribution */ override val interval: Interval) extends Context { override def text = arg + " " + rel def serialize: String = { val fields = Seq(arg, rel, argInterval.start.toString, argInterval.last.toString, interval.start.toString, interval.last.toString) fields.map(_.replaceAll("_", "_UNSC_")).mkString("_") } } object Attribution { def deserialize(string: String) = { val Array(arg, rel, argIntervalStart, argIntervalLast, relIntervalStart, relIntervalLast) = try (string.split("_")) catch { case e => throw new RuntimeException("could not deserialize Attribution: " + string, e); } val argInterval = Interval.closed(argIntervalStart.toInt, argIntervalLast.toInt) val relInterval = Interval.closed(relIntervalStart.toInt, relIntervalLast.toInt) new Attribution(arg, argInterval, rel, relInterval) } } /** A representation of an Ollie extraction, i.e. we could get the following * extraction from the example sentence. * * {{{ * When I'm dreaming David Bowie sings that Ziggy sucked up into his mind. * (Ziggy, sucked up, into his mind)[attribution = "David Bowie") * }}} */ class OllieExtraction( /** The first argument (subject) of the extraction, i.e. "Ziggy" */ val arg1: Part, /** The relation of the extraction, i.e. "sucked up" */ val rel: Part, /** The second argument (object) of the extraction, i.e. "into his mind" */ val arg2: Part, /** The confidence value from OpenParse. */ private[ollie] val openparseConfidence: Double, /** The enabling condition, if any. I.e. "When I'm dreaming" */ val enabler: Option[EnablingCondition], /** The attribution, if any. I.e. "David Bowie sings that" */ val attribution: Option[Attribution]) { import OllieExtraction.{serializePart, deserializePart} override def equals(that: Any) = that match { case that: OllieExtraction => this.arg1 == that.arg1 && this.rel == that.rel && this.arg2 == that.arg2 && this.enabler == that.enabler && this.attribution == that.attribution && this.openparseConfidence == that.openparseConfidence case _ => false } override def hashCode = HashCodeHelper( this.arg1, this.rel, this.arg2, this.enabler, this.attribution, this.openparseConfidence) def tabSerialize: String = { val enablerString = enabler match { case Some(enablingCondition) => enablingCondition.serialize case None => "None" } val attrString = attribution match { case Some(attr) => attr.serialize case None => "None" } val fieldStrings = Seq(arg1, rel, arg2).map(serializePart(_)) ++ Seq("%.05f".format(openparseConfidence), enablerString, attrString) fieldStrings.map(_.replaceAll("\t", "_TAB_")).mkString("\t") } /** The full text of this extraction. */ def text = Iterable(arg1.text, rel.text, arg2.text).mkString(" ") /** All the nodes in this extraction. */ def nodes = arg1.nodes ++ rel.nodes ++ arg2.nodes /** The spanning interval of the nodes in this extraction. */ def span = Interval.span(nodes.map(_.indices)) override def toString = { val extentions = Iterable( enabler.map("enabler="+_.text), attribution.map("attrib="+_.text)).flatten match { case Nil => "" case list => list.mkString("[", ";", "]") } "(%s; %s; %s)".format(arg1.text, rel.text, arg2.text) + extentions } } object OllieExtraction { def tabDelimitedColumns = Seq("Arg1Part", "RelPart", "Arg2Part", "Confidence", "Enabler", "Attribution").mkString("\t") def tabDeserialize(array: Seq[String]): (OllieExtraction, Seq[String]) = { array match { case Seq(arg1Part, relPart, arg2Part, openparseConfString, enablerString, attrString, rest @ _*) => { val parts = Seq(arg1Part, relPart, arg2Part) map deserializePart val enabler = if (enablerString.equals("None")) None else Some(EnablingCondition.deserialize(enablerString)) val attribution = if (attrString.equals("None")) None else Some(Attribution.deserialize(attrString)) val extr = new OllieExtraction(parts(0), parts(1), parts(2), openparseConfString.toDouble, enabler, attribution) (extr, rest) } } } def tabDeserialize(s: String): OllieExtraction = { val (extr, rest) = tabDeserialize(s.split("\t")) require(rest.isEmpty) extr } def serializePart(part: Part): String = { val serializedNodes = part.nodes.iterator.map(_.serialize).mkString("; ") Iterable(part.text, serializedNodes).mkString(" ;;; ") } def deserializePart(string: String): Part = { val Array(partText, partNodes) = try (string.split("\\s*;;;\\s*")) catch { case e => throw new RuntimeException("could not deserialize Extraction.Part: " + string, e); } val nodesSortedSet: scala.collection.SortedSet[DependencyNode] = try (partNodes.split("\\s*;\\s*").map(DependencyNode.deserialize(_))(breakOut)) catch { case e => throw new RuntimeException("could not deserialize Extraction.Part: " + string, e); } new Part(nodesSortedSet, partText) } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/OllieExtractionInstance.scala ================================================ package edu.knowitall.ollie import edu.knowitall.common.HashCodeHelper import edu.knowitall.openparse.extract.PatternExtractor import edu.knowitall.tool.parse.graph.DependencyGraph import scala.util.matching.Regex /** OllieExtractionInstance represents an extraction coupled with * its source sentence. */ class OllieExtractionInstance( /** The associated extraction. */ val extr: OllieExtraction, /** The associated sentence. */ val sent: DependencyGraph, /** The extractor used. */ val pat: PatternExtractor) { override def equals(that: Any) = that match { case that: OllieExtractionInstance => this.extr == that.extr && this.sent == that.sent case _ => false } override def hashCode = HashCodeHelper(extr, sent) def extraction = extr def sentence = sent def pattern = pat private val passivePatternRegex = new Regex("""^\{arg1:?\w*\} dobj> \{arg2:?\w*\}""") /** Report if this extraction is an active construction. * This is a crude measure so false should not be taken to mean * that it is not active. * * An extraction is active if it has a valid passive formulation * by swapping the arguments and modifying the relation (adding "be" * and "by"). */ def active: Boolean = activePatternRegex.pattern.matcher(pat.pattern.serialize).matches() def tabSerialize: String = { val serializedGraph = sent.serialize val serializedExtr = extr.tabSerialize Seq(serializedGraph, pat.tabSerialize, serializedExtr).mkString("\t") } } object OllieExtractionInstance { def tabDeserialize(string: String): OllieExtractionInstance = { val array = string.split('\t') val (extr, rest) = tabDeserialize(array) require(rest.isEmpty) extr } def tabDeserialize(array: Seq[String]): (OllieExtractionInstance, Seq[String]) = { try { val Seq(serializedGraph, r0 @ _*) = array val graph = DependencyGraph.deserialize(serializedGraph) val (pat, r1) = PatternExtractor.tabDeserialize(r0) val (extr, r2) = OllieExtraction.tabDeserialize(r1) (new OllieExtractionInstance(extr, graph, pat), r2) } catch { case e => throw new IllegalArgumentException("Could not tab deserialize: " + array.mkString("\t"), e) } } val numFinder = "[0-9]+".r } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/ScoredOllieExtractionInstance.scala ================================================ package edu.knowitall.ollie import edu.knowitall.tool.conf.Labelled /** OllieExtractionInstance represents a boolean score coupled with * an extraciton instance. * * @param score the label for this extraction * @param inst the extraction instance labelled */ class ScoredOllieExtractionInstance( val score: Boolean, val inst: OllieExtractionInstance) extends Labelled[OllieExtractionInstance](score, inst) { override def toString = score + ":" + inst.extr def tabSerialize: String = { Iterable(if (score) 1 else 0, inst.extr.toString, inst.tabSerialize).mkString("\t") } } object ScoredOllieExtractionInstance { def tabDeserialize(string: String): ScoredOllieExtractionInstance = { try { val Array(scoreString, _, rest @ _*) = string.split('\t') val score = if (scoreString == "1") true else if (scoreString == "0") false else throw new IllegalArgumentException("bad score: " + scoreString) val (inst, r2) = OllieExtractionInstance.tabDeserialize(rest) require(r2.isEmpty) new ScoredOllieExtractionInstance(score, inst) } catch { case e => throw new IllegalArgumentException("could not tab deserialize: " + string, e) } } val numFinder = "[0-9]+".r } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/confidence/OllieConfidenceFunction.scala ================================================ package edu.knowitall.ollie.confidence import java.io.InputStream import java.net.URL import java.util.Scanner import scala.collection.mutable import org.slf4j.LoggerFactory import edu.knowitall.common.Resource.using import edu.knowitall.ollie.OllieExtractionInstance import edu.knowitall.tool.conf.FeatureSet import edu.knowitall.tool.conf.impl.LogisticRegression /** An implementation of logistic regression of features that can be * represented as a double. */ object OllieConfidenceFunction { val logger = LoggerFactory.getLogger(classOf[OllieIndependentConfFunction]) type OllieIndependentConfFunction = LogisticRegression[OllieExtractionInstance] val defaultModelUrl = Option(this.getClass.getResource("default-classifier.txt")).getOrElse { throw new IllegalArgumentException("Could not load confidence function resource.") } def loadDefaultClassifier(): OllieIndependentConfFunction = { fromUrl(OllieFeatureSet, defaultModelUrl) } def fromUrl(featureSet: FeatureSet[OllieExtractionInstance, Double], url: URL): OllieIndependentConfFunction = { LogisticRegression.fromUrl(featureSet, url) } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/confidence/OllieFeatureEvaluation.scala ================================================ package edu.knowitall.ollie.confidence import java.io.File import java.io.PrintWriter import java.net.URL import scala.io.Source import edu.knowitall.common.Analysis import edu.knowitall.common.Resource.using import edu.knowitall.ollie.ScoredOllieExtractionInstance import scopt.OptionParser object OllieFeatureEvaluation { /** Settings for OpenParse. */ abstract class Settings { /** source file of scored extractions */ def inputFile: File /** file to output; None means stdout */ def outputFile: Option[File] /** confidence model url */ def confidenceModelUrl: URL } def main(args: Array[String]) = { var settings = new Settings { var inputFile: File = _ var outputFile: Option[File] = None var confidenceModelUrl: URL = OllieConfidenceFunction.defaultModelUrl } val parser = new OptionParser("feature-eval") { opt(Some("c"), "confidence model", "", "confidence model file", { path: String => val file = new File(path) require(file.exists, "file does not exist: " + path) settings.confidenceModelUrl = file.toURI.toURL }) opt("o", "output", "output file (otherwise stdout)", { path => val file = new File(path) settings.outputFile = Some(file) }) arg("input", "input dependencies file", { path: String => val file = new File(path) require(file.exists, "input file does not exist: " + path) settings.inputFile = file }) } if (parser.parse(args)) { run(settings) } } def run(settings: Settings) = { val confFunc = OllieConfidenceFunction.fromUrl(OllieFeatureSet, settings.confidenceModelUrl) val extrs = using (Source.fromFile(settings.inputFile)) { source => for ( line <- source.getLines.toList; val scored = ScoredOllieExtractionInstance.tabDeserialize(line); val conf = confFunc(scored.inst) ) yield (conf, scored) } val sorted = extrs.sortBy(-_._1).toList val pyed = (sorted.head, 0, 1.0) +: Analysis.precisionYieldMeta(sorted zip sorted.map(_._2.score)) val featureNames = confFunc.featureSet.featureNames.filter(confFunc.featureWeights.get(_).isDefined).toList.sorted using { settings.outputFile match { case Some(f) => new PrintWriter(f, "UTF8") case None => new PrintWriter(System.out) } } { writer => writer.println((Iterable("score", "conf", "op-conf", "yield", "precision", "extr", "enabler", "attrib", "sentence", "dependencies") ++ featureNames).mkString("\t")) writer.println("\t" * 10 + featureNames.map(confFunc.featureWeights(_).toString).mkString("\t")) (pyed) foreach { case ((conf, scored), y, p) => val features = for ( featureName <- featureNames; val featureValue = confFunc.featureSet(featureName)(scored.inst) ) yield featureValue writer.println((Iterable(if (scored.score) 1 else 0, conf, scored.inst.extr.openparseConfidence, y, p, scored.inst.extr.toString, scored.inst.extr.enabler.isDefined.toString.toLowerCase, scored.inst.extr.attribution.isDefined.toString.toLowerCase, scored.inst.sent.text, scored.inst.sent.serialize) ++ features).mkString("\t")) } } } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/confidence/OllieFeatureSet.scala ================================================ package edu.knowitall.ollie.confidence import java.util.regex.Pattern import scala.Array.canBuildFrom import scala.annotation.implicitNotFound import scala.collection.immutable.SortedMap import scala.util.matching.Regex import edu.knowitall.ollie.OllieExtractionInstance import edu.knowitall.openparse.extract.Extraction.Part import edu.knowitall.tool.conf.Feature import edu.knowitall.tool.conf.FeatureSet import edu.knowitall.tool.parse.graph.LabelEdgeMatcher import edu.knowitall.tool.postag.Postagger import scalaz.Scalaz._ object OllieFeatureSet extends FeatureSet[OllieExtractionInstance, Double](OllieFeatures.getFeatures) /** Features defined for OllieExtractionInstances */ object OllieFeatures { type OllieFeature = Feature[OllieExtractionInstance, Double] implicit def boolToDouble(bool: Boolean) = if (bool) 1.0 else 0.0 val weirdPunct = Pattern.compile(".*[:!@#$%^&*{};`<>]+.*") val prepTag = Pattern.compile("IN|TO|WP") val ingStart = Pattern.compile("^[a-zA-Z]+ing.*") val relationVerb = Pattern.compile("VB|VBD|VBZ|VBN|VBP|MD") // Whether relation nodes (ignore template modifications) is a subinterval of the sentence. object nonContinuousRel extends OllieFeature("non-contiguous rel") { val trailingPrep = new Regex(" (?:" + Postagger.prepositions.mkString("|") + ")$") val leadingBe = new Regex("^be ") override def apply(inst: OllieExtractionInstance): Double = { val trimmed = leadingBe.replaceAllIn(trailingPrep.replaceAllIn(inst.extr.rel.text, ""), "") !inst.sent.text.contains(trimmed) } } // Whether two nodes in the relation are `length` tokens apart in the sentence. class gapInRel(length: Int) extends OllieFeature("gap of " + length + " in rel") { override def apply(inst: OllieExtractionInstance): Double = { inst.extr.nodes.toSeq.sliding(2).exists { case Seq(x, y) => x.indices.distance(y.indices) > 10 } } } object sentenceHasQuestionMark extends OllieFeature("sentence has question mark") { val hasQuestionMark = Pattern.compile(".*\\?.*") override def apply(inst: OllieExtractionInstance): Double = { if (hasQuestionMark.matcher(inst.extr.text).matches()) 1.0 else 0.0 } } // is there a verb at the start of the sentence, or immediately after a comma? object imperative extends OllieFeature("sentence is imperative") { private val verbStart = Pattern.compile("VB.*") override def apply(inst: OllieExtractionInstance): Double = { import scalaz._ import Scalaz._ val postagZipper = inst.sent.nodes.iterator.map(_.postag).toList.toZipper // Assume the sentence starts with a comma to simplify the computation: // pair every token with the one before it, pairing the start with a comma. val boolean = postagZipper.map(_.positions.toStream.exists { zipper => zipper.previous match { case None => verbStart.matcher(zipper.focus).matches() case Some(z) if z.focus == "," => verbStart.matcher(zipper.focus).matches() case _ => false } }).getOrElse(false) boolean } } // does arg2 contain an infinitive? object arg2ContainsInfinitive extends OllieFeature("arg2 contains infinitive") { override def apply(inst: OllieExtractionInstance): Double = { val postags = inst.extr.arg2.nodes.iterator.map(_.postag).toStream import scalaz._ import Scalaz._ val boolean = postags.toZipper.map(_.positions.toStream.exists { zipper => zipper.previous match { case Some(prev) => prev.focus == "TO" && zipper.focus.startsWith("VB") case None => false } }).getOrElse(false) boolean } } // is rel text a contiguous string from the sentence? object relIsContiguous extends OllieFeature("rel is contiguous") { override def apply(inst: OllieExtractionInstance): Double = { (inst.sent.nodes.iterator.map(_.text).mkString(" ")) contains inst.extr.rel.text } } // is there a prep right before arg1? object prepRightBeforeArg1 extends OllieFeature("prep right before arg1") { override def apply(inst: OllieExtractionInstance): Double = { val arg1Span = inst.extr.arg1.span val rightBeforeArg1 = inst.sent.nodes.find(node => node.indices < arg1Span && node.indices.borders(arg1Span)) rightBeforeArg1 match { case Some(node) => prepTag.matcher(node.postag).matches() case None => false } } } // does rel start with "be"? object relStartsWithBe extends OllieFeature("rel starts with be") { override def apply(inst: OllieExtractionInstance): Double = { inst.extr.rel.nodes.headOption match { case Some(node) => node.text startsWith "be " case None => false } } } // is there a prep right after arg2? (IN or TO pos tag) object prepRightAfterArg2 extends OllieFeature("prep right after arg2") { def apply(inst: OllieExtractionInstance): Double = { val arg2Span = inst.extr.arg2.span val rightAfterArg2 = inst.sent.nodes.find { node => node.indices > arg2Span && (node.indices borders arg2Span) } rightAfterArg2 match { case Some(node) => prepTag.matcher(node.postag).matches case None => false } } } class ArgIsProper(getPart: OllieExtractionInstance=>Part, partName: String) extends OllieFeature(partName + " is proper") { override def apply(inst: OllieExtractionInstance): Double = { getPart(inst).nodes.forall(_.isProperNoun) } } object sentStartsWithExtr extends OllieFeature("sentence starts with extraction") { override def apply(inst: OllieExtractionInstance): Double = { inst.extr.span.start == 0 } } object extrSpansSent extends OllieFeature("extraction spans sentence") { override def apply(inst: OllieExtractionInstance): Double = { inst.extr.span == inst.sent.interval } } object sentEndsWithExtr extends OllieFeature("sentence ends with extraction") { override def apply(inst: OllieExtractionInstance): Double = { inst.extr.span.end == inst.sent.interval.end } } object sentBeginsWithArg1 extends OllieFeature("sentence begins with arg1") { override def apply(inst: OllieExtractionInstance): Double = { inst.extr.arg1.span.start == 0 } } object sentEndsWithArg2 extends OllieFeature("sentence ends with arg2") { override def apply(inst: OllieExtractionInstance): Double = { val rightNodes = inst.sent.nodes.drop(inst.extr.arg2.span.end) // all trailing characters are terminating punctuation rightNodes.forall(node => node.postag == "." || node.postag == "?") } } object openParseConfidence extends OllieFeature("openparse confidence") { override def apply(inst: OllieExtractionInstance): Double = { scala.math.min(1.0, inst.extr.openparseConfidence) } } object arg2BeforeArg1 extends OllieFeature("arg2 before arg1") { override def apply(inst: OllieExtractionInstance): Double = inst.extr.arg2.span < inst.extr.arg1.span && !(inst.extr.arg1.span intersects inst.extr.arg2.span) } object arg2BeforeRel extends OllieFeature("arg2 before rel") { override def apply(inst: OllieExtractionInstance): Double = inst.extr.arg2.span < inst.extr.rel.span && !(inst.extr.rel.span intersects inst.extr.arg2.span) } object argsStartEndWithNoun extends OllieFeature("args start and end with noun") { override def apply(inst: OllieExtractionInstance): Double = { val okStarts = Set("PR", "NN", "DT", "CD", "JJ") val okEnds = Set("NN", "CD", "JJ") val boolean = (for { arg1HeadTag <- inst.extr.arg1.nodes.headOption.map(_.postag) arg2HeadTag <- inst.extr.arg2.nodes.headOption.map(_.postag) arg1LastTag <- inst.extr.arg1.nodes.lastOption.map(_.postag) arg2LastTag <- inst.extr.arg2.nodes.lastOption.map(_.postag) } yield { okStarts(arg1HeadTag) && okStarts(arg2HeadTag) && okEnds(arg1LastTag) && okEnds(arg2LastTag) }).getOrElse(false) boolean } } object ifRightBeforeArg1 extends OllieFeature("if right before arg1") { override def apply(inst: OllieExtractionInstance): Double = { val nodesSeq = inst.sent.nodes.take(inst.extr.arg1.span.start) nodesSeq.lastOption.exists(_.text equalsIgnoreCase "if") } } object arg1ContainsPronoun extends OllieFeature("arg1 contains pronoun") { override def apply(inst: OllieExtractionInstance): Double = { inst.extr.arg1.nodes.exists(_.isPronoun) } } object arg2ContainsPronoun extends OllieFeature("arg2 contains pronoun") { override def apply(inst: OllieExtractionInstance): Double = { inst.extr.arg2.nodes.exists(_.isPronoun) } } object relEndsWithOf extends OllieFeature("rel ends with of") { override def apply(inst: OllieExtractionInstance): Double = { // of will be an edge in the collapsed graph so it's not represented by a node val boolean = inst.extr.rel.text.drop(inst.extr.rel.text.lastIndexOf(" ") + 1) == "of" boolean } } object relContainsVerb extends OllieFeature("rel contains verb") { override def apply(inst: OllieExtractionInstance): Double = { val boolean = inst.extr.rel.nodes exists (_.isVerb) boolean } } object relContainsVBG extends OllieFeature("rel contains gerund") { override def apply(inst: OllieExtractionInstance): Double = { val boolean = inst.extr.rel.nodes exists (_.isVerbGerund) boolean } } class BadCharacters(getPart: OllieExtractionInstance=>Part, partName: String) extends OllieFeature(partName + " bad characters") { val notCapsPattern = Pattern.compile("[^A-Z]") val weirdChars = Pattern.compile("[^AEIOUYaeiouy0-9]") override def apply(inst: OllieExtractionInstance): Double = { // are there more than 5 caps in arg1? if (notCapsPattern.matcher(getPart(inst).text).replaceAll("").length() > 5) 1.0 // are there not enough good characters? else if (weirdChars.matcher(getPart(inst).text).replaceAll("").length() < 2) 1.0 else 0.0 } } object longRelation extends OllieFeature("long relation") { override def apply(inst: OllieExtractionInstance) = { val boolean = inst.extr.rel.text.split(" ").length > 10 boolean } } object hypWordsInRel extends OllieFeature("hyp words in rel") { override def apply(inst: OllieExtractionInstance): Double = { val hypWords = Set("can", "would", "could", "might") val relTextWords = inst.extr.rel.text.split(" ").toSet inst.sent.nodes.exists { node => (hypWords contains node.text.toLowerCase) && !(relTextWords contains node.text.toLowerCase) } match { case true => 1.0 case false => 0.0 } } } /* * Tries to capture vacuous extractions, like * Bob; was for; example * by specifying pairs like ("for","example") to look for adjacent to each other between rel-arg2 */ object vacuousExtraction extends OllieFeature("vacuous extraction") { val vacuoi = Set(("this", "way"), ("went", "public"), ("for", "example"), ("with", "eye"), ("in", "fact"), ("for", "use"), ("for", "us"), ("were", "able"), ("in", "part"), ("be", "part"), ("is", "part")) def apply(inst: OllieExtractionInstance): Double = { val relEnd = inst.extr.rel.text.drop(inst.extr.rel.text.lastIndexOf(" ") + 1) val arg2Strings = inst.extr.arg2.text.split(" ").map(_.toLowerCase()) if (arg2Strings.size > 2) false else { vacuoi.exists(p => relEnd.startsWith(p._1) && arg2Strings.contains(p._2.toLowerCase())) match { case true => 1.0 case false => 0.0 } } } } // Is there a preposition in the span of arg2? object prepInArg2 extends OllieFeature("prep in arg2") { override def apply(inst: OllieExtractionInstance): Double = { inst.extr.arg2.nodes.exists(node => prepTag.matcher(node.postag).matches) } } // does the pattern "... NN* ... VB* ... NN* ... " exist in arg1 or arg2? class NounVerbNounInArg(getPart: OllieExtractionInstance=>Part, partName: String) extends OllieFeature("noun-verb-noun in " + partName) { override def apply(inst: OllieExtractionInstance): Double = { val tokenSet = getPart(inst).nodes val tokens = tokenSet.iterator.toSeq val firstNN = tokens.indexWhere(_.isNoun) val firstVB = tokens.drop(firstNN).indexWhere(_.isVerb) val secondNN = tokens.drop(firstNN + firstVB).indexWhere(_.isNoun) def tokensExist = !Seq(firstNN, firstVB, secondNN).exists(_ == -1) def correctIndices = (firstNN < (firstNN + firstVB) < (firstNN + firstVB + secondNN)) tokensExist && correctIndices } } class ArgBordersAppos(getPart: OllieExtractionInstance=>Part, partName: String) extends OllieFeature(partName + " borders appositive") { override def apply(inst: OllieExtractionInstance): Double = { val nodes = getPart(inst).nodes val neighbors = List(nodes.head, nodes.last).flatMap(inst.sent.graph.edges(_)) neighbors exists (_.label == "appos") } } object nnPatternEdge extends OllieFeature("nn edges in pattern") { override def apply(inst: OllieExtractionInstance): Double = { inst.pat.pattern.baseEdgeMatchers exists { case m: LabelEdgeMatcher => m.label == "nn" case _ => false } } } object semanticPatternConstraint extends OllieFeature("semantic constraints in pattern") { override def apply(inst: OllieExtractionInstance): Double = { inst.pat.pattern.semantic } } object patternPrepMismatch extends OllieFeature("prep mismatch in pattern") { override def apply(inst: OllieExtractionInstance): Double = { inst.pat.prepMismatch } } // features being used val features: List[OllieFeature] = List( sentenceHasQuestionMark, imperative, arg2ContainsInfinitive, relIsContiguous, prepRightBeforeArg1, relStartsWithBe, prepRightAfterArg2, new ArgIsProper(_.extr.arg1, "arg1"), new ArgIsProper(_.extr.arg2, "arg2"), sentStartsWithExtr, sentBeginsWithArg1, sentBeginsWithArg1, sentEndsWithArg2, openParseConfidence, arg2BeforeArg1, arg2BeforeRel, argsStartEndWithNoun, ifRightBeforeArg1, arg1ContainsPronoun, arg2ContainsPronoun, relEndsWithOf, relContainsVerb, relContainsVBG, new BadCharacters(_.extr.arg1, "arg1"), new BadCharacters(_.extr.rel, "rel"), new BadCharacters(_.extr.arg2, "arg2"), longRelation, hypWordsInRel, vacuousExtraction, prepInArg2, new NounVerbNounInArg(_.extr.arg1, "arg1"), new NounVerbNounInArg(_.extr.arg2, "arg2"), new ArgBordersAppos(_.extr.arg1, "arg1"), new ArgBordersAppos(_.extr.arg2, "arg2"), new gapInRel(10), nonContinuousRel, nnPatternEdge, semanticPatternConstraint, patternPrepMismatch) def getFeatures(): SortedMap[String, OllieFeature] = { (for (f <- features) yield (f.name -> Feature.from(f.name, f.apply _)))(scala.collection.breakOut) } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/confidence/train/CrossValidateConfidence.scala ================================================ package edu.knowitall.ollie.confidence.train import java.io.File import scala.io.Source import edu.knowitall.common.Analysis import edu.knowitall.common.Resource.using import edu.knowitall.ollie.ScoredOllieExtractionInstance import edu.knowitall.ollie.confidence.OllieFeatureSet import edu.knowitall.tool.conf.BreezeLogisticRegressionTrainer import scopt.mutable.OptionParser object CrossValidateConfidence { def main(args: Array[String]) { object settings extends Settings { var inputFile: File = _ var outputFile: Option[File] = None } val parser = new OptionParser("scoreextr") { arg("labelled", "labelled extractions", { path: String => settings.inputFile = new File(path) }) argOpt("output", "output file", { path: String => settings.outputFile = Some(new File(path)) }) } if (parser.parse(args)) { run(settings) } } abstract class Settings { def inputFile: File def outputFile: Option[File] val splits = 10 } def run(settings: Settings) = { val trainer = new BreezeLogisticRegressionTrainer(OllieFeatureSet) val data = using (Source.fromFile(settings.inputFile)) { source => (source.getLines map (ScoredOllieExtractionInstance.tabDeserialize)).toList } val splits = data.iterator.sliding(data.size / settings.splits, data.size / settings.splits).withPartial(false) val results = for { split <- splits.toList val test = split val training = data filterNot (test contains _) val classifier = trainer.train(training) } yield { for (example <- test) yield { val conf = classifier.apply(example.inst) val correct = if (conf >= 0.5 && example.score) true else if (conf < 0.5 && !example.score) true else false (conf, correct) } } val pys = results.map { list => val py = Analysis.precisionYield(list.sortBy(-_._1).map(_._2)) py } val aucs = pys.zipWithIndex map { case (py, i) => println("Split " + i) py foreach { case (y, p) => println(Iterable(y.toString, "%1.4f" format p).mkString("\t")) } val auc = Analysis.areaUnderCurve(py) println("auc: " + auc) println() auc } var auc = breeze.linalg.mean(aucs) println("avg auc: " + auc) } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/confidence/train/TrainOllieConfidence.scala ================================================ package edu.knowitall.ollie.confidence.train import java.io.File import scala.io.Source import edu.knowitall.common.Resource.using import edu.knowitall.ollie.ScoredOllieExtractionInstance import edu.knowitall.ollie.confidence.OllieFeatureSet import edu.knowitall.tool.conf.BreezeLogisticRegressionTrainer import scopt.mutable.OptionParser object TrainOllieConfidence { def main(args: Array[String]) { object settings extends Settings { var inputFile: File = _ var outputFile: Option[File] = None } val parser = new OptionParser("scoreextr") { arg("labelled", "labelled extractions", { path: String => settings.inputFile = new File(path) }) argOpt("output", "output file", { path: String => settings.outputFile = Some(new File(path)) }) } if (parser.parse(args)) { run(settings) } } abstract class Settings { def inputFile: File def outputFile: Option[File] } def run(settings: Settings) = { val trainer = new BreezeLogisticRegressionTrainer(OllieFeatureSet) val data = using (Source.fromFile(settings.inputFile)) { source => (source.getLines map (ScoredOllieExtractionInstance.tabDeserialize)).toList } val classifier = trainer.train(data) settings.outputFile match { case Some(file) => classifier.saveFile(file) case None => classifier.save(System.out) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/ollie/output/BratOutput.scala ================================================ package edu.knowitall.ollie.output import edu.knowitall.ollie.OllieExtractionInstance import edu.knowitall.openparse.extract.Extraction import edu.knowitall.collection.immutable.Interval import edu.knowitall.ollie.ExtractionPart import edu.knowitall.tool.segment.Segment import java.io.PrintWriter class BratOutput(extractor: String => Iterable[OllieExtractionInstance]) { def process(sentences: Iterable[Segment], writer: PrintWriter) = { val document = new Document() for { Segment(text, offset) <- sentences inst <- extractor(text) entry <- document.annotations(inst, offset) } { writer.println(entry) } } class Document { var entityIndex = 0 var relationIndex = 0 def annotations(inst: OllieExtractionInstance, sentenceCharacterOffset: Int) = { def partToAnnotation(inst: OllieExtractionInstance, part: Extraction.Part, partName: String) = { val tokens = inst.sentence.nodes.toList.slice(part.span.start, part.span.end) val charInterval = Interval.open(tokens.head.offset, tokens.last.offsets.end) partName + " " + (sentenceCharacterOffset + charInterval.start) + " " + (sentenceCharacterOffset + charInterval.end) + "\t" + inst.sentence.text.substring(charInterval.start, charInterval.end) } case class LabelledEntry(label: String, entry: String) def label(identifier: Char, index: Int, entry: String) = LabelledEntry(identifier.toString + index, entry) val entries = { val arguments = List(inst.extr.arg1, inst.extr.arg2) map { arg => val labelled = label('T', entityIndex, partToAnnotation(inst, arg, "Argument")) entityIndex += 1 labelled } val relation = { val labelled = label('T', entityIndex, partToAnnotation(inst, inst.extr.rel, "Relation")) entityIndex += 1 labelled } val entities = relation :: arguments val relations = arguments zip List("Arg1", "Arg2") map { case (entry, edge) => val labelled = label('R', relationIndex, edge + "-of Arg1:" + relation.label + " Arg2:" + entry.label) relationIndex += 1 labelled } entities ::: relations } entries map { case LabelledEntry(label, entry) => label + "\t" + entry } } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/AnalyzePatterns.scala ================================================ package edu.knowitall.openparse import java.io.{PrintWriter, File} import scala.Option.option2Iterable import scala.collection.mutable import scala.io.Source import edu.knowitall.collection.immutable.graph.pattern.DirectedEdgeMatcher import edu.knowitall.common.Resource import edu.knowitall.tool.parse.graph.{PostagNodeMatcher, LabelEdgeMatcher, DependencyPattern, DependencyGraph} import edu.knowitall.ollie.Ollie.stemmer object AnalyzePatterns { def main(args: Array[String]) { val patternedFilePath = args(0) val outputFilePath = args(1) println("Counting pattern occurrence...") val patterns = mutable.HashMap[String, Int]().withDefaultValue(0) Resource.using(Source.fromFile(patternedFilePath, "UTF8")) { source => for (line <- source.getLines) { val Array(_, _, _, _, pattern, _, _, _*) = line.split("\t", -1) patterns += pattern -> (patterns(pattern) + 1) } } println("Grouping patterns...") Resource.using(new PrintWriter(new File(outputFilePath), "UTF8")) { writer => val ordered = patterns.toList.sortBy(_._2)(implicitly(Ordering[Int]).reverse) for ((pattern, count) <- ordered.filter(_._2 > 100)) { println(count + ":" + pattern) Resource.using(Source.fromFile(patternedFilePath, "UTF8")) { source => writer.println(pattern + "\t" + count) for (line <- source.getLines) { val Array(rel, arg1, arg2, lemmas, p, sentence, deps, _*) = line.split("\t", -1) if (p == pattern) { writer.println(Iterable(rel, arg1, arg2, lemmas).mkString("\t")) writer.println(sentence) writer.println(deps) writer.println() } } } } println() } } } object CountPatternComponents { def main(args: Array[String]) { val patternedFilePath = args(0) val edgeCounts = mutable.HashMap[String, Int]().withDefaultValue(0) val postagCounts = mutable.HashMap[String, Int]().withDefaultValue(0) Resource.using(Source.fromFile(patternedFilePath, "UTF8")) { source => for (line <- source.getLines) { val Array(_, _, _, _, pickledPattern, _, _, _*) = line.split("\t", -1) val pattern = new ExtractorPattern(DependencyPattern.deserialize(pickledPattern)) val labels = (pattern.edgeMatchers.toList).flatMap { _ match { case e: DirectedEdgeMatcher[_] if e.matcher.isInstanceOf[LabelEdgeMatcher] => Some(e.matcher.asInstanceOf[LabelEdgeMatcher].label) case _ => None } } val postags = (pattern.baseNodeMatchers.toList).collect { case m: PostagNodeMatcher => m.postag } for (l <- labels) { edgeCounts += l -> (edgeCounts(l)+1) } for (postag <- postags) { postagCounts += postag -> (postagCounts(postag)+1) } } } println("Postag counts: ") for ((k, v) <- postagCounts.toList.sortBy(_._2).reverse) { println(k + "\t" + v) } println() println("Edge counts: ") for ((k, v) <- edgeCounts.toList.sortBy(_._2).reverse) { println(k + "\t" + v) } } } object CountSentenceComponents { def main(args: Array[String]) { val patternedFilePath = args(0) val edgeCounts = mutable.HashMap[String, Int]().withDefaultValue(0) val postagCounts = mutable.HashMap[String, Int]().withDefaultValue(0) val pieceCounts = mutable.HashMap[String, Int]().withDefaultValue(0) Resource.using(Source.fromFile(patternedFilePath, "UTF8")) { source => for (line <- source.getLines) { val Array(_, _, _, _, _, _, pickledGraph, _*) = line.split("\t", -1) val graph = DependencyGraph.deserialize(pickledGraph) val labels = (graph.graph.edges).toList.map(_.label ) val postags = (graph.graph.vertices).toList.map(_.postag) for (l <- labels) { edgeCounts += l -> (edgeCounts(l)+1) } for (postag <- postags) { postagCounts += postag -> (postagCounts(postag)+1) } for (edge <- graph.graph.edges) { val piece1 = edge.source.postag + " " + edge.label + " " + edge.dest.postag val piece2 = edge.dest.postag + " " + edge.label + " " + edge.source.postag pieceCounts += piece1 -> (pieceCounts(piece1)+1) pieceCounts += piece2 -> (pieceCounts(piece2)+1) } } } println("Postag counts: ") for ((k, v) <- postagCounts.toList.sortBy(_._2).reverse) { println(k + "\t" + v) } println() println("Edge counts: ") for ((k, v) <- edgeCounts.toList.sortBy(_._2).reverse) { println(k + "\t" + v) } println() println("Piece counts: ") for ((k, v) <- pieceCounts.toList.sortBy(_._2).reverse) { println(k + "\t" + v) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/BuildPatterns.scala ================================================ package edu.knowitall.openparse import java.io.{PrintWriter, File} import scala.collection.immutable import scala.io.Source import org.slf4j.LoggerFactory import edu.knowitall.collection.immutable.graph.pattern.{Matcher, Pattern, CaptureNodeMatcher} import edu.knowitall.collection.immutable.graph.{UpEdge, DownEdge, Bipath} import edu.knowitall.common.Timing.{time, Seconds} import edu.knowitall.tool.parse.graph.{PostagNodeMatcher, DependencyPattern, DependencyNodeMatcher, DependencyNode, DependencyGraph} import edu.knowitall.tool.stem.MorphaStemmer import scalaz._ import Zipper._ import scopt.OptionParser /** A main method for creating patterns from a lemma grep. A lemma grep is * a file that has an extraction and a sentence that contains the lemmas * in the extraction. * * @author Michael Schmitz */ object BuildPatterns { val logger = LoggerFactory.getLogger(this.getClass) val CHUNK_SIZE = 100000 class NoRelationNodeException(message: String) extends NoSuchElementException(message) class Settings { var sourcePath: String = _ var destPath: Option[String] = None var length = Option.empty[Int] var parallel = false } def main(args: Array[String]) { val settings = new Settings val parser = new OptionParser("buildpats") { arg("source", "source", { v: String => settings.sourcePath = v }) argOpt("dest", "dest", { v: String => settings.destPath = Some(v) }) opt("p", "parallel", "run multithreaded", { settings.parallel = true }) intOpt("l", "length", "", "maximum number of edges in the patterns", { l: Int => settings.length = Some(l) }) } if (parser.parse(args)) { logger.debug("info: " + args.mkString(" ")) main(settings) } } def main(settings: Settings) { def validGraph(graph: DependencyGraph) = { // make sure there is a verb graph.nodes.exists(node => "(?i)^VB".r.findFirstIn(node.postag).isDefined) } // file with dependencies val source = Source.fromFile(settings.sourcePath, "UTF-8") val writer = settings.destPath.map(dest => new PrintWriter(new File(dest), "UTF8")).getOrElse(new PrintWriter(System.out)) logger.info("chunk size: " + CHUNK_SIZE) logger.info("pattern length: " + settings.length) var index = 0 for (lines <- source.getLines.grouped(CHUNK_SIZE)) { @volatile var count = 0 val group = if (settings.parallel) lines.par else lines val ms = time(group.foreach { line => val Array(rel, arg1, arg2, lemmaString, text, _/*lemmas*/, _/*postags*/, _/*chunks*/, deps) = line.split("\t") val lemmas = lemmaString.split("\\s+").toSet // todo: push stemming forward in the process try { val graph = DependencyGraph.deserialize(deps).map { node => node.lemmatize(MorphaStemmer) }.collapseNounGroups().collapseNNPOf.simplifyPostags if (!validGraph(graph)) { logger.warn("Invalid graph (no verb?): " + graph.text + "\t" + graph.serialize) } else { val patterns = findRelationPatterns(graph, rel, arg1, arg2, lemmas, settings.length) for ((pattern, slots) <- patterns; if pattern.valid) { if (!settings.length.isDefined || pattern.nodeMatchers.length <= settings.length.get) { writer.println((List(rel, arg1, arg2, lemmas.mkString(" "), pattern, text, deps) ::: slots).mkString("\t")) count += 1 } } } } catch { case e: NoRelationNodeException => logger.warn(e.toString) case e: DependencyGraph.SerializationException => logger.error("could not deserialize graph: " + deps, e) } }) logger.info("chunk " + index + ": " + count + " items in " + Seconds.format(ms)) writer.flush() index += 1 } logger.info("done.") source.close writer.close } def findBipaths(lemmas: Set[String], graph: DependencyGraph, maxLength: Option[Int]) = { // build a set of all the possible combinations that don't use a // node with the same text twice def combinations(nodes: Set[DependencyNode]) = { def rec(nodes: Seq[(String, Set[DependencyNode])], combs: Set[DependencyNode]): Set[Set[DependencyNode]] = nodes match { case Seq((text, set), rest @ _*) => set.flatMap(item => rec(rest, combs + item)) case Seq() => Set(combs) } if (nodes.map(_.text).size == nodes.size) { // there are no duplicate nodes Set(nodes) } else { // build combinations rec(nodes.groupBy(_.text).toSeq, Set()) } } val allNodes = lemmas.flatMap { lemma => // find all exact matches val exacts = graph.graph.vertices.filter(_.text == lemma) // or one partial match if (exacts.isEmpty) graph.graph.vertices.find(_.text.contains(lemma)) map { List(_) } getOrElse List.empty else exacts } combinations(allNodes).flatMap { nodes => val paths = graph.graph.bipaths(nodes, maxLength) // restrict to paths that go up and then down paths.filter(bipath => bipath.path.length > 0 && bipath.path.dropWhile(_.isInstanceOf[UpEdge[_]]).dropWhile(_.isInstanceOf[DownEdge[_]]).isEmpty) } } class InvalidBipathException(message: String) extends RuntimeException(message) def findPattern(graph: DependencyGraph, lemmas: Set[String], replacements: Map[String, String], maxLength: Option[Int]) = { def valid(bip: Bipath[DependencyNode]) = { def params = replacements.toString+"; "+bip.toString // we don't have any "punct" edges !bip.edges.find(_.label == "punct").map { edge => logger.debug("invalid: punct edge '"+edge+"': "+bip) }.isDefined && // we don't have any "dep" edges !bip.edges.find(_.label == "dep").map { edge => logger.debug("invalid: dep edge '"+edge+"': "+bip) }.isDefined && // all edges are simple word characters !bip.edges.find(!_.label.matches("\\w+")).map { edge => logger.debug("invalid: special character in edge '"+edge+"': "+bip) }.isDefined } // find paths containing lemma val bipaths = findBipaths(lemmas, graph, maxLength) filter valid bipaths.flatMap { bip => import scalaz._ import Scalaz._ val zipper = DependencyPattern.create(bip).matchers.toZipper.get val zipperReplaced = try { Some((zipper /: replacements){ case (zipper, (target, rep)) => val zipperMatch = // find an exact match zipper.findZ { case m: DependencyNodeMatcher => m.text == target case _ => false } orElse // find a partial match zipper.findZ { case m: DependencyNodeMatcher => m.text contains target case _ => false } getOrElse { throw new InvalidBipathException("invalid: couldn't find replacement '"+rep+"': "+bip) } // ensure valid postags if (!OpenParse.VALID_ARG_POSTAG.contains(zipperMatch.focus.asInstanceOf[DependencyNodeMatcher].postag)) throw new InvalidBipathException("invalid: invalid arg postag '"+zipper.focus+"': "+bip) // make replacements zipperMatch.update(new ArgumentMatcher(rep)) })} catch { case e: InvalidBipathException => logger.debug(e.getMessage); None } zipperReplaced.map(zipper => new ExtractorPattern(zipper.toStream.toList)) } } /** * Find patterns in the graph that connect arg1, rel, and arg2. * * @param graph the graph to find the pattern in. * @param rel the relation * @param arg1 the argument 1 * @param arg2 the argument 2 * @param lemmas all lemmas in `rel`, `arg1`, and `arg2` * @param maxLength the maximum path length, in edges */ def findRelationPatterns(graph: DependencyGraph, rel: String, arg1: String, arg2: String, lemmas: Set[String], maxLength: Option[Int] = None) = { findPatterns(graph, lemmas, Map(arg1 -> "arg1", arg2 -> "arg2"), rel, maxLength) } def findPatterns(graph: DependencyGraph, lemmas: Set[String], replacements: Map[String, String], rel: String, maxLength: Option[Int]): List[(ExtractorPattern, List[String])] = { def valid(pattern: Pattern[DependencyNode]) = // make sure arg1 comes first pattern.matchers.find(_ .isInstanceOf[CaptureNodeMatcher[_]]).map(_ .asInstanceOf[CaptureNodeMatcher[_]].alias == "arg1").getOrElse(false) val patterns = findPattern(graph, lemmas, replacements, maxLength) val filtered = patterns.filter(valid).toList val relLemmas = rel.split(" ").toList filter lemmas // find the best part to replace with rel filtered.map { pattern => import scalaz._ import Scalaz._ def replaceRels(zipper: Zipper[Matcher[DependencyNode]]) = { def replaceRels(zipper: Zipper[Matcher[DependencyNode]], rels: List[(String, Int)]): Zipper[Matcher[DependencyNode]] = rels match { case Nil => zipper case (rel, i) :: xs => // find the rel node val relZipper = zipper.findZ(_ match { case nm: DependencyNodeMatcher => nm.text.split("\\s+").contains(rel) case _ => false }) getOrElse { throw new NoRelationNodeException("No relation node ("+rel+") in pattern: " + pattern) } // replace rel val postag = relZipper.focus.asInstanceOf[DependencyNodeMatcher].postag val alias = if (i == 0 && xs.isEmpty) "rel" else "rel" + i val updated = relZipper.update(new CaptureNodeMatcher(alias, new PostagNodeMatcher(postag))) replaceRels(updated, xs) } replaceRels(zipper, relLemmas.zipWithIndex) } def replaceSlots(zipper: Zipper[Matcher[DependencyNode]]) = { def replaceSlots(zipper: Zipper[Matcher[DependencyNode]], labels: List[String], index: Int): (Zipper[Matcher[DependencyNode]], List[String]) = { def replaceSlot(zipper: Zipper[Matcher[DependencyNode]]) = { val node = zipper.focus.asInstanceOf[DependencyNodeMatcher] val postag = node.postag (Zipper.zipper[Matcher[DependencyNode]](zipper.lefts, new CaptureNodeMatcher("slot"+index, new PostagNodeMatcher(postag)), zipper.rights), node.text) } zipper.findZ(_.isInstanceOf[DependencyNodeMatcher]) match { case Some(z) => val (zipper, label) = replaceSlot(z) replaceSlots(zipper, label :: labels, index + 1) case None => (zipper, labels) } } replaceSlots(zipper, List(), 0) } val zipper = pattern.matchers.toZipper.get val relZipper = replaceRels(zipper) val (slotZipper, slotLabels) = replaceSlots(relZipper) (new ExtractorPattern(slotZipper.toStream.toList), slotLabels) } } } /** A command line application to filter out only the patterns * that occur more than the specific number of times. * * @author Michael Schmitz */ object KeepCommonPatterns { def main(args: Array[String]) { val min = args(1).toInt System.err.println("minimum pattern ocurrence: "+min) var rows = 0 var keepers = 0 var patterns = scala.collection.immutable.Map[String, Int]().withDefaultValue(0) val firstSource = Source.fromFile(args(0), "UTF8") for (line <- firstSource.getLines) { val Array(rel, arg1, arg2, lemmas, pattern, text, deps, _*) = line.split("\t") rows += 1 patterns += pattern -> (patterns(pattern) + 1) } firstSource.close() System.err.println(rows+" rows") System.err.println(patterns.size+" unique patterns") val secondSource = Source.fromFile(args(0), "UTF8") for (line <- secondSource.getLines) { val Array(rel, arg1, arg2, lemmas, pattern, text, deps, _*) = line.split("\t") if (patterns(pattern) >= min) { keepers += 1 println(line) } } secondSource.close() System.err.println(keepers+" patterns that occur more than "+min+"times") } } /** A command line application to filter out only the patterns * that are found with the specific number of seeds. * * @author Michael Schmitz */ object KeepDiversePatterns { abstract class Settings { def inputFile: File def min: Int def outputFile: Option[File] def debugFile: Option[File] } def main(args: Array[String]) { val settings = new Settings { var inputFile: File = _ var min: Int = 5 var outputFile: Option[File] = None var debugFile: Option[File] = None } val parser = new OptionParser("buildpats") { arg("input", "input file", { path: String => settings.inputFile = new File(path) }) intOpt("min", "minimum number of relations per pattern", { string: Int => settings.min }) opt("debug", "debug output file", { path: String => settings.debugFile = Some(new File(path)) }) opt("output", "output file", { path: String => settings.outputFile = Some(new File(path)) }) } if (parser.parse(args)) { run(settings) } } def run(settings: Settings) { val min = settings.min System.err.println("minimum relations per pattern: "+min) var rows = 0 var keepers = 0 var patterns = immutable.Map[String, Set[Int]]().withDefaultValue(Set()) val firstSource = Source.fromFile(settings.inputFile, "UTF8") for (line <- firstSource.getLines) { val Array(rel, arg1, arg2, lemmas, pattern, text, deps, _*) = line.split("\t") rows += 1 patterns += pattern -> (patterns(pattern) + rel.hashCode) } firstSource.close() System.err.println(rows+" rows") System.err.println(patterns.size+" unique patterns") val secondSource = Source.fromFile(settings.inputFile, "UTF8") val outputWriter = settings.outputFile.map(new PrintWriter(_)).getOrElse(new PrintWriter(System.out)) val debugWriter = settings.debugFile.map(new PrintWriter(_)) for (line <- secondSource.getLines) { val Array(rel, arg1, arg2, lemmas, pattern, text, deps, _*) = line.split("\t") val size = patterns(pattern).size if (size >= min) { keepers += 1 outputWriter.println(line) } else { debugWriter.map(_.println(size+"\t"+pattern)) } } debugWriter.map(_.close()) outputWriter.close() secondSource.close() System.err.println(keepers+" patterns that occur more than "+min+"times") } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/ExtractorPattern.scala ================================================ package edu.knowitall.openparse import scala.io.Source import org.slf4j.LoggerFactory import edu.knowitall.collection.immutable.graph.pattern.CaptureNodeMatcher import edu.knowitall.collection.immutable.graph.pattern.EdgeMatcher import edu.knowitall.collection.immutable.graph.pattern.Matcher import edu.knowitall.collection.immutable.graph.pattern.NodeMatcher import edu.knowitall.collection.immutable.graph.pattern.Pattern import edu.knowitall.collection.immutable.graph.pattern.TrivialNodeMatcher import edu.knowitall.ollie.Ollie.stemmer import edu.knowitall.tool.parse.graph.DependencyNode import edu.knowitall.tool.parse.graph.DependencyPattern import edu.knowitall.tool.parse.graph.LabelEdgeMatcher import edu.knowitall.tool.parse.graph.RegexNodeMatcher import scalaz._ import scalaz.Scalaz._ /** A wrapper for a dependency pattern that adds some convenience methods * for working with patterns intended for extraction of binary relations. * * @author Michael Schmitz */ class ExtractorPattern(matchers: List[Matcher[DependencyNode]]) extends DependencyPattern(matchers) { val logger = LoggerFactory.getLogger(this.getClass) def this(pattern: Pattern[DependencyNode]) = this(pattern.matchers.map { _ match { case m: ExtractionPartMatcher => m // lift extractor matchers to a more representitive class case m: CaptureNodeMatcher[_] => m.alias.take(3) match { case "arg" => new ArgumentMatcher(m.alias, m.matcher) case "rel" => new RelationMatcher(m.alias, m.matcher) case "slo" => new SlotMatcher(m.alias, m.matcher) case _ => throw new IllegalArgumentException("Unknown capture alias: " + m.alias) } // keep everything else the same case m => m }}) override def canEqual(that: Any) = that.isInstanceOf[ExtractorPattern] override def equals(that: Any) = that match { case that: ExtractorPattern => (that canEqual this) && this.matchers == that.matchers case _ => false } def semantic: Boolean = matchers.exists { case m: RelationMatcher => m.baseNodeMatchers exists { case m: RegexNodeMatcher => true case _ => false } case _ => false } def valid: Boolean = { def existsEdge(pred: LabelEdgeMatcher=>Boolean) = this.baseEdgeMatchers.collect { case e: LabelEdgeMatcher => e }exists(pred) /* check for multiple prep edges */ def multiplePreps = this.baseEdgeMatchers.collect { case e: LabelEdgeMatcher => e }.count(_.label.contains("prep")) > 1 /* check for a conj_and edge */ def conjAnd = existsEdge(_.label == "conj_and") /* check for a conj_and edge */ def conjOr = existsEdge(_.label == "conj_or") /* eliminate all conj edges */ def conj = existsEdge(_.label startsWith "conj") def slotBordersNN = { import scalaz._ import Scalaz._ def isNN(m: Matcher[DependencyNode]) = m match { case e: NodeMatcher[_] => e.baseNodeMatchers exists { case m: LabelEdgeMatcher if m.label == "nn" => true case _ => false } case _ => false } def isSlot(m: Matcher[DependencyNode]) = m match { case m: SlotMatcher => true case _ => false } this.matchers.toZipper.map(_.positions.toStream.exists { z => def focusedOnNN(z: Option[Zipper[Matcher[DependencyNode]]]) = z.map(z => isNN(z.focus)).getOrElse(false) isSlot(z.focus) && (focusedOnNN(z.previous) || focusedOnNN(z.next)) }).getOrElse(false) } if (existsEdge(_.label == "dep")) { logger.debug("invalid: dep edge: " + this.toString) return false } if (existsEdge(_.label == "dep")) { logger.debug("invalid: dep edge: " + this.toString) return false } /* check if ends with slot */ def slotAtEnd = { def isSlot(node: NodeMatcher[_]) = node match { case m: CaptureNodeMatcher[_] => m.alias.startsWith("slot") case _ => false } !this.nodeMatchers.isEmpty && (isSlot(this.nodeMatchers.head) || isSlot(this.nodeMatchers.last)) } val length = edgeMatchers.length if (length == 2 && multiplePreps) { logger.debug("invalid: multiple preps: " + this.toString) false } else if (conjAnd) { logger.debug("invalid: conj_and: " + this.toString) false } else if (conjOr) { logger.debug("invalid: conj_or: " + this.toString) false } else if (conj) { logger.debug("invalid: alt conj: " + this.toString) false } else if (slotAtEnd) { logger.debug("invalid: ends with slot: " + this.toString) false } else if (slotBordersNN) { logger.debug("invalid: slot borders nn: " + this.toString) false } else { true } } /* determine if the pattern is symmetric, such as: * {arg1} >prep> {rel} compare(m1s, m2s) // edge matchers should be equals but opposite case (((m1: EdgeMatcher[_]) :: m1s), ((m2: EdgeMatcher[_]) :: m2s)) => m1 == m2.flip && compare(m1s, m2s) // edges and other nodes must be equal case (((m1: Matcher[_]) :: m1s), ((m2: Matcher[_]) :: m2s)) => m1 == m2 && compare(m1s, m2s) case (Nil, Nil) => true case _ => false } compare(matchers, matchers.reverse) } } object ExtractorPattern { import scala.io.Source def main(args: Array[String]) { val iter = if (args.length == 0) Source.stdin.getLines else args.iterator for (line <- iter) { val pattern = DependencyPattern.deserialize(line) val extractor = new ExtractorPattern(pattern) def verdict = if (extractor.valid) "valid" else "invalid" println(verdict + ": " + extractor.toString) } } } /** A dependency node used to match an extraction part in a pattern extractor. * * @author Michael Schmitz */ sealed abstract class ExtractionPartMatcher(alias: String, matcher: NodeMatcher[DependencyNode]) extends CaptureNodeMatcher[DependencyNode](alias, matcher) { def this(alias: String) = this(alias, new TrivialNodeMatcher[DependencyNode]) def withMatcher(matcher: NodeMatcher[DependencyNode]): ExtractionPartMatcher } /** A dependency node used to match an argument in a pattern extractor. * * @author Michael Schmitz */ class ArgumentMatcher(alias: String, matcher: NodeMatcher[DependencyNode]) extends ExtractionPartMatcher(alias, matcher) { def this(alias: String) = this(alias, new TrivialNodeMatcher[DependencyNode]) override def canEqual(that: Any) = that.isInstanceOf[ExtractionPartMatcher] override def equals(that: Any) = that match { case that: ExtractionPartMatcher => (that canEqual this) && super.equals(that.asInstanceOf[Any]) case _ => false } override def withMatcher(matcher: NodeMatcher[DependencyNode]) = new ArgumentMatcher(this.alias, matcher) } /** A dependency node used to match a relation in a pattern extractor. * * @author Michael Schmitz */ class RelationMatcher(alias: String, matcher: NodeMatcher[DependencyNode]) extends ExtractionPartMatcher(alias, matcher) { override def canEqual(that: Any) = that.isInstanceOf[RelationMatcher] override def equals(that: Any) = that match { case that: RelationMatcher => (that canEqual this) && super.equals(that.asInstanceOf[Any]) case _ => false } override def withMatcher(matcher: NodeMatcher[DependencyNode]) = new RelationMatcher(this.alias, matcher) } /** A dependency node used to match a slot in a pattern extractor. * * @author Michael Schmitz */ class SlotMatcher(alias: String, matcher: NodeMatcher[DependencyNode]) extends ExtractionPartMatcher(alias, matcher) { override def canEqual(that: Any) = that.isInstanceOf[SlotMatcher] override def equals(that: Any) = that match { case that: SlotMatcher => (that canEqual this) && super.equals(that.asInstanceOf[Any]) case _ => false } override def withMatcher(matcher: NodeMatcher[DependencyNode]) = new SlotMatcher(this.alias, matcher) } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/GraphExpansions.scala ================================================ package edu.knowitall.openparse import scala.collection.Set import scala.collection.SortedSet import edu.knowitall.collection.immutable.graph.{Graph, DirectedEdge} import edu.knowitall.collection.immutable.graph.Direction import edu.knowitall.collection.immutable.Interval import edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph} /** A collection of helper methods for expanding a node in a graph * and/or sentence according to some metric. */ object GraphExpansions { def neighborsUntil(graph: DependencyGraph, node: DependencyNode, inferiors: List[DependencyNode], until: Set[DependencyNode]): SortedSet[DependencyNode] = { val lefts = inferiors.takeWhile(_ != node).reverse val rights = inferiors.dropWhile(_ != node).drop(1) val indices = Interval.span(node.indices :: lefts.takeWhile(!until(_)).map(_.indices) ++ rights.takeWhile(!until(_)).map(_.indices)) // use the original dependencies nodes in case some information // was lost. For example, of is collapsed into the edge prep_of graph.nodes.filter(node => node.indices.max >= indices.min && node.indices.max <= indices.max) } def expandAdjacent(graph: DependencyGraph, node: DependencyNode, until: Set[DependencyNode], labels: Set[String]) = { def takeAdjacent(interval: Interval, nodes: List[DependencyNode], pool: List[DependencyNode]): List[DependencyNode] = pool match { // can we add the top node? case head :: tail if (head.indices borders interval) && !until.contains(head) => takeAdjacent(interval union head.indices, head :: nodes, tail) // otherwise abort case _ => nodes } // it might be possible to simply have an adjacency restriction // in this condition def cond(e: Graph.Edge[DependencyNode]) = labels.contains(e.label) val inferiors = graph.graph.inferiors(node, cond).toList.sortBy(_.indices) // split into nodes left and right of node val lefts = inferiors.takeWhile(_ != node).reverse val rights = inferiors.dropWhile(_ != node).drop(1) // take adjacent nodes from each list val withLefts = takeAdjacent(node.indices, List(node), lefts) val expanded = takeAdjacent(node.indices, withLefts, rights) SortedSet(expanded: _*) } def expand(graph: DependencyGraph, node: DependencyNode, until: Set[DependencyNode], labels: Set[String]) = { // don't restrict to adjacent (by interval) because prep_of, etc. // remove some nodes that we want to expand across. In the end, // we get the span over the inferiors. Do go beneath until // nodes because we need them for neighborsUntil. def cond(e: Graph.Edge[DependencyNode]) = labels.contains(e.label) val inferiors = graph.graph.inferiors(node, cond) // get all nodes connected by an nn edge val nns = graph.graph.connected(node, dedge => dedge.edge.label == "nn") // order the nodes by their indices val ordered = (inferiors ++ nns).toList.sortBy(_.indices) // get neighbors, moving left and right, until a bad node is it neighborsUntil(graph, node, ordered, until) } def augment(graph: DependencyGraph, node: DependencyNode, without: Set[DependencyNode], pred: Graph.Edge[DependencyNode] => Boolean): List[SortedSet[DependencyNode]] = { // don't restrict to adjacent (by interval) because prep_of, etc. // remove some nodes that we want to expand across. In the end, // we get the span over the inferiors. graph.graph.successors(node, pred).map { successor => SortedSet[DependencyNode]() ++ graph.graph.inferiors(successor) }.toList } /** * Find all nodes in a components next to the node. * @param node components will be found adjacent to this node * @param labels components may be connected by edges with any of these labels * @param without components may not include any of these nodes */ def components(graph: DependencyGraph, node: DependencyNode, labels: Set[String], without: Set[DependencyNode], nested: Boolean) = { // nodes across an allowed label to a subcomponent val across = graph.graph.neighbors(node, (dedge: DirectedEdge[_]) => dedge.dir match { case Direction.Down if labels.contains(dedge.edge.label) => true case _ => false }) across.flatMap { start => // get inferiors without passing back to node val inferiors = graph.graph.inferiors(start, (e: Graph.Edge[DependencyNode]) => // don't cross a conjunction that goes back an across node !((e.label startsWith "conj") && (across contains e.dest)) && // make sure we don't cycle out of the component e.dest != node && // make sure we don't descend into another component // i.e. "John M. Synge who came to us with his play direct // from the Aran Islands , where the material for most of // his later works was gathered" if nested is false (nested || !labels.contains(e.label))) // make sure none of the without nodes are in the component if (without.forall(!inferiors.contains(_))) { val span = Interval.span(inferiors.map(_.indices).toSeq) Some(graph.nodes.filter(node => span.superset(node.indices)).toList) } else None } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/OpenParse.scala ================================================ package edu.knowitall.openparse import java.io.{PrintWriter, File} import java.net.URL import scala.collection.Set import scala.io.Source import org.slf4j.LoggerFactory import edu.knowitall.collection.immutable.graph.pattern.Match import edu.knowitall.collection.immutable.graph.Graph import edu.knowitall.common.Resource.using import edu.knowitall.common.Timing import edu.knowitall.openparse.OpenParse.validMatch import edu.knowitall.openparse.extract.{TemplateExtractor, PatternExtractorType, PatternExtractor, GeneralExtractor, Extraction, DetailedExtraction} import edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph} import edu.knowitall.tool.postag.Postagger import scopt.OptionParser /** OpenParse is an extractor that find binary relation in dependency graphs. * * @author Michael Schmitz */ class OpenParse( /** Patterns to use to look for extractions */ val extractors: Seq[PatternExtractor], /** Configuration options */ val configuration: OpenParse.Configuration) { import OpenParse._ extractors foreach (ex => logger.debug("loaded extractor: "+ex.toString)) logger.debug(configuration.toString) /** Convenience constructor that uses the default configuration. */ def this(extractors: Seq[PatternExtractor]) = this(extractors, new OpenParse.Configuration()) /** Perform some normalizations on the graph */ def simplifyGraph(dgraph: DependencyGraph): DependencyGraph = { var graph = dgraph if (configuration.collapseGraph) { graph = graph.collapse } if (configuration.simplifyPostags) { graph = graph.simplifyPostags } if (configuration.simplifyVBPostags) { graph = graph.simplifyVBPostags } graph } def apply(dg: DependencyGraph) = extract(dg) /** Find extractions in a dependency graph */ def extract(dg: DependencyGraph): Seq[(Double, DetailedExtraction)] = { val dgraph = simplifyGraph(dg) /** * Check if the PatternExtractor gives a deterministic confidence. * If so, make sure it is above the threshold. */ def confidenceOverThreshold(extractor: PatternExtractor, threshold: Double) = { extractor.maximumConfidence >= configuration.confidenceThreshold } /** * Quick checks to see if an extraction is possible. This * is an optimization, so the checks should be considerably * faster than running the extractors. */ def possibleExtraction(extractor: PatternExtractor, dgraph: DependencyGraph) = { extractor.pattern.edgeMatchers.forall { matcher => val can = dgraph.graph.edges.exists(matcher.canMatch(_)) if (!can && logger.isTraceEnabled) logger.trace("No possible match: " + matcher) can } } val extrs = for { extractor <- extractors; // todo: organize patterns by a reverse-lookup on edges // val _ = logger.trace("attempting extractor: " + extractor) // optimizations if (confidenceOverThreshold(extractor, configuration.confidenceThreshold)); if (possibleExtraction(extractor, dgraph)); // val _ = logger.trace("applying extractor: " + extractor) // extraction extr <- extractor.extract(dgraph)(this.buildExtraction, this.validateMatch) val conf = extractor.confidence(extr); if conf >= configuration.confidenceThreshold } yield { (conf, extr) } val reduced = if (configuration.keepDuplicates) { extrs } else { // toSet to remove exact duplicates val set = extrs.toSet val reduced = set filterNot { case (thisConf, thisExtr) => set exists { case (thatConf, thatExtr) => // the relations are identical thisExtr.rel == thatExtr.rel && // this confidence is lower than that thisConf < thatConf && // one of the other argument is a substring of the other (thatExtr.arg1Text.contains(thisExtr.arg1Text) || thatExtr.arg2Text.contains(thisExtr.arg2Text)) } } reduced.toSeq } reduced.sortBy { case (conf, extr) => (-conf, extr.toString) } } /** Build an extraction from a match in the dependency pattern. */ protected val buildExtraction = Extraction.fromMatch(configuration.expandExtraction) _ /** Validate a dependency pattern match to see if it can be expanded * into an extraction. */ protected val validateMatch = validMatch(configuration.restrictArguments) _ } object OpenParse { val LEMMA_BLACKLIST = Postagger.simplePrepositions + "like" + "be" val VALID_ARG_POSTAG = Set("NN", "NNS", "NNP", "NNPS", "JJ", "JJS", "CD", "PRP") val logger = LoggerFactory.getLogger(this.getClass) /** An url to the default model */ def defaultModelUrl: URL = { val path = "openparse.model" val url = this.getClass.getResource(path) require(url != null, "Default model could not be found: " + path); url } // factory methods /** Create an OpenParse extractor using the default model */ def withDefaultModel(configuration: Configuration = new Configuration()) = { fromModelUrl(defaultModelUrl, configuration) } /** Create an OpenParse extractor reading a model from the specified source. */ def fromModelSource(source: Source, configuration: Configuration = new Configuration()) = { val it = source.getLines val head = it.next val typ = PatternExtractorType(head) val extractors = typ.fromLines(it) new OpenParse(extractors, configuration) } /** Create an OpenParse extractor by reading a model from the specified file. */ def fromModelFile(file: File, configuration: Configuration = new Configuration()) = { using (Source.fromFile(file)) { source => OpenParse.fromModelSource(source, configuration) } } /** Create an OpenParse extractor by reading a model from the specified url. */ def fromModelUrl(url: URL, configuration: Configuration = new Configuration()) = { using (url.openStream()) { stream => using (Source.fromInputStream(stream)) { source => fromModelSource(source, configuration) } } } val CHUNK_SIZE = 10000 implicit def implicitBuildExtraction = Extraction.fromMatch(true) _ implicit def implicitValidMatch = validMatch(true) _ /** Filter matches (pre-extracitons) that are invalid */ def validMatch(restrictArguments: Boolean)(graph: Graph[DependencyNode])(m: Match[DependencyNode]) = { !restrictArguments || VALID_ARG_POSTAG.contains(m.nodeGroups("arg1").node.postag) && VALID_ARG_POSTAG.contains(m.nodeGroups("arg2").node.postag) } /** Settings for OpenParse. */ abstract class Settings { /** url to find the model */ def modelUrl: URL /** file to output; None means stdout */ def outputFile: Option[File] /** source file */ def sentenceFile: File /** threshold for reported extractions and attempted patterns */ def confidenceThreshold: Double /** show duplicate extractions (different patterns can create the same extraction) */ def duplicates: Boolean /** expand the arguments of matches */ def expandArguments: Boolean /** do not filter matches */ def showAll: Boolean /** provide output in a more verbose, non-columnated output */ def verbose: Boolean /** collapse all verbs to VB */ def collapseVB: Boolean /** execute in parallel */ def parallel: Boolean /** ignore exceptions */ def invincible: Boolean /** Create an OpenParse configuration from the settings. */ def configuration: Configuration = new Configuration( confidenceThreshold = this.confidenceThreshold, expandExtraction = this.expandArguments, simplifyVBPostags = this.collapseVB, keepDuplicates = this.duplicates) } def main(args: Array[String]) { object settings extends Settings { var modelUrl: URL = OpenParse.defaultModelUrl var outputFile: Option[File] = None var sentenceFile: File = null var confidenceThreshold = 0.0; var duplicates: Boolean = false var expandArguments: Boolean = false var showAll: Boolean = false var verbose: Boolean = false var collapseVB: Boolean = false var parallel: Boolean = false var invincible: Boolean = false } val parser = new OptionParser("applypat") { opt(Some("m"), "model", "", "model file", { path: String => val file = new File(path) require(file.exists, "file does not exist: " + path) settings.modelUrl = file.toURI.toURL }) doubleOpt(Some("t"), "threshold", "", "confident threshold for shown extractions", { t: Double => settings.confidenceThreshold = t }) opt("o", "output", "output file (otherwise stdout)", { path => settings.outputFile = Some(new File(path)) }) opt("d", "duplicates", "keep duplicate extractions", { settings.duplicates = true }) opt("x", "expand-arguments", "expand extraction arguments", { settings.expandArguments = true }) opt("collapse-vb", "collapse 'VB.*' to 'VB' in the graph", { settings.collapseVB = true }) opt("a", "all", "don't restrict extractions to are noun or adjective arguments", { settings.showAll = true }) opt("v", "verbose", "alternative output format", { settings.verbose = true }) opt("p", "parallel", "execute in parallel", { settings.parallel = true }) opt("ignore-errors", "ignore exceptions", { settings.invincible = true }) arg("sentences", "sentence file", { path: String => val file = new File(path) require(file.exists, "file does not exist: " + path) settings.sentenceFile = file }) } if (parser.parse(args)) { logger.info("args: " + args.mkString(" ")) run(settings) } } /** Configuration options. * * @param simplifyVBPostags replace all VB. postags to VB * @param simplifyPostags replace plurals with the singular postag * @param confidenceThreshold threshold under which not to present extractions * @param expandExtraction true if arguments should be expanded from the matched node * @param keepDuplicates true if duplicate extractions should be presented * @param collapseGraph true if the graph should be compressed */ case class Configuration( val simplifyVBPostags: Boolean = false, val simplifyPostags: Boolean = true, val confidenceThreshold: Double = 0.0, val expandExtraction: Boolean = true, val restrictArguments: Boolean = true, val keepDuplicates: Boolean = false, val collapseGraph: Boolean = true) def deserialize(line: String): Option[DependencyGraph] = { val pickled = line.split("\t").last try { Some(DependencyGraph.deserialize(pickled)) } catch { case e: DependencyGraph.SerializationException => logger.error("could not deserialize graph.", e) None } } def run(settings: Settings, parse: String=>Option[DependencyGraph] = deserialize) { case class Result(conf: Double, extr: DetailedExtraction, text: String) extends Ordered[Result] { override def toString = text override def compare(that: Result) = { val conf = this.conf.compare(that.conf) if (conf == 0) (this.extr.toString + text).compareTo(that.extr.toString + text) else conf } } // create a standalone extractor val configuration = settings.configuration val extractor = OpenParse.fromModelUrl(settings.modelUrl, configuration) def summary(extractionCount: Int, sentenceCount: Int, ms: Long) = { "summary: " + extractionCount + " extractions, " + sentenceCount + " sentences, " + Timing.Seconds.format(ms) + ", " + Timing.Minutes.format(ms) } logger.info("performing extractions") var sentenceCount = 0 val extractionCount = new java.util.concurrent.atomic.AtomicInteger val startTime = System.nanoTime(); using(settings.outputFile.map(new PrintWriter(_)).getOrElse(new PrintWriter(System.out))) { writer => using(Source.fromFile(settings.sentenceFile, "UTF-8")) { sentenceSource => for (group <- sentenceSource.getLines.grouped(CHUNK_SIZE)) { if (settings.outputFile.isDefined) { println(summary(extractionCount.get, sentenceCount, System.nanoTime - startTime)) } val lines = if (settings.parallel) group.par else group sentenceCount += lines.size for { line <- lines dgraph <- parse(line) } { try { val text = dgraph.text val pickled = dgraph.serialize logger.debug("text: " + text) logger.debug("graph: " + pickled) if (settings.verbose) { writer.synchronized { writer.println("text: " + text) writer.println("deps: " + pickled) } } val extractions = extractor.extract(dgraph) extractionCount.addAndGet(extractions.size) val results = for ((conf, extr) <- extractions) yield { val resultText = if (settings.verbose) "extraction: " + ("%1.6f" format conf) + " " + extr.toString + " with (" + extr.extractor.pattern.toString + ")" else ("%1.6f" format conf) + "\t" + extr + "\t" + extr.extractor.pattern + "\t" + text + "\t" + pickled Result(conf, extr, resultText) } writer.synchronized { for (result <- results) { writer.println(result) } } if (settings.verbose) writer.println() } catch { // never fail if invicible case e if settings.invincible => } } } } } if (settings.outputFile.isDefined) { println(summary(extractionCount.get, sentenceCount, System.nanoTime - startTime)) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/bootstrap/FilterTargetExtractions.scala ================================================ package edu.knowitall.openparse.bootstrap import scala.io.Source import org.slf4j.LoggerFactory /** Filter the target extractions. We only want to keep extractions that * occur more than once and have a relation with more than 15 seeds. * * @author Michael Schmitz */ object FilterTargetExtractions { val logger = LoggerFactory.getLogger(this.getClass) final val MIN_RELATION_SEEDS = 15 def main(args: Array[String]) { val inputFile = Source.fromFile(args(0), "UTF8") logger.info("reading lines and counting") var relationCounts = Map[String, Int]().withDefaultValue(0) var seedCounts = Map[(String, String, String, String), Int]().withDefaultValue(0) for (line <- inputFile.getLines) { val Array(rel, arg1, arg2, lemmas, _*) = line.split("\t") val seed = (rel, arg1, arg2, lemmas) // make sure the relation contains at least on of the lemmas // this excludes, for example, "be in" if (rel.split(" ").exists (lemmas contains _)) { seedCounts += seed -> (seedCounts(seed) + 1) relationCounts += rel -> (relationCounts(rel) + 1) } } // keep relations with more than 15 seeds // and more than 0 lemmas val relations: Set[String] = (for { (rel, count) <- relationCounts; if (count > MIN_RELATION_SEEDS) } yield (rel))(scala.collection.breakOut) logger.info("keeping " + relations.size + "/" + relationCounts.size + " relations") // keep seeds that occur more than once val seeds = for { (seed @ (rel, arg1, arg2, lemmas), count) <- seedCounts; if count > 1 && relations.contains(rel) } yield (seed) logger.info("keeping " + seeds.size + "/" + seedCounts.size + " seeds") logger.info("printing seeds to keep") for (seed <- seeds) { println(seed.productIterator.mkString("\t")) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/bootstrap/FindCommon.scala ================================================ package edu.knowitall.openparse.bootstrap import scala.util.matching.Regex /** Common functionality for bootstrap code. * * @author Michael Schmitz */ object FindCommon { // tags allowed in proper arguments val properPostags = Set("DT", "IN", "NNP", "NNPS") def proper(lemmas: Array[String]) = lemmas.forall(properPostags.contains(_)) && lemmas.exists(lemma => lemma == "NNP" || lemma == "NNPS") def stripPostag(target: String, part: Seq[(String, String, String)]) = { part.filter { case (pos, tok, lem) => target != pos } } def stripPostag(target: Regex, part: Seq[(String, String, String)]) = { part.filter { case (pos, tok, lem) => !target.pattern.matcher(pos).matches} } def stripLemma(target: String, part: Seq[(String, String, String)]) = { part.filter { case (pos, tok, lem) => target != lem } } def cleanArg(part: Seq[(String, String, String)]) = stripPostag("DT", part) def zip3(l1 : List[String], l2 : List[String],l3 : List[String]) : List[(String, String, String)] = { def zip3$ (l1$ : List[String], l2$ : List[String], l3$ : List[String], acc : List[(String, String, String)]) : List[(String, String, String)] = l1$ match { case Nil => acc reverse case l1$head :: l1$tail => zip3$(l1$tail, l2$.tail, l3$.tail, (l1$head, l2$.head, l3$.head) :: acc) } zip3$(l1, l2, l3, List[(String,String,String)]()) } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/bootstrap/FindTargetArguments.scala ================================================ package edu.knowitall.openparse.bootstrap import scala.Array.canBuildFrom import scala.collection.mutable import scala.io.Source import edu.knowitall.tool.stem.MorphaStemmer import FindCommon.{zip3, proper, cleanArg} /** Detemine valid arguments of extractions for the boostrap process. * * Only frequent proper arguments are used. * * @author Michael Schmitz */ object FindTargetArguments { import FindCommon._ val blacklist = Set("inc", "ltd", "page", "vehicle", "turn", "site", "photo", "image", "gallery") def valid(lemma: String) = { lemma.length > 2 && lemma.length < 64 && !blacklist.contains(lemma) } /** Run over a file with four columns: * * string * lemma * postag * count * * Count all of the proper arguments and print any arguments that * exceed the lower bound. The lower bound is specified by the first * command-line argument. */ def main(args: Array[String]) { val source = Source.fromFile(args(0), "UTF8") val lowerBound = args(1).toInt val map = new mutable.HashMap[String, Int]().withDefaultValue(0) for (line <- source.getLines) { try { val Array(string, lem, postag, count) = line.split("\t") // do our own normalization val lemma = string.split(" ").map( MorphaStemmer.lemmatize(_)).mkString(" ") if (!string.contains("_")) { // remove DT val arg = cleanArg( zip3( postag.split("""\s+""").toList, string.split("""\s+""").toList, lemma.split("""\s+""").toList)) val cleanLemma = arg.unzip3._3.mkString(" ") // make sure lemma is valid if (proper(postag.split(" ")) && valid(cleanLemma)) { map += cleanLemma -> (map(cleanLemma)+count.toInt) } } } catch { case e: MatchError => } } source.close val keepers: List[(String, Int)] = (for ((k, v) <- map if v > lowerBound) yield { (k, v) })(scala.collection.breakOut) keepers.sortBy(_._2).reverse.foreach { case (k, v) => println(k + "\t" + v) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/bootstrap/FindTargetExtractions.scala ================================================ package edu.knowitall.openparse.bootstrap import scala.Array.canBuildFrom import scala.Option.option2Iterable import scala.io.Source import org.slf4j.LoggerFactory import edu.knowitall.openparse.OpenParse import edu.knowitall.tool.stem.MorphaStemmer import FindCommon.{zip3, stripPostag, proper, cleanArg} import scopt.OptionParser /** Detemine valid extractions for the boostrap process. * * Extractions need frequent arguments from FindTargetArguments * and cannot contain a negation word. * * @author Michael Schmitz */ object FindTargetExtractions { import FindCommon._ val logger = LoggerFactory.getLogger(this.getClass) def negated(lemmas: Array[String]) = lemmas.contains("not") || lemmas.contains("no") || lemmas.contains("n't") || lemmas.contains("never") val lemmaBlacklist = Set("the", "that", "of") def main(args: Array[String]) { val parser = new OptionParser("findextr") { var extractionFilePath: String = _ var relationFilePath: Option[String] = None var argumentFilePath: String = _ arg("extractions", "extraction file", { v: String => require(v != null); extractionFilePath = v }) arg("arguments", "argument file", { v: String => require(v != null); argumentFilePath = v }) opt("r", "relations", "", "relation file", { v: String => require(v != null); relationFilePath = Some(v) }) } if (parser.parse(args)) { // read in the argument files val extractions = Source.fromFile(parser.extractionFilePath, "UTF8") logger.info("loading targets") val relationsRows = parser.relationFilePath.map(Source.fromFile(_, "UTF8").getLines.map(line => line.split("\t")).toList) val targets = relationsRows.map(_ map (_(0))) val relationLemmaLookup = relationsRows.map(_.map(row => (row(0), row(1).split(" "))).toMap) def relationLemmas(relation: String): Seq[String] = { relationLemmaLookup match { case Some(lookup) => lookup(relation) case None => relation.split(" ") filterNot OpenParse.LEMMA_BLACKLIST } } targets match { case Some(targets) => logger.info("5 targets: " + targets.take(5).mkString(", ")) case None => logger.info("No target restriction") } logger.info("loading arguments") val arguments = Source.fromFile(parser.argumentFilePath, "UTF8").getLines.map(line => line.split("\t")(0)).toSet logger.info("5 arguments: " + arguments.take(5).mkString(", ")) // iterate over extractions logger.info("iterating over extractions") for (line <- extractions.getLines) { try { val Array(id, arg1String, relationString, arg2String, _, relationLemma, _, arg1Postag, relationPostag, arg2Postag, _, _, _, count, confidence, url, sentence) = line.split("\t", -1) val arg1Lemma = arg1String.split(" ").map(MorphaStemmer.lemmatize(_)).mkString(" ") val arg2Lemma = arg2String.split(" ").map(MorphaStemmer.lemmatize(_)).mkString(" ") // val rs = new RelationString(relationString, relationLemma, relationPostag) // rs.correctNormalization() val arg1 = zip3(arg1Postag.split("""\s+""").toList, arg1String.split("""\s+""").toList, arg1Lemma.split("""\s+""").toList) // val rel = zip3(rs.getPosPred.split("""\s+""").toList, rs.getPred.split("""\s+""").toList, rs.getNormPred.split("""\s+""").toList) val rel = zip3(relationPostag.split("""\s+""").toList, relationString.split("""\s+""").toList, relationLemma.split("""\s+""").toList) val arg2 = zip3(arg2Postag.split("""\s+""").toList, arg2String.split("""\s+""").toList, arg2Lemma.split("""\s+""").toList) implicit def t2mapper[A, B](t: (A, B)) = new { def map[R](f: A => R, g: B => R) = (f(t._1), g(t._2)) } val (arg1cleanPostags, arg1cleanStrings, arg1cleanLemmas) = cleanArg(arg1).unzip3 val (arg2cleanPostags, arg2cleanStrings, arg2cleanLemmas) = cleanArg(arg2).unzip3 val (relcleanPostags, relcleanStrings, relcleanLemmas) = { val stripped = stripPostag("RB.*", stripPostag("DT", rel)) val beIndex = rel.indexWhere(_._3 == "be") val penultimateAdjective = if (rel.length - beIndex >= 3 && (rel.drop(beIndex).head._3 startsWith "be") && rel.last._1 == "IN") { // return the penultimate if it's VERB ADJECTIVE PREPOSITION Some(rel.init.last) } else None (stripPostag("JJS?".r, stripped) ++ penultimateAdjective).unzip3 } val relcleanLemmaString = relcleanLemmas.mkString(" ") val arg1cleanLemmaString = arg1cleanLemmas.mkString(" ") val arg2cleanLemmaString = arg2cleanLemmas.mkString(" ") // ensure the extraction parts are relatively small if (relationLemma.length < 64 && // ensure the normalized relation string is a target targets.map(_ contains relcleanLemmaString).getOrElse(true) && // ensure arguments are proper (proper(arg1Postag.split("\\s+")) || proper(arg2Postag.split("\\s+"))) && arg1cleanLemmaString != arg2cleanLemmaString && // ensure the args are permissible arguments.contains(arg1cleanLemmaString) && arguments.contains(arg2cleanLemmaString) && // ensure the unnormalized relation is not negated !negated(relationLemma.split(" "))) { val lemmas = (arg1cleanLemmas ++ relationLemmas(relcleanLemmaString) ++ arg2cleanLemmas) filterNot lemmaBlacklist for (i <- 0 until count.toInt) { println(Iterable( relcleanLemmaString, arg1cleanLemmaString, arg2cleanLemmaString, lemmas.mkString(" "), arg1String, relationString, arg2String, arg1Postag, relationPostag, arg2Postag).mkString("\t")) } } } catch { case e => // e.printStackTrace } } } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/eval/GroupScoredBy.scala ================================================ package edu.knowitall.openparse.eval import java.io.File import edu.knowitall.common.Analysis import scopt.OptionParser /** Group scored extractions by precision and yield. * * @author Michael Schmitz */ object GroupScoredBy { def main(args: Array[String]) = { val parser = new OptionParser("groupscored") { var scoredFile: File = _ var column: Int = 2 arg("scored", "scored extractions", { path: String => scoredFile = new File(path) }) intOpt("k", "column", "column", { c: Int => column = c }) } if (parser.parse(args)) { require(parser.column >= 2, "column must be >= 2") val scores = Score.loadScoredFile(parser.scoredFile) val grouped = scores.groupBy(scored => scored.extra(parser.column - 2)) val scored = (for (group <- grouped) yield { val title = group._1 val scoreds = group._2 (group._1, Analysis.precision(scoreds.map(scored => scored.score.getOrElse(throw new IllegalArgumentException("unscored extraction: " + scored)))), group._2) }).toList.sortBy(tuple => (tuple._2, tuple._3.mkString("\t"))).reverse scored.foreach { item => println(item._2 + ": " + item._1) item._3.sortBy(scored => (scored.confidence, scored.toRow)).iterator.map(_.toRow).foreach(println) println() } } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/eval/PrecisionYield.scala ================================================ package edu.knowitall.openparse.eval import java.io.{PrintWriter, File} import edu.knowitall.common.Resource.using import edu.knowitall.common.Analysis import scopt.OptionParser /** Compute precision yield point from scored extractions. * * @author Michael Schmitz */ object PrecisionYield { abstract class Settings { def scoredFile: File def outputFile: Option[File] } def main(args: Array[String]) = { val settings = new Settings { var scoredFile: File = _ var outputFile: Option[File] = None } val parser = new OptionParser("precyield") { arg("scored", "scored extractions file", { path: String => settings.scoredFile = new File(path) }) argOpt("output", "output file", { path: String => settings.outputFile = Some(new File(path)) }) } if (parser.parse(args)) { run(settings) } } def run(settings: Settings) = { val scores = Score.loadScoredFile(settings.scoredFile).sortBy(_.confidence).reverse val input = scores.map(scored => ("%.4f".format(scored.confidence), scored.score.getOrElse(throw new IllegalArgumentException("unscored extraction: " + scored)))) using { settings.outputFile match { case Some(file) => new PrintWriter(file, "UTF8") case None => new PrintWriter(System.out) } } { writer => val py = Analysis.precisionYieldMeta(input) val area = Analysis.areaUnderCurve(py.map { case (conf, yld, pr) => (yld, pr) }) println("auc: " + area) for ((conf, yld, pr) <- Analysis.precisionYieldMeta(input)) { writer.println(conf + "\t" + yld + "\t" + pr) } } } } /** Merge precision yield points into a single file, * usually so they can be graphed together. * * @author Michael Schmitz */ object MergePYFiles { abstract class Settings { def files: List[File] } def main(args: Array[String]) { val settings = new Settings { var files: List[File] = Nil } val parser = new OptionParser("mergepy") { arglist("...", "input files", { file: String => settings.files = new File(file) :: settings.files }) } if (parser.parse(args)) { run(settings) } } def run(settings: Settings) { val points = for ((file, i) <- settings.files.zipWithIndex) yield { using(io.Source.fromFile(file, "UTF8")) { source => source.getLines.dropWhile(line => !(line contains "\t")).map { line => val Array(_, yld, prec) = line.split("\t", -1) (yld.toInt, (i, prec.toDouble)) }.toList } } println("\t" + settings.files.map(_.getName).mkString("\t")) points.flatten.sortBy(_._1).reverse.groupBy(_._1).toSeq.sortBy(_._1).reverse foreach { case (grp, seq) => var vec = Vector.fill[String](settings.files.size)("") seq.foreach { case (k, (i, v)) => vec = vec updated (i, "%1.4f" format v) } println(grp+"\t"+vec.mkString("\t")) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/eval/RankPatterns.scala ================================================ package edu.knowitall.openparse.eval import java.io.{PrintWriter, File} import edu.knowitall.common.Resource.using import scopt.OptionParser /** Read a scored file and rank the patterns by their precision and frequency. * * @author Michael Schmitz */ object RankPatterns { abstract class Settings { def scoredFile: File def outputFile: Option[File] } def main(args: Array[String]) = { val settings = new Settings { var scoredFile: File = _ var outputFile: Option[File] = None } val parser = new OptionParser("rankpat") { var scoredFile: File = _ arg("scored", "scored extractions file", { path: String => settings.scoredFile = new File(path) }) argOpt("output", "output file", { path: String => settings.outputFile = Some(new File(path)) }) } if (parser.parse(args)) { run(settings) } } def run(settings: Settings) = { val scores = Score.loadScoredFile(settings.scoredFile).sortBy(_.confidence).reverse val grouped = scores.groupBy(_.extra(0)) .mapValues { scoreds => val yld = scoreds.map(scored => if (scored.score.getOrElse(throw new IllegalArgumentException("unscored extraction: " + scored))) 1 else 0).sum val precision = yld.toDouble / scoreds.size.toDouble (precision, scoreds.size) } using { settings.outputFile match { case Some(file) => new PrintWriter(file, "UTF8") case None => new PrintWriter(System.out) } } { writer => for ((pattern, (p, y)) <- grouped.toSeq.sortBy(_._2).reverse) { writer.println(pattern+"\t"+p+"\t"+y) } } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/eval/Score.scala ================================================ package edu.knowitall.openparse.eval import java.io.{PrintWriter, File} import scala.io.Source import edu.knowitall.common.Resource.using import scopt.OptionParser /** A main method to annotate extractions, * using a gold set for previously scored extractions. * * @author Michael Schmitz */ object Score { abstract class Settings { def extractionFile: File def outputFile: File def goldFile: Option[File] def goldOutputFile: Option[File] def confidenceThreshold: Double def skipAll: Boolean def keepSkipped: Boolean } def main(args: Array[String]) = { object settings extends Settings { var extractionFile: File = _ var outputFile: File = _ var goldFile: Option[File] = None var goldOutputFile: Option[File] = None var confidenceThreshold = 0.0 var skipAll = false var keepSkipped = false } val parser = new OptionParser("scoreextr") { arg("extrs", "extractions", { path: String => settings.extractionFile = new File(path) }) arg("output", "scored output", { path: String => settings.outputFile = new File(path) }) opt("g", "gold", "gold set", { path: String => settings.goldFile = Some(new File(path)) }) opt("u", "goldoutput", "output for updated gold set", { path: String => settings.goldOutputFile = Some(new File(path)) }) doubleOpt("t", "threshold", "confidence threshold for considered extractions", { x: Double => settings.confidenceThreshold = x }) opt("skip-all", "don't prompt for items not in the gold set", { settings.skipAll = true }) opt("keep-skipped", "keep unannotated extractions in output file", { settings.keepSkipped = true }) } if (parser.parse(args)) { run(settings) } } def run(settings: Settings) { val gold = settings.goldFile match { case None => Map[String, Boolean]() case Some(goldFile) => GoldSet.load(goldFile) } val (scoreds, golden) = using(Source.fromFile(settings.extractionFile, "UTF8")) { source => score(source.getLines, gold, settings.confidenceThreshold, !settings.skipAll) } // print the scored extractions using(new PrintWriter(settings.outputFile, "UTF8")) { writer => for (scored <- scoreds.filter(scored => settings.keepSkipped || scored.score.isDefined)) { writer.println(scored.toRow) } } // output updated gold set settings.goldOutputFile match { case Some(file) => using(new PrintWriter(file, "UTF8")) { writer => golden.foreach { case (k, v) => writer.println((if (v) 1 else 0) + "\t" + k) } } case None => } } def loadScoredFile(file: File): Seq[Scored] = { using(Source.fromFile(file, "UTF8")) { source => source.getLines.map { line => Scored.fromRow(line) }.toList } } def score(lines: Iterator[String], gold: Map[String, Boolean], confidenceThreshold: Double, prompt: Boolean) = { def stringDistance(s1: String, s2: String): Int = { def minimum(i1: Int, i2: Int, i3: Int) = math.min(math.min(i1, i2), i3) val dist = Array.ofDim[Int](s1.length + 1, s2.length + 1) for (idx <- 0 to s1.length) dist(idx)(0) = idx for (jdx <- 0 to s2.length) dist(0)(jdx) = jdx for (idx <- 1 to s1.length; jdx <- 1 to s2.length) dist(idx)(jdx) = minimum ( dist(idx-1)(jdx ) + 1, dist(idx )(jdx-1) + 1, dist(idx-1)(jdx-1) + (if (s1(idx-1) == s2(jdx-1)) 0 else 1) ) dist(s1.length)(s2.length) } def suggest(extr: String) = { for { k <- gold.keys; if stringDistance(k, extr) < extr.length / 2 } yield ((k, gold(k))) } def promptScore(index: Int, extr: String, confidence: String, rest: Seq[Any]): Option[Boolean] = { println() System.out.println("Please score " + index + ": " + confidence + ":" + extr + ". (1/y/0/n/skip) ") if (rest.length > 0) println(rest.mkString("\t")) suggest(extr) foreach { case (k, v) => println("suggest: " + v + "\t" + k) } readLine match { case "0" | "y" => Some(false) case "1" | "n" => Some(true) case "s" | "skip" => None case _ => promptScore(index, extr, confidence, rest) } } var golden = gold val scored = for { (line, index) <- lines.zipWithIndex val Array(confidence, extr, rest @ _*) = line.split("\t") val conf = confidence.toDouble if (conf >= confidenceThreshold) val scoreOption = gold.get(extr) match { case Some(score) => Some(score) case None if prompt => promptScore(index, extr, confidence, rest) case None => None } } yield { scoreOption match { case Some(score) => // update golden set golden += extr -> score case None => } // output Scored(scoreOption, conf, extr, rest) } (scored.toList, golden) } } case class Scored(score: Option[Boolean], confidence: Double, extraction: String, extra: Seq[String]) { def toRow = (if (!score.isDefined) "" else if (score.get == true) "1" else "0")+"\t"+confidence+"\t"+extraction+"\t"+extra.mkString("\t") } object Scored { def fromRow(row: String) = { val parts = row.split("\t") val score = parts(0) match { case "1" => true case "0" => false case _ => throw new IllegalArgumentException("must be 1 or 0: " + parts(0)) } val confidence = parts(1).toDouble val extraction = parts(2) val extra = parts.drop(3) Scored(Some(score), confidence, extraction, extra) } } object GoldSet { def load(file: File) = { using(Source.fromFile(file, "UTF8")) { source => source.getLines.map { line => val parts = line.split("\t") parts(1) -> (if (parts(0) == "1") true else false) }.toMap } } def save(gold: Map[String, Boolean], file: File) = { using(new PrintWriter(file, "UTF8")) { writer => gold.foreach { case (extr, correct) => writer.println((if (correct) 1 else 0) + "\t" + extr) } } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/eval/StatisticalSignificance.scala ================================================ package edu.knowitall.openparse.eval import java.io.File import edu.knowitall.common.{Random, Analysis} import scopt.OptionParser /** Compute the statistical significance of scored extractions to a baseline. * * @author Michael Schmitz */ object StatisticalSignificance { abstract class Settings { def iterations: Int def systemFile: File def baselineFile: File } def main(args: Array[String]) { object settings extends Settings { var systemFile: File = _ var baselineFile: File = _ var iterations: Int = 1000 } val parser = new OptionParser("statsig") { arg("system", "scored extractions from the new system", { path: String => settings.systemFile = new File(path) }) arg("baseline", "scored extractions from the baseline system", { path: String => settings.baselineFile = new File(path) }) intOpt("i", "iterations", "number of iterations", { n: Int => settings.iterations = n }) } if (parser.parse(args)) { run(settings) } } /** * Uses the bootstrap test for statistical significance. * This is described in the following paper: * * http://maroo.cs.umass.edu/pub/web/getpdf.php?id=744 * * Note that this function is agnostic to the order of * `system` and `baseline`. * * @param system a metric for the system, i.e. AUC * @param baseline a metric for the baseline, i.e. AUC * @param sample a lambda that resamples the systems, returning the metric, i.e. AUC * @param iterations the number of iterations */ def bootstrapTestWithMetric(system: Double, baseline: Double, sample: ()=>(Double, Double), iterations: Int) = { val difference = math.abs(system - baseline) val sampled = for (i <- 0 until iterations) yield (sample()) val differences = sampled.map { case (sys, base) => math.abs(sys - base) } val average = differences.sum / differences.size.toDouble val normed = differences.map(_ - average) val pscore = normed.count(_ >= difference).toDouble / normed.size.toDouble pscore } /** * Uses the bootstrap test for statistical significance. * This is described in the following paper: * * http://maroo.cs.umass.edu/pub/web/getpdf.php?id=744 * * Note that this function is agnostic to the order of * `system` and `baseline`. * * @param system a metric for the system, i.e. AUC * @param baseline a metric for the baseline, i.e. AUC * @param sample a lambda that resamples the systems, returning the metric, i.e. AUC * @param iterations the number of iterations */ def bootstrapTestWithScores(system: Seq[Boolean], baseline: Seq[Boolean], metric: Seq[Boolean]=>Double, iterations: Int, rand: util.Random) = { def sample(extrs: Seq[Boolean]) = metric(extrs.map(extr=>Random.choose(extrs, extrs.size, rand))) bootstrapTestWithMetric(metric(system), metric(baseline), ()=>(sample(system), sample(baseline)), iterations) } def run(settings: Settings) { val rand = new util.Random def areaUnderCurve(scoreds: Seq[Scored]) = { val points = Analysis.precisionYieldMeta(scoreds.map(extr => (extr.confidence, extr.score.get))) Analysis.areaUnderCurve(points.map { case (conf, yld, prc) => (yld, prc) }) } val systemExtractionsAll: Seq[Scored] = Score.loadScoredFile(settings.systemFile).sortBy(-_.confidence) val baselineExtractionsAll: Seq[Scored] = Score.loadScoredFile(settings.baselineFile).sortBy(-_.confidence) val sentences = (systemExtractionsAll.map(_.extra(0)).toSet ++ baselineExtractionsAll.map(_.extra(0)).toSet).toSeq.take(50).toSet val systemExtractions = systemExtractionsAll.filter(extr => sentences.contains(extr.extra(0))) val baselineExtractions = baselineExtractionsAll.filter(extr => sentences.contains(extr.extra(0))) def sample(): (Double, Double) = { def helper(extrs: Seq[Scored]) = { val sent = sentences.map(extr=>Random.choose(sentences, sentences.size, rand)) val set = sent.flatMap(sent => extrs.filter(sent == _.extra(0))).toSeq.sortBy(_.confidence) val auc = areaUnderCurve(set) auc } (helper(systemExtractions), helper(baselineExtractions)) } val pscore = bootstrapTestWithMetric( areaUnderCurve(systemExtractions), areaUnderCurve(baselineExtractions), sample, settings.iterations) println(pscore) } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/extract/Extraction.scala ================================================ package edu.knowitall.openparse.extract import scala.collection.{SortedSet, Set} import edu.knowitall.collection.immutable.graph.pattern.Match import edu.knowitall.collection.immutable.graph.{Direction, Graph, DirectedEdge} import edu.knowitall.collection.immutable.Interval import edu.knowitall.openparse.GraphExpansions.{expand, components, augment} import edu.knowitall.openparse.OpenParse import edu.knowitall.tool.parse.graph.{DependencyPattern, DependencyNode, DependencyGraph} import edu.knowitall.ollie.Ollie.stemmer import edu.knowitall.tool.stem.Stemmer import Extraction.{Part, ClausalComponent, AdverbialModifier} import edu.knowitall.tool.parse.graph.LabelEdgeMatcher import edu.knowitall.collection.immutable.graph.pattern.DirectedEdgeMatcher /** A representation of an OpenParse extraction. * * @author Michael Schmitz */ abstract class Extraction(val relLemmas: Set[String]) { /** the text of the first argument */ def arg1Text: String /** the text of the relation */ def relText: String /** the text of the second argument */ def arg2Text: String def this(relText: String) = this(relText.split(" ").map(implicitly[Stemmer].lemmatize(_)).toSet -- OpenParse.LEMMA_BLACKLIST) override def equals(that: Any) = that match { case that: Extraction => (that canEqual this) && that.arg1Text == this.arg1Text && that.relText == this.relText && that.arg2Text == this.arg2Text case _ => false } def canEqual(that: Any) = that.isInstanceOf[Extraction] override def hashCode = arg1Text.hashCode + 39 * (relText.hashCode + 39 * arg2Text.hashCode) override def toString() = Iterable(arg1Text, relText, arg2Text).mkString("(", "; ", ")") def softMatch(that: Extraction) = (that.arg1Text.contains(this.arg1Text) || this.arg1Text.contains(that.arg1Text)) && this.relLemmas == that.relLemmas && (that.arg2Text.contains(this.arg2Text) || this.arg2Text.contains(that.arg2Text)) } /** A simple representation of an OpenParse extraction. * * @author Michael Schmitz */ class SimpleExtraction( override val arg1Text: String, override val relText: String, relLemmas: Set[String], override val arg2Text: String) extends Extraction(relLemmas) { def this(arg1Text: String, relText: String, arg2Text: String) = this(arg1Text, relText, relText.split(" ").map(implicitly[Stemmer].lemmatize(_)).toSet -- OpenParse.LEMMA_BLACKLIST, arg2Text) def replaceRelation(relation: String) = new SimpleExtraction(this.arg1Text, this.relText, this.relLemmas, this.arg2Text) } /** A more informative representation of an OpenParse extraction. * * @author Michael Schmitz */ class DetailedExtraction( val extractor: PatternExtractor, val `match`: Match[DependencyNode], val arg1: Part, val rel: Part, val arg2: Part, val clausal: Option[ClausalComponent] = None, val modifier: Option[AdverbialModifier] = None) extends Extraction(rel.text) { override def arg1Text = arg1.text override def relText = rel.text override def arg2Text = arg2.text def this(extractor: PatternExtractor, mch: Match[DependencyNode], arg1Nodes: SortedSet[DependencyNode], relNodes: SortedSet[DependencyNode], arg2Nodes: SortedSet[DependencyNode]) = this(extractor, mch, new Part(arg1Nodes), new Part(relNodes), new Part(arg2Nodes)) /** all the nodes in this extraction */ def nodes = arg1.nodes ++ rel.nodes ++ arg2.nodes /** all the edges in this extraction */ def edges = `match`.bipath.path def replaceRelation(relation: String) = new DetailedExtraction(extractor, `match`, this.arg1, Part(this.rel.nodes, relation), this.arg2, this.clausal, this.modifier) } object DetailedExtraction { def nodesToString(nodes: Iterable[DependencyNode]) = nodes.iterator.map(_.text).mkString(" ") } /** Includes logic for expanding relations and arguments. * * @author Michael Schmitz */ object Extraction { /** Representation of a part of an extraction. * * @author Michael Schmitz */ case class Part(nodes: SortedSet[DependencyNode], text: String) { def this(nodes: SortedSet[DependencyNode]) = { this(nodes, DetailedExtraction.nodesToString(nodes)) } def this(nodes: Iterable[DependencyNode]) = { this(SortedSet[DependencyNode]() ++ nodes, DetailedExtraction.nodesToString(nodes)) } def span = Interval.span(nodes.map(_.indices)) } object Part { def connections(m: Match[DependencyNode], node: DependencyNode): Set[Graph.Edge[DependencyNode]] = { m.edges.filter(edge => edge.source == node || edge.dest == node).toSet } def connections(m: Match[DependencyNode], nodes: Set[DependencyNode]): Set[Graph.Edge[DependencyNode]] = { m.edges.filter(edge => nodes.contains(edge.source) || nodes.contains(edge.dest)).toSet } def connections(m: Match[DependencyNode], nodes: Seq[DependencyNode]): Set[Graph.Edge[DependencyNode]] = { m.edges.filter(edge => nodes.contains(edge.source) || nodes.contains(edge.dest)).toSet } } case class ClausalComponent(rel: Part, arg: Part) { def text = arg.text + " " + rel.text } case class AdverbialModifier(contents: Part) { def text = contents.text } private val attributionPattern = DependencyPattern.deserialize("{old} nsubj> {arg}") private val conditionalPattern = DependencyPattern.deserialize("{old} nsubj> {arg}") def fromMatch(expand: Boolean)(graph: DependencyGraph, m: Match[DependencyNode], ex: PatternExtractor): Iterable[DetailedExtraction] = { def clausalComponent(node: DependencyNode, until: Set[DependencyNode]) = { attributionPattern.apply(graph.graph, node) match { case List(m) => assume(m.nodeGroups.get("rel").isDefined) assume(m.nodeGroups.get("arg").isDefined) val rel = m.nodeGroups("rel").node val arg = m.nodeGroups("arg").node val Part(expandedRelNodes, expandedRelText) = expandRelation(graph, rel, until + arg).head val expandedArg = expandArgument(graph, arg, until + rel) Some(ClausalComponent(Part(expandedRelNodes, expandedRelText), Part(expandedArg, DetailedExtraction.nodesToString(expandedArg)))) case _ => None } } def adverbialModifier(node: DependencyNode, until: Set[DependencyNode]): Option[AdverbialModifier] = { val neighbors = graph.graph.neighbors(node, dedge => dedge.dir == Direction.Down && dedge.edge.label == "advcl") val nodes = neighbors.flatMap(graph.graph.inferiors(_)) if (nodes.isEmpty) None else { val span = Interval.span(nodes.map(_.indices)) val clause = graph.nodes.filter(node => span.superset(node.indices)) Some(AdverbialModifier(Part(clause, DetailedExtraction.nodesToString(clause)))) } } val groups = m.nodeGroups val rels = groups.filter(_._1 startsWith "rel").toSeq.sortBy(_._1).map(_._2.node) if (rels.isEmpty) (throw new IllegalArgumentException("no rel: " + m)) val arg1 = groups.get("arg1").map(_.node) getOrElse (throw new IllegalArgumentException("no arg1: " + m)) val arg2 = groups.get("arg2").map(_.node) getOrElse (throw new IllegalArgumentException("no arg2: " + m)) val expandedArg1 = if (expand) expandArgument(graph, arg1, rels.toSet) else SortedSet(arg1) val expandedArg2 = if (expand) expandArgument(graph, arg2, rels.toSet) else SortedSet(arg2) val expandRels = // hack to exclude rel rel extractions with a second nsubj if (rels.size > 0 && rels.tail.exists(rel => graph.graph.dedges(rel).exists(dedge => dedge.dir == Direction.Down && dedge.edge.label == "nsubj"))) { Set.empty } else if (expand) { import scalaz._ import Scalaz._ val expansions = rels.map(rel => expandRelation(graph, rel, expandedArg1 ++ expandedArg2).toList).toList.sequence expansions.map(expansion => Part(expansion.map(_.nodes).reduce(_ ++ _), expansion.map(_.text).mkString(" "))) } else { Set(Part(SortedSet.empty[DependencyNode] ++ rels, rels.map(_.text).mkString(" "))) } for { Part(expandedRelNodes, expandedRelText) <- expandRels val nodes = expandedArg1 ++ expandedArg2 ++ expandedRelNodes val clausal = rels.flatMap(rel => clausalComponent(rel, nodes)).headOption val modifier = rels.flatMap(rel => adverbialModifier(rel, nodes)).headOption // arguments don't overlap if (!(Interval.span(expandedArg1.map(_.indices)(scala.collection.breakOut)) intersects Interval.span(expandedArg2.map(_.indices)(scala.collection.breakOut)))) } yield ( new DetailedExtraction(ex, m, new Part(expandedArg1), Part(expandedRelNodes, expandedRelText), new Part(expandedArg2), clausal = clausal, modifier = modifier) ) } private val argumentExpansionLabels = Set("det", "prep_of", "amod", "num", "number", "nn", "poss", "quantmod", "neg") def expandArgument(graph: DependencyGraph, node: DependencyNode, until: Set[DependencyNode]): SortedSet[DependencyNode] = { def expandNode(node: DependencyNode) = { val expansion = expand(graph, node, until, argumentExpansionLabels) if (expansion.exists(_.isProperNoun)) expansion else expansion ++ components(graph, node, Set("rcmod", "infmod", "partmod", "ref", "prepc_of"), until, false).flatten } // expand over any conjunction/disjunction edges to non-verbs val nodes = graph.graph.connected(node, (dedge: DirectedEdge[DependencyNode]) => !(dedge.end.postag startsWith "VB") && (dedge.edge.label == "conj_and" || dedge.edge.label == "conj_or")) if (nodes.size == 1) { // there are no conjunctive edges expandNode(node) } else { val flat = nodes.map(expandNode).flatten val span = Interval.span(flat.map(_.indices).toSeq) // take the nodes that cover all the nodes found graph.nodes.filter(node => span.superset(node.indices)) } } /** Expand the relation nodes of a match. * * Multiple parts can be returned if there are multiple dobj or iobjs. * * @return parts the part (or multiple parts) that describes the relation */ def expandRelation(graph: DependencyGraph, node: DependencyNode, until: Set[DependencyNode]): Set[Part] = { // count the adjacent dobj edges. We will only expand across // dobj components if there is exactly one adjacent dobj edge. // This edge may already be used, but in that case we won't // expand over it because of the until set. val dobjCount = graph.graph.edges(node).count(_.label == "dobj") val iobjCount = graph.graph.edges(node).count(_.label == "iobj") var attachLabels = Set[String]() if (dobjCount == 1) attachLabels += "dobj" if (iobjCount == 1) attachLabels += "iobj" /* * acomp: "She looks beautiful on Thursday." */ def pred(edge: Graph.Edge[DependencyNode]) = // make sure we don't re-add the relation node edge.dest != node && ( // attach adverbs edge.label == "advmod" && edge.dest.postag == "RB" || edge.label == "aux" || edge.label == "cop" || edge.label == "auxpass" || edge.label == "prt" || edge.label == "acomp") // expand across noun label for relational nouns // i.e. "He is the *best* president of the USA" val expandNounLabels = if (node.postag startsWith "NN") expand(graph, node, until, argumentExpansionLabels) else expand(graph, node, until, Set("det", "amod", "num", "number", "nn", "poss", "quantmod", "neg")) // modifiers on copulars are stored on a different node // i.e. in "he *will* be the president" val cops = graph.graph.predecessors(node, (e: Graph.Edge[DependencyNode])=>e.label == "cop").headOption val expandCopLabels = cops.map(cop => augment(graph, cop, until, pred)).getOrElse(List.empty) def f(s: Set[List[DependencyNode]]): Set[List[DependencyNode]] = if (s.isEmpty) Set(List()) else s val dobjs = f(components(graph, node, Set("dobj"), until, true)) val iobjs = f(components(graph, node, Set("iobj"), until, true)) for (dobj <- dobjs; iobj <- iobjs) yield { val expansion = expandCopLabels ++ (expandNounLabels :: // make sure that we don't use a label that was // already captured by expandNounlabels. This // can happen when a verb edges goes between two // noun labels. ((augment(graph, node, until, pred).map(_ -- expandNounLabels)) :+ // add subcomponents (SortedSet[DependencyNode]() ++ dobj) :+ (SortedSet[DependencyNode]() ++ iobj)).filterNot { c => // don't add empty components c.isEmpty || // don't add components with just "who" or "whom" c.size == 1 && c.headOption.map(_.postag == "WP").getOrElse(false) }) val sorted = expansion.sortBy(nodes => Interval.span(nodes.map(_.indices))) // perform a more complicated node->text transformation val texts = sorted.map(DetailedExtraction.nodesToString(_)) Part(expansion.reduce(_ ++ _), texts.mkString(" ")) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/extract/GeneralExtractor.scala ================================================ package edu.knowitall.openparse.extract import org.slf4j.LoggerFactory import edu.knowitall.collection.immutable.graph.pattern.{Pattern, Match} import edu.knowitall.collection.immutable.graph.Graph import edu.knowitall.tool.parse.graph.{DependencyPattern, DependencyNode, DependencyGraph} import edu.knowitall.ollie.Ollie.stemmer import GeneralExtractor.logger import edu.knowitall.openparse.ExtractorPattern /** An extractor that is purely specified by a pattern. * * @param pattern the pattern to extract * @param conf the confidence of this extractor * * @author Michael Schmitz */ class GeneralExtractor(pattern: ExtractorPattern, val conf: Double) extends PatternExtractor(pattern) { import GeneralExtractor._ def this(pattern: Pattern[DependencyNode], conf: Double) = this(new ExtractorPattern(pattern), conf) protected def extractWithMatches(dgraph: DependencyGraph)(implicit buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction], validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean) = { // apply pattern and keep valid matches val matches = pattern(dgraph.graph) if (!matches.isEmpty && logger.isDebugEnabled) logger.debug("matches: " + matches.mkString(", ")) val filtered = matches.filter(validMatch(dgraph.graph)) if (!filtered.isEmpty && logger.isDebugEnabled) logger.debug("filtered: " + filtered.mkString(", ")) for (m <- filtered; extr <- buildExtraction(dgraph, m, this)) yield { (extr, m) } } override def extract(dgraph: DependencyGraph)(implicit buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction], validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean) = { logger.debug("pattern: " + pattern) val extractions = this.extractWithMatches(dgraph).map(_._1) if (!extractions.isEmpty) logger.debug("extractions: " + extractions.mkString(", ")) extractions } override def confidence(extr: Extraction): Double = { this.conf } /** A maximum confidence for any extraction from this extractor. * This is used for optimization. If the minimum confidence is * larger than the threshold, we don't need to run this extractor. */ override def maximumConfidence: Double = this.conf } case object GeneralExtractor extends PatternExtractorType { val logger = LoggerFactory.getLogger(this.getClass) def fromLines(lines: Iterator[String]): List[GeneralExtractor] = { val patterns: List[(Pattern[DependencyNode], Int)] = lines.map { line => line.split("\t") match { // full information specified case Array(pat, count) => (DependencyPattern.deserialize(pat), count.toInt) // assume a count of 1 if nothing is specified case Array(pat) => logger.warn("warning: pattern has no count: " + pat); (DependencyPattern.deserialize(pat), 1) case _ => throw new IllegalArgumentException("line must have one or two columns: " + line) } }.toList (for ((p, conf) <- patterns) yield { new GeneralExtractor(new ExtractorPattern(p), conf.toDouble) }).toList } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/extract/PatternExtractor.scala ================================================ package edu.knowitall.openparse.extract import java.io.File import scala.io.Source import edu.knowitall.collection.immutable.graph.pattern.{Pattern, Match} import edu.knowitall.collection.immutable.graph.Graph import edu.knowitall.common.Resource.using import edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph} import javax.naming.OperationNotSupportedException import edu.knowitall.collection.immutable.graph.pattern.CaptureNodeMatcher import edu.knowitall.openparse.ExtractorPattern /** An superclass for extractors based on patterns. * * @param pattern the pattern to extract * * @author Michael Schmitz */ abstract class PatternExtractor(val pattern: ExtractorPattern) { def extract(dgraph: DependencyGraph)(implicit buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction], validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean): Iterable[DetailedExtraction] def confidence(extr: Extraction): Double /** A maximum confidence for any extraction from this extractor. * This is used for optimization. If the minimum confidence is * larger than the threshold, we don't need to run this extractor. */ def maximumConfidence: Double override def toString = pattern.toString def tabSerialize: String = throw new OperationNotSupportedException() def prepMismatch: Boolean = false } object PatternExtractor { def tabDeserialize(seq: Seq[String]): (PatternExtractor, Seq[String]) = { seq(0).toLowerCase match { case "template" => TemplateExtractor.tabDeserialize(seq.drop(1)) } } } abstract class PatternExtractorType { def fromFile(file: File): Seq[PatternExtractor] = { using (Source.fromFile(file, "UTF8")) { source => fromLines(source.getLines) } } def fromLines(lines: Iterator[String]): Seq[PatternExtractor] def name = this.getClass.getSimpleName } object PatternExtractorType { def apply(string: String) = string match { case "general" => GeneralExtractor case "template" => TemplateExtractor case "specific" => SpecificExtractor case _ => throw new IllegalArgumentException("unknown extractor: " + string) } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/extract/SpecificExtractor.scala ================================================ package edu.knowitall.openparse.extract import scala.Array.canBuildFrom import edu.knowitall.collection.immutable.graph.pattern.{Pattern, Match} import edu.knowitall.collection.immutable.graph.Graph import edu.knowitall.tool.parse.graph.{DependencyNode, DependencyGraph} import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.openparse.ExtractorPattern /** An extractor that is specified only with a pattern * but only works for specific relation lemmas. * * @param relation the resulting relation string * @param relationLemmas the acceptible matched lemmas * @param pattern the pattern to extract * @param conf the confidence of this extractor * * @author Michael Schmitz */ class SpecificExtractor(val relation: String, val relationLemmas: List[String], pattern: ExtractorPattern, conf: Double) extends GeneralExtractor(pattern, conf) { def this(relation: String, relationLemmas: List[String], pattern: Pattern[DependencyNode], conf: Double) = this(relation, relationLemmas, new ExtractorPattern(pattern), conf) override def extract(dgraph: DependencyGraph)(implicit buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction], validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean) = { val extractions = super.extract(dgraph) extractions.withFilter{ extr => val extrRelationLemmas = extr.rel.text.split(" ").map(MorphaStemmer.lemmatize(_)) relationLemmas.forall(extrRelationLemmas.contains(_)) }.map(_.replaceRelation(relation)) } } case object SpecificExtractor extends PatternExtractorType { def fromLines(lines: Iterator[String]) = throw new UnsupportedOperationException } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/extract/TemplateExtractor.scala ================================================ package edu.knowitall.openparse.extract import scala.util.matching.Regex import org.slf4j.LoggerFactory import edu.knowitall.collection.immutable.graph.pattern.{Pattern, Match} import edu.knowitall.collection.immutable.graph.Graph import edu.knowitall.tool.parse.graph.{DependencyPattern, DependencyNode, DependencyGraph} import Template.group import edu.knowitall.ollie.Ollie.stemmer import edu.knowitall.tool.postag.Postagger import edu.knowitall.tool.parse.graph.RegexEdgeMatcher import edu.knowitall.tool.parse.graph.LabelEdgeMatcher import edu.knowitall.openparse.ExtractorPattern /** An extractor that is specified by a pattern and a template. * the template can add a "to be" and/or preposition word around * the relation. It can also change the preposition word to another * preposition (i.e., switch "of" to "in"). * * @param template a template in which to put the relation words * @param pattern the pattern to extract * @param conf the confidence of this extractor * * @author Michael Schmitz */ class TemplateExtractor(val template: Template, pattern: ExtractorPattern, conf: Double) extends GeneralExtractor(pattern, conf) { def this(template: Template, pattern: Pattern[DependencyNode], conf: Double) = this(template, new ExtractorPattern(pattern), conf) override def extract(dgraph: DependencyGraph)(implicit buildExtraction: (DependencyGraph, Match[DependencyNode], PatternExtractor)=>Iterable[DetailedExtraction], validMatch: Graph[DependencyNode]=>Match[DependencyNode]=>Boolean) = { val extractions = super.extractWithMatches(dgraph) extractions.map{ case (extr, m) => template(extr, dgraph, m) } } override def tabSerialize = Iterable("Template", template.serialize, pattern.serialize, conf.toString).mkString("\t") override def prepMismatch: Boolean = { val trailingPrep = TemplateExtractor.trailingPreposition.findFirstIn(template.serialize) val lastPatternPrep = pattern.baseEdgeMatchers.flatMap { case m: RegexEdgeMatcher if m.labelRegex == new Regex("""prep_(.*)""") => Some("{prep}") case m: LabelEdgeMatcher if m.label startsWith "prep_" => Some(m.label.drop(5)) case _ => None }.lastOption trailingPrep == lastPatternPrep } } case object TemplateExtractor extends PatternExtractorType { val logger = LoggerFactory.getLogger(this.getClass) private val trailingPreposition = new Regex("\\s(?:" + Postagger.prepositions.mkString("|") + "|\\{prep\\})$") override def fromLines(lines: Iterator[String]): List[PatternExtractor] = { val patterns: List[(Template, Pattern[DependencyNode], Double)] = lines.map { line => line.split("\t") match { // full information specified case Array(template, pat, conf) => (Template.deserialize(template), DependencyPattern.deserialize(pat), conf.toDouble) // assume a count of 1 if nothing is specified case Array(template, pat) => logger.warn("warning: pattern has no confidence: " + pat); (Template.deserialize(template), DependencyPattern.deserialize(pat), 1.0) case _ => throw new IllegalArgumentException("line must have two or three columns: " +line) } }.toList val maxCount = patterns.maxBy(_._3)._3 (for ((template, pattern, conf) <- patterns) yield { new TemplateExtractor(template, new ExtractorPattern(pattern), conf) }).toList } def tabDeserialize(string: String) = { val parts = string.split("\t") } def tabDeserialize(parts: Seq[String]): (TemplateExtractor, Seq[String]) = { val Seq(templateString, patternString, confString, rest @ _*) = parts val template = Template.deserialize(templateString) val pattern = new ExtractorPattern(DependencyPattern.deserialize(patternString)) val conf = confString.toDouble (new TemplateExtractor(template, pattern, conf), rest) } } case class Template(template: String, be: Boolean) { import Template._ def apply(extr: DetailedExtraction, dgraph: DependencyGraph, m: Match[DependencyNode]) = { def matchGroup(name: String): String = name match { case "rel" => extr.relText case "arg1" => extr.arg1Text case "arg2" => extr.arg2Text case _ => m.groups(name).text } // don't add the be if we attach a verb using a cop, aux, or auxpass edge. // there are a lot of examples where adding "be" makes it very messy // "She has practiced law, with Foo, Bar." // don't want: (Bar; be has practiced with; Foo) // This is somewhat of a hack that makes bad patterns look less bad. val prefix = if (be && !(dgraph.graph.neighbors(m.nodeGroups.getOrElse("rel", m.nodeGroups("rel1")).node, dedge => (dedge.edge.label startsWith "aux") || dedge.edge.label == "cop") filter (_.postag startsWith "VB") exists (neighbor => extr.rel.nodes contains neighbor))) { "be" } else "" // pull out the modals because they must preceed the prefix // also include "to" val modals = extr.rel.nodes.filter(node => (node.postag startsWith "MD") || (node.postag == "TO")) // horrible escape is required. See JavaDoc for Match.replaceAll // or https://issues.scala-lang.org/browse/SI-5437 var rel = group.replaceAllIn(template, (gm: Regex.Match) => matchGroup(gm.group(1)) .replaceAll("_", " ") .replaceAll("""\\""", """\\\\""") .replaceAll("""\$""", """\\\$""")) if (!prefix.isEmpty) { if (modals.isEmpty) { rel = prefix + " " + rel } else { val regex = new Regex("(^.*\\b(?:" + modals.iterator.map(_.text).mkString("|") + "))\\b") rel = regex.replaceAllIn(rel, "$1 " + prefix) } } extr.replaceRelation(rel) } override def toString = (if (be) "be " else "") + template def serialize = this.toString } object Template { val group = """\{(.*?)}""".r def deserialize(string: String) = { if (string.startsWith("be ")) { Template(string.drop(3), true) } else { Template(string, false) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/template/BuildTemplates.scala ================================================ package edu.knowitall.openparse.template import java.io.{PrintWriter, File} import scala.Option.option2Iterable import scala.annotation.elidable import scala.collection.immutable import scala.io.Source import scala.util.matching.Regex import org.slf4j.LoggerFactory import edu.knowitall.collection.immutable.graph.pattern.{Matcher, ConjunctiveNodeMatcher, DirectedEdgeMatcher, CaptureEdgeMatcher} import edu.knowitall.collection.immutable.Bag import edu.knowitall.common.Resource.using import edu.knowitall.common.enrich.Traversables.traversableOncePairTo import edu.knowitall.openparse.{SlotMatcher, RelationMatcher, ExtractorPattern, ArgumentMatcher} import edu.knowitall.tool.parse.graph.{RegexNodeMatcher, RegexEdgeMatcher, PostagNodeMatcher, LabelEdgeMatcher, DependencyPattern, DependencyNode} import edu.knowitall.tool.postag.Postagger import edu.knowitall.ollie.Ollie.stemmer import scalaz.Scalaz._ import scalaz._ import Semigroup._ import scopt.OptionParser /** A main method for building template extractors from * a bootstrapping set of relations, patterns, and their count. * * @author Michael Schmitz */ object BuildTemplates { val logger = LoggerFactory.getLogger(this.getClass) implicit def BagMonoid[T]: Monoid[Bag[T]] = new Monoid[Bag[T]] { def append(f1: Bag[T], f2: => Bag[T]) = f1 ++ f2 def zero: Bag[T] = Bag.empty[T] } /* implicit def BagSemigroup[T]: Semigroup[Bag[T]] = semigroup(_ ++ _) implicit def BagZero[T]: Zero[Bag[T]] = zero(Bag.empty[T]) implicit def BagPure: Pure[Bag] = new Pure[Bag] { def pure[T](x: => T) = Bag[T](x) } */ abstract class Settings { def sourceFile: File def destFile: Option[File] def templateFile: Option[File] def minCount: Int def relationSemantics: Boolean def slotSemantics: Boolean def debug: Option[File] def fromHistogram: Boolean def filterNnEdge: Boolean def filterAmodEdge: Boolean def filterSideRel: Boolean def filterPrepMismatch: Boolean val minimumSemanticsCount = 5 } def main(args: Array[String]) { val settings = new Settings { var sourceFile: File = null var destFile: Option[File] = None var templateFile: Option[File] = None var minCount: Int = 5 var semantics: Boolean = false var debug: Option[File] = None var fromHistogram: Boolean = false var filterNnEdge = false var filterAmodEdge = false var filterSideRel = false var filterPrepMismatch = false var relationSemantics = false var slotSemantics = false } val parser = new OptionParser("buildtemp") { arg("source", "file with source relation, pattern pairs", { path: String => settings.sourceFile = new File(path) }) argOpt("dest", "optional parameter to specify output to a file", { path: String => settings.destFile = Some(new File(path)) }) opt("t", "reltemplates", "relation templates", { path: String => settings.templateFile = Some(new File(path)) }) intOpt("n", "minimum", "minimum frequency for a pattern", { min: Int => settings.minCount = min }) opt("relation-semantics", "add lexical restrictions", { settings.relationSemantics = true }) opt("slot-semantics", "add lexical restrictions", { settings.slotSemantics = true }) opt("filter-nnedge", "filter nn edges", {settings.filterNnEdge = true} ) opt("filter-amodedge", "filter amod edges", {settings.filterAmodEdge = true} ) opt("filter-siderel", "filter relation on side", {settings.filterSideRel = true} ) opt("filter-prepmismatch", "filter prep mismatch", {settings.filterPrepMismatch = true} ) opt("from-histogram", "input is the histogram", { settings.fromHistogram = true }) opt("d", "debug", "directory to output debug files", { path: String => settings.debug = Some(new File(path)) }) } if (parser.parse(args)) { run(settings) } } def order(items: TraversableOnce[((Any, Any), Attrib)]) = items.toSeq.sortBy(item => (-item._2.count, item._1.toString)) def output(file: File, items: TraversableOnce[((Any, Any), Attrib)]): Unit = { using (new PrintWriter(file, "UTF8")) { pw => outputDetailed(pw, items) } } def output(writer: PrintWriter, items: TraversableOnce[((Any, Any), Attrib)]): Unit = { items.foreach { case ((rel, pattern), attrib) => writer.println(rel + "\t" + pattern + "\t" + attrib.count) } } def outputDetailed(file: File, items: TraversableOnce[((Any, Any), Attrib)]): Unit = { using (new PrintWriter(file, "UTF8")) { pw => outputDetailed(pw, items) } } def outputDetailed(writer: PrintWriter, items: TraversableOnce[((Any, Any), Attrib)]): Unit = { items.foreach { case ((rel, pattern), attrib) => writer.println(rel + "\t" + pattern + "\t" + attrib.count + "\t" + attrib.slots.asMap.mkString("\t")) } } def outputLookup[K, V](file: File, items: Iterable[(K, Iterable[V])]) = { using (new PrintWriter(file, "UTF8")) { pw => items.foreach { case (key, values) => pw.println(key+"\t"+values.mkString("\t")) } } } case class Attrib(count: Int, slots: Bag[String] = Bag.empty, rels: immutable.SortedSet[String] = immutable.SortedSet.empty, mismatch: Boolean = false) { def plus(that: Attrib) = Attrib(this.count + that.count, this.slots merge that.slots, this.rels ++ that.rels, this.mismatch | that.mismatch) } implicit def AttribMonoid: Monoid[Attrib] = new Monoid[Attrib] { def append(f1: Attrib, f2: => Attrib) = f1 plus f2 def zero: Attrib = Attrib(0, Bag.empty[String], immutable.SortedSet.empty[String]) } def run(settings: Settings) { val prepRegex = new Regex("^(.*?)\\s+((?:"+Postagger.prepositions.map(_.replaceAll(" ", "_")).mkString("|")+"))$") def relPrep(rel: String) = { rel match { case prepRegex(rel, prep) => Some(prep) case rel => None } } def relationOnSide: PartialFunction[ExtractorPattern, Boolean] = { case pattern => pattern.nodeMatchers.head.isInstanceOf[RelationMatcher] || pattern.nodeMatchers.tail.isInstanceOf[RelationMatcher] } def nnEdge: PartialFunction[ExtractorPattern, Boolean] = { case pattern => pattern.baseEdgeMatchers.exists { case m: LabelEdgeMatcher => m.label == "nn" case _ => false } } def amodEdge: PartialFunction[ExtractorPattern, Boolean] = { case pattern => pattern.baseEdgeMatchers.exists { case m: LabelEdgeMatcher => m.label == "amod" case _ => false } } def prepMismatch: PartialFunction[((String, ExtractorPattern)), Boolean] = { case ((rel, pattern)) => relPrep(rel) match { case Some(relationPrep) => val edgePreps = pattern.baseEdgeMatchers.collect { case m: LabelEdgeMatcher if m.label startsWith "prep_" => m.label.drop(5).replaceAll("_", " ") } edgePreps.exists(_ != relationPrep) case None => false } } // extract lemmas from a relation string def baseRelLemmas(rel: String): Option[String] = { def clean(rel: String) = { rel.split("\\s+").iterator.filterNot(_.isEmpty).filterNot(_=="be").filterNot(_=="{prep}").toSeq.lastOption.map(Some(_)).getOrElse(None) } rel match { case prepRegex(rel, prep) => clean(rel) case rel => clean(rel) } } // lookup a relation in a map to get the template val templatesMap = settings.templateFile.map { templateFile => using(Source.fromFile(templateFile)) { source => source.getLines.map { line => val Array(rel, template) = line.split("\t") (rel, template) }.toMap.withDefault((x: String)=>x) } }.getOrElse(Map().withDefault((x: String)=>x)) // build a template from the supplied relation def buildTemplate(string: String) = { // build a template from the supplied relation WITHOUT a preposition def templateFromRel(rel: String) = rel.split("\\s+").iterator.map { case s@"be" => s case s@"{prep}" => s case s => "{rel}" }.mkString(" ") templatesMap.get(string).getOrElse { string match { case prepRegex(rel, prep) => templateFromRel(rel) + " " + prep case rel => templateFromRel(rel) } } } def buildHistogram(file: File) = { val serializedHistogram = using(Source.fromFile(file)) { source => if (settings.fromHistogram) { // the input is the histogram so just read it // this fork exists because creating this histogram // is the slowest part of building templates. source.getLines.map { line => val Array(rel, pattern, count, slots @ _*) = line.split("\t") ((rel, pattern), Attrib(count.toInt, slots=Bag.from(slots))) }.toMap } else { // create the histogram from the patterned file source.getLines.map { line => val Array(rel, _, _, _, pattern, _, _, slots @ _*) = line.split("\t") val slotBag: Bag[String] = if (settings.slotSemantics) Bag.from(slots.iterator.filter(_.forall(_.isLetter))) else Bag.empty ((rel, pattern), Attrib(1, slotBag, immutable.SortedSet.empty)) }.mergeKeys } } // deserialize the patterns after creating the histogram // for efficiency val histogram = serializedHistogram.map { case ((rel, pattern), attrib) => ((rel, new ExtractorPattern(DependencyPattern.deserialize(pattern))), attrib) } assume(serializedHistogram.size == histogram.size) histogram } def generalizePrepositions(histogram: Iterable[((String, ExtractorPattern), Attrib)]) = { val result = histogram.iterator.map { case item @ ((rel, pattern), attrib) => val relPrepOption = relPrep(rel) val patternContainsPrep = pattern.baseEdgeMatchers.exists { case m: LabelEdgeMatcher if m.label startsWith "prep_" => true case _ => false } val mismatch = prepMismatch(rel, pattern) || patternContainsPrep && !relPrepOption.isDefined val template = rel match { case prepRegex(rel, prep) => // if the pattern contains a preposition too, substitute // with the capture group name if (patternContainsPrep && !mismatch) rel + " {prep}" // otherwise, keep the preposition else rel + " " + prep case _ => rel } def target(relPrep: String)(m: Matcher[DependencyNode]): Boolean = m match { case m: DirectedEdgeMatcher[_] => m.matcher match { case sub: LabelEdgeMatcher if sub.label.startsWith("prep_") => sub.label.drop(5).replaceAll("_", " ") == relPrep case _ => false } case _ => false } import scalaz._ import Scalaz._ val newMatchers = if (!patternContainsPrep || !relPrepOption.isDefined || mismatch) None else (for { relPrep <- relPrepOption zipper <- pattern.matchers.zipperEnd found <- zipper findPrevious target(relPrep) } yield { found.modify { m => new CaptureEdgeMatcher[DependencyNode]("prep", new DirectedEdgeMatcher[DependencyNode](m.asInstanceOf[DirectedEdgeMatcher[_]].direction, new RegexEdgeMatcher("prep_(.*)".r))) }.toStream.toList }).orElse(throw new IllegalStateException(rel + " -> " + relPrepOption.toString + " -> " + pattern)) ((template, newMatchers.map(matchers => new ExtractorPattern(new DependencyPattern(matchers))).getOrElse(pattern)), attrib.copy(mismatch=mismatch)) }.mergeKeys assume(result.values.iterator.map(_.count).sum == histogram.iterator.map(_._2.count).sum) result } def generalizeRelation(histogram: Iterable[((String, ExtractorPattern), Attrib)]) = { // we need to handle semantics val groups = histogram.toSeq.map { case item @ ((rel, pattern), attrib) => val template = buildTemplate(rel) ((template, pattern), if (settings.relationSemantics) attrib.copy(rels = immutable.SortedSet[String]() ++ baseRelLemmas(rel)) else attrib) }.toSeq.groupBy(_._1).flatMap { case (key @ (template, pattern), seqs) => val attribs = seqs.map(_._2) val attrib = attribs.reduce(_ plus _) if (settings.relationSemantics && (nnEdge(pattern) || amodEdge(pattern) || relationOnSide(pattern) || attrib.mismatch)) { val values = attribs.filter(_.count > settings.minimumSemanticsCount) if (values.isEmpty || values.iterator.flatMap(_.rels).isEmpty) None else Some((key, (true, values.reduce(_ plus _)))) } else { Some(key, (false, attrib)) } } val result = groups.map { case ((template, pattern), (true, attrib)) => val nnedge = nnEdge(pattern) val regex = attrib.rels.toSeq.mkString("|").r val matchers = pattern.matchers.map { case m: RelationMatcher => new RelationMatcher("rel", new ConjunctiveNodeMatcher(Set(m.matcher, new RegexNodeMatcher(regex)))) case m: ArgumentMatcher if nnedge => new ArgumentMatcher(m.alias, new PostagNodeMatcher("NNP")) case m => m } ((template, new ExtractorPattern(matchers)), attrib) case ((template, pattern), (false, attrib)) => ((template, pattern), attrib) }.mergeKeys if (!settings.relationSemantics) { assume(result.values.iterator.map(_.count).sum == histogram.iterator.map(_._2.count).sum) } result } def addSlotSemantics(histogram: Iterable[((String, ExtractorPattern), Attrib)]) = { if (settings.slotSemantics) { histogram.flatMap { case ((rel, pattern), attrib) => val hasSlot = pattern.matchers.exists(_.isInstanceOf[SlotMatcher]) if (!hasSlot) Some(((rel, pattern), attrib)) else { val semantics = attrib.slots.asMap.filter(_._2 >= 5) if (semantics.isEmpty) None else { val matchers = pattern.matchers.map { case m: SlotMatcher => new SlotMatcher(m.alias, new ConjunctiveNodeMatcher(m.matcher, new RegexNodeMatcher(semantics.keys.toSeq.sorted.mkString("|").r))) case m => m } Some((rel, new ExtractorPattern(matchers)), attrib) } } } } else histogram } logger.info("Building histogram...") val histogram = buildHistogram(settings.sourceFile) settings.debug map { dir => outputDetailed(new File(dir, "histogram.txt"), order(histogram)) } logger.info("Removing bad templates...") val filtered = histogram filterNot { case ((rel, pattern), count) => settings.filterNnEdge && nnEdge(pattern) || settings.filterAmodEdge && amodEdge(pattern) || settings.filterSideRel && relationOnSide(pattern) || settings.filterPrepMismatch && prepMismatch((rel, pattern)) } settings.debug.map { dir => output (new File(dir, "filtered-keep.txt"), filtered) //output (new File(dir, "filtered-del-edge.txt"), (histogram.iterator filter relationOnSide).toSeq.sortBy(-_._2)) //output (new File(dir, "filtered-del-nn.txt"), (histogram.iterator filter nnEdge).toSeq.sortBy(-_._2)) //output (new File(dir, "filtered-del-prepsmatch.txt"), (histogram.iterator filterNot prepsMatch).toSeq.sortBy(-_._2)) } logger.info((histogram.values.iterator.map(_.count).sum - filtered.values.iterator.map(_.count).sum).toString + " items removed.") logger.info("Generalizing prepositions...") val generalizedPreposition = generalizePrepositions(filtered) settings.debug.map { dir => output(new File(dir, "generalized-prep.txt"), order(generalizedPreposition)) } logger.info("Generalizing relations...") val generalizedRelation = generalizeRelation(generalizedPreposition) settings.debug.map { dir => output(new File(dir, "generalized-rel.txt"), order(generalizedRelation)) } logger.info("Adding slot semantics...") val withSlotSemantics = addSlotSemantics(generalizedRelation) settings.debug.map { dir => output(new File(dir, "semantics-slot.txt"), order(generalizedRelation)) } val cleaned = withSlotSemantics .filter { case ((template, pat), attrib) => attrib.count >= settings.minCount } .filter { case ((template, pattern), attrib) => // remove {rel} {rel} templates for now template.split("\\s+").count(_ == "{rel}") <= 1 } settings.debug.map { dir => output(new File(dir, "cleaned.txt"), order(cleaned)) } logger.info("Removing duplicates...") val dedup = cleaned.groupBy { case ((template, pat), attrib) => def filter(matchers: Iterable[Matcher[_]]) = matchers.filter { case m: ArgumentMatcher => false case _ => true } // set the key to the matchers, without arg1 and arg2, // and the reflection's matchers so we don't have mirrored // patterns Set(filter(pat.matchers), filter(pat.reflection.matchers)) }.mapValues(_.maxBy(_._2.count)).values settings.debug.map { dir => output(new File(dir, "dedup.txt"), order(dedup)) } logger.info("Writing templates...") using { settings.destFile match { case Some(file) => new PrintWriter(file) case None => new PrintWriter(System.out) } } { writer => output(writer, order(dedup)) } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/template/CountsToConfidence.scala ================================================ package edu.knowitall.openparse.template import scopt.mutable.OptionParser import java.io.File import edu.knowitall.common.Resource.using import scala.io.Source import java.io.PrintWriter object CountsToConfidence { abstract class Settings { def sourceFile: File def destFile: Option[File] } def main(args: Array[String]) = { object settings extends Settings { var sourceFile: File = _ var destFile: Option[File] = None } val parser = new OptionParser("convertconf") { arg("source", "file with pattern, count pairs", { path: String => settings.sourceFile = new File(path) }) argOpt("dest", "optional parameter to specify output to a file", { path: String => settings.destFile = Some(new File(path)) }) } if (parser.parse(args)) { run(settings) } } def run(settings: Settings) = { using (Source.fromFile(settings.sourceFile)) { source => using ( settings.destFile match { case Some(file) => new PrintWriter(file) case None => new PrintWriter(System.out) } ) { output => val lines = { val it = source.getLines val first = it.next output.println(first) it.toList } val max = lines.map(_.split("\t").last.toInt).max for (line <- lines) { val parts = line.split("\t") val count = parts.last.toInt output.println(parts.take(parts.length - 1).mkString("\t") + "\t" + ("%1.4f" format (count.toDouble / max.toDouble))) } } } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/template/GeneralizeTemplate.scala ================================================ package edu.knowitall.openparse.template import java.io.{PrintWriter, File} import scala.collection.immutable import scala.io.Source import edu.knowitall.collection.immutable.graph.pattern.{NodeMatcher, ConjunctiveNodeMatcher} import edu.knowitall.common.Resource.using import edu.knowitall.openparse.{SlotMatcher, RelationMatcher, ExtractorPattern, ExtractionPartMatcher} import edu.knowitall.tool.parse.graph.{RegexNodeMatcher, PostagNodeMatcher, DependencyPattern, DependencyNode} import edu.knowitall.ollie.Ollie.stemmer import scopt.OptionParser /** Generalize semantic restrictions to semantic classes. * * @author Michael Schmitz */ object GeneralizeTemplates { abstract class Settings { def sourceFile: File def destFile: Option[File] val categories = List("person", "location") } def main(args: Array[String]) = { object settings extends Settings { var sourceFile: File = null var destFile: Option[File] = None } val parser = new OptionParser("buildtemp") { arg("source", "file with source relation, pattern pairs", { path: String => settings.sourceFile = new File(path) }) argOpt("dest", "optional parameter to specify output to a file", { path: String => settings.destFile = Some(new File(path)) }) } if (parser.parse(args)) { run(settings) } } def lexicalRestrictions(extractionPartMatcher: ExtractionPartMatcher) = { extractionPartMatcher.matcher match { case m: ConjunctiveNodeMatcher[_] => val postag = (m.matchers.collect { case m: PostagNodeMatcher => m } head).postag val lemmas = (m.matchers.collect { case m: RegexNodeMatcher => m } head).regex.toString.split("\\|").toSeq Some(postag, lemmas) case _ => None } } case class Category(name: String, elements: Set[String]) { override def toString = "Category(" + name + ")" } def loadCategories(categories: Seq[String]) = { def loadCategory(name: String) = { val elements = using(this.getClass.getClassLoader.getResourceAsStream("categories/" + name + ".txt")) { stream => using(Source.fromInputStream(stream)) { source => source.getLines().toSet } } Category(name, elements) } (for (cat <- categories) yield (loadCategory(cat))).toList } def run(settings: Settings) { val categories = loadCategories(settings.categories) def generalize(matcher: NodeMatcher[DependencyNode], postag: String, lemmas: Set[String]) = { def distance(cat: Category) = { val intersectSize = (cat.elements intersect lemmas).size intersectSize.toDouble / lemmas.size.toDouble if (intersectSize < 5) 0.0 else intersectSize.toDouble / lemmas.size.toDouble } if (lemmas.size < 10) matcher else { postag match { case "NN" | "NNS" => val overlaps = categories map (cat => (cat, distance(cat))) sortBy (-_._2) if (overlaps.iterator.map(_._2).sum > 0.75) { val categories = overlaps.filter(_._2 > 0.10).map(_._1) val uncategorized = lemmas -- categories.flatMap(_.elements) val elements = immutable.SortedSet[String]() ++ categories.flatMap(_.elements) ++ uncategorized new ConjunctiveNodeMatcher(new PostagNodeMatcher(postag), new RegexNodeMatcher(elements.mkString("|").r)) } else matcher case m => matcher } } } var templates = using(Source.fromFile(settings.sourceFile, "UTF8")) { source => source.getLines().map { line => val Array(template, pattern, count) = line.split("\t") ((template, new ExtractorPattern(DependencyPattern.deserialize(pattern))), count.toInt) }.toList } templates = templates.map { case ((template, pattern), count) => val matchers = pattern.matchers.map { matcher => matcher match { case m: ExtractionPartMatcher if m.isInstanceOf[SlotMatcher] || m.isInstanceOf[RelationMatcher] => lexicalRestrictions(m) match { case Some((postag, lemmas)) => m.withMatcher(generalize(m.matcher, postag, lemmas.toSet)) case None => m } case m => m } } ((template, new ExtractorPattern(matchers)), count) } using ( settings.destFile match { case Some(file) => new PrintWriter(file, "UTF8") case None => new PrintWriter(System.out) }) { writer => templates map { case ((template, pattern), count) => Iterable(template, pattern, count).mkString("\t") } foreach writer.println } } } ================================================ FILE: core/src/main/scala/edu/knowitall/openparse/template/PassiveReflections.scala ================================================ package edu.knowitall.openparse.template import java.io.{PrintWriter, File} import scala.Option.option2Iterable import scala.annotation.elidable import scala.collection.immutable import scala.io.Source import scala.util.matching.Regex import org.slf4j.LoggerFactory import edu.knowitall.collection.immutable.graph.pattern.{Matcher, ConjunctiveNodeMatcher, DirectedEdgeMatcher, CaptureEdgeMatcher} import edu.knowitall.collection.immutable.Bag import edu.knowitall.common.Resource.using import edu.knowitall.common.enrich.Traversables.traversableOncePairTo import edu.knowitall.openparse.{SlotMatcher, RelationMatcher, ExtractorPattern, ArgumentMatcher} import edu.knowitall.tool.parse.graph.{RegexNodeMatcher, RegexEdgeMatcher, PostagNodeMatcher, LabelEdgeMatcher, DependencyPattern, DependencyNode} import edu.knowitall.tool.postag.Postagger import edu.knowitall.ollie.Ollie.stemmer import scalaz.Scalaz._ import scalaz._ import scopt.OptionParser import edu.knowitall.collection.immutable.graph.pattern.CaptureNodeMatcher /** A main method for adding active and passive conversions * of patterns to a model file. BuiltTemplates removes * duplicate patterns, removing a lot of garbage but also * the active/passive conversions. * * @author Michael Schmitz */ object PassiveReflections { val logger = LoggerFactory.getLogger(this.getClass) abstract class Settings { def sourceFile: File def destFile: Option[File] } def main(args: Array[String]) { val settings = new Settings { var sourceFile: File = null var destFile: Option[File] = None } val parser = new OptionParser("passivemodel") { arg("source", "input model file", { path: String => settings.sourceFile = new File(path) }) argOpt("dest", "output model file", { path: String => settings.destFile = Some(new File(path)) }) } if (parser.parse(args)) { run(settings) } } def run(settings: Settings) { def switchArgs(pattern: ExtractorPattern) = { val arg1 = pattern.matchers.find { case m: CaptureNodeMatcher[_] => m.alias == "arg1" case _ => false } get val arg2 = pattern.matchers.find { case m: CaptureNodeMatcher[_] => m.alias == "arg2" case _ => false } get new ExtractorPattern(pattern.matchers.map { case m: CaptureNodeMatcher[_] if m.alias == "arg1" => arg2 case m: CaptureNodeMatcher[_] if m.alias == "arg2" => arg1 case m => m }) } val patterns = using { Source.fromFile(settings.sourceFile) } { source => source.getLines.drop(1).map { line => val Array(template, pattern, count) = line.split("\t") (template, new ExtractorPattern(DependencyPattern.deserialize(pattern)), count) }.toList } using( settings.destFile match { case Some(file) => new PrintWriter(file, "UTF8") case None => new PrintWriter(System.out) }) { output => patterns.foreach { case (template, pattern, count) => output.println(Iterable(template, pattern, count).mkString("\t")) if (pattern.baseEdgeMatchers.exists { case m: LabelEdgeMatcher => m.label == "nsubj" case _ => false }) { // print the passive conversion if (!(template startsWith "be ")) { output.println(Iterable("be " + template, switchArgs(pattern), count).mkString("\t")) } } else if (pattern.baseEdgeMatchers.exists { case m: LabelEdgeMatcher => m.label == "nsubjpass" case _ => false }) { if (template startsWith "be ") { output.println(Iterable(template.drop(3), switchArgs(pattern), count).mkString("\t")) } } } } } } ================================================ FILE: core/src/test/resources/logback-test.xml ================================================ %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n ================================================ FILE: core/src/test/scala/edu/knowitall/common/enrich/TraversableSpecTest.scala ================================================ package edu.knowitall.common.enrich import edu.knowitall.collection.immutable.Bag import org.junit.runner.RunWith import org.specs2.mutable.Specification import org.specs2.runner.JUnitRunner @RunWith(classOf[JUnitRunner]) object TraversableSpecTest extends Specification { import Traversables._ "simple histogram works fine" in { val h1 = List(1, 2, 2, 3, 3, 3).histogram val h2 = List(3, 2, 1, 3, 2, 3).histogram h1 must_== h2 h1 must haveTheSameElementsAs(List((1, 1), (2, 2), (3, 3))) } "histogram from partials works fine" in { val list = List((1, 1), (2, 2), (2, 2), (3, 3), (3, 3), (3, 3)) val h1 = list.mergeHistograms val h2 = list.reverse.mergeHistograms val h3 = list.mergeKeys(_ + _) h1 must_== h2 h1 must_== h3 h1 must haveTheSameElementsAs(List((1, 1), (2, 4), (3, 9))) } "list multimaps works fine" in { val list = List(1 -> 1, 1 -> 2, 1 -> 1, 2 -> 2) val multimap = list.toListMultimap multimap must haveTheSameElementsAs(Map(1 -> List(1, 2, 1), 2 -> List(2))) val extended = (multimap.toSeq :+ (1 -> List(2, 3, 4, 5))) val merged = extended.mergeKeys(_ ++ _) merged must haveTheSameElementsAs(Map(1 -> List(1, 2, 1, 2, 3, 4, 5), 2 -> List(2))) } "set multimaps works fine" in { val list = List(1 -> 1, 1 -> 2, 1 -> 1, 2 -> 2) val multimap = list.toSetMultimap multimap must haveTheSameElementsAs(Map(1 -> Set(1, 2), 2 -> Set(2))) val extended = (multimap.toSeq :+ (1 -> Set(2, 3, 4, 5))) val merged = extended.mergeKeys(_ ++ _) merged must haveTheSameElementsAs(Map(1 -> Set(1, 2, 3, 4, 5), 2 -> Set(2))) } "bag multimaps works fine" in { val list = List(1 -> 1, 1 -> 2, 1 -> 1, 2 -> 2) val multimap = list.toBagMultimap multimap must haveTheSameElementsAs(Map(1 -> Bag(1, 1, 2), 2 -> Bag(2))) val extended = (multimap.toSeq :+ (1 -> Bag(2, 3, 4, 5))) val merged = extended.mergeKeys(_ ++ _) merged must haveTheSameElementsAs(Map(1 -> Bag(1, 1, 2, 2, 3, 4, 5), 2 -> Bag(2))) } } ================================================ FILE: core/src/test/scala/edu/knowitall/ollie/DependencyGraphExtrasSpec.scala ================================================ package edu.knowitall.ollie import org.junit.runner.RunWith import org.specs2.mutable.Specification import org.specs2.runner.JUnitRunner import edu.knowitall.tool.parse.graph.DependencyGraph @RunWith(classOf[JUnitRunner]) object DependencyGraphExtrasTest extends Specification { "switch to passive voice works" in { val graph = DependencyGraph.deserialize("nsubj(hit_VBD_1_8, Michael_NNP_0_0); dobj(hit_VBD_1_8, ball_NN_3_16); punct(hit_VBD_1_8, ._._4_20); det(ball_NN_3_16, the_DT_2_12)") val extras = new DependencyGraphExtras(graph) val switched = extras.switchVoice switched.size must_== 1 switched.head.serialize must_== "det(ball_NN_1_4, the_DT_0_0); auxpass(hit_VBD_2_13, was_VBD_1_9); nsubjpass(hit_VBD_2_13, ball_NN_1_4); prep(hit_VBD_2_13, by_IN_3_17); punct(hit_VBD_2_13, ._._6_28); pobj(by_IN_3_17, Michael_NNP_4_20)" } "switch to active voice works" in { val graph = DependencyGraph.deserialize("det(ball_NN_1_4, The_DT_0_0); nsubjpass(hit_VBN_3_13, ball_NN_1_4); auxpass(hit_VBN_3_13, was_VBD_2_9); prep(hit_VBN_3_13, by_IN_4_17); punct(hit_VBN_3_13, ._._6_27); pobj(by_IN_4_17, Michael_NNP_5_20)") val extras = new DependencyGraphExtras(graph) val switched = extras.switchVoice switched.size must_== 1 switched.head.serialize must_== "nsubj(hit_VBN_1_8, Michael_NNP_0_0); dobj(hit_VBN_1_8, ball_NN_3_16); punct(hit_VBN_1_8, ._._4_21); det(ball_NN_3_16, The_DT_2_12)" } } ================================================ FILE: core/src/test/scala/edu/knowitall/ollie/confidence/OllieFeatureSetSpec.scala ================================================ package edu.knowitall.ollie.confidence import org.junit._ import org.junit.Assert._ import org.specs2.mutable.Specification import org.junit.runner.RunWith import org.specs2.runner.JUnitRunner import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.ollie.Ollie import edu.knowitall.ollie.OllieExtractionInstance import edu.knowitall.ollie.ScoredOllieExtractionInstance import edu.knowitall.openparse.OpenParse import org.junit.runner.RunWith import org.specs2.runner.JUnitRunner @RunWith(classOf[JUnitRunner]) object OllieFeatureSetSpec extends Specification { val ollie = new Ollie(OpenParse.withDefaultModel()) "if right before arg1" in { val graph = DependencyGraph.deserialize("poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134)") val extrs = ollie.extract(graph) val extr = extrs.toSeq(2) OllieFeatures.ifRightBeforeArg1(extr) must_== 1.0 } } ================================================ FILE: core/src/test/scala/edu/knowitall/openparse/BuildPatternsSpec.scala ================================================ package edu.knowitall.openparse import org.junit._ import org.junit.Assert._ import org.specs2.mutable.Specification import org.junit.runner.RunWith import org.specs2.runner.JUnitRunner import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.tool.stem.MorphaStemmer @RunWith(classOf[JUnitRunner]) object BuildPatternsSpecTest extends Specification { def findPatterns(row: (String, String, String, String, String), maxLength: Option[Int] = None) = { val (rel, arg1, arg2, lemmasString, pickled) = row val lemmas = lemmasString.split("\\s+").toSet val graph = DependencyGraph.deserialize(pickled).map(_.lemmatize(MorphaStemmer)).normalize BuildPatterns.findRelationPatterns(graph, rel, arg1, arg2, lemmas, maxLength) } "A pattern is found when the argument overlap" in { val row, (arg1, rel, arg2, lemmas, pickled) = ("be marry to", "hillary clinton", "bill clinton", "hillary clinton marry bill", "cc(married_VBN_11_0, And_CC_0_0); nn(Clinton_NNP_2_0, Hillary_NNP_1_0); nsubjpass(married_VBN_11_0, Clinton_NNP_2_0); punct(Clinton_NNP_2_0, _,_3_0); dep(know_VBP_8_0, who_WP_4_0); punct(know_VBP_8_0, _,_5_0); mark(know_VBP_8_0, as_IN_6_0); nsubj(know_VBP_8_0, we_PRP_7_0); rcmod(Clinton_NNP_2_0, know_VBP_8_0); punct(Clinton_NNP_2_0, _,_9_0); auxpass(married_VBN_11_0, is_VBZ_10_0); nn(Clinton_NNP_14_0, Bill_NNP_13_0); prep_to(married_VBN_11_0, Clinton_NNP_14_0); punct(married_VBN_11_0, ._._15_0)") val patterns = findPatterns(row) patterns.size must_== 1 patterns.head._1.toString must_== "{arg1} prep_to> {arg2}" } "A pattern is found with exactly one slot" in { val row = ("arrive in", "barack obama", "afghanistan", "barack obama arrive afghanistan", "(to_TO_4_0), (in_IN_12_0), (on_IN_14_0), (or_CC_16_0), (for_IN_20_0), (to_TO_23_0), (and_CC_27_0), (in_IN_29_0), (of_IN_34_0), (from_IN_38_0), poss(trip_NN_3_0, his_PRP$_1_0); amod(trip_NN_3_0, two-day_JJ_2_0); pobj(After_IN_0_0, trip_NN_3_0); prep_to(trip_NN_3_0, Afghanistan_NNP_5_0); punct(trip_NN_3_0, ,_,_6_0); nn(Obama_NNP_10_0, U.S._NNP_7_0); nn(Obama_NNP_10_0, Senator_NNP_8_0); nn(Obama_NNP_10_0, Barack_NNP_9_0); nsubj(arrived_VBD_11_0, Obama_NNP_10_0); rcmod(trip_NN_3_0, arrived_VBD_11_0); prep_in(arrived_VBD_11_0, Iraq_NNP_13_0); prep_on(arrived_VBD_11_0, Monday_NNP_15_0); prep_on(arrived_VBD_11_0, July_NNP_17_0); conj_or(Monday_NNP_15_0, July_NNP_17_0); num(July_NNP_17_0, 21_CD_18_0); punct(trip_NN_3_0, ,_,_19_0); det(visit_NN_22_0, a_DT_21_0); prep_for(trip_NN_3_0, visit_NN_22_0); det(East_NNP_26_0, the_DT_24_0); nn(East_NNP_26_0, Middle_NNP_25_0); prep_to(visit_NN_22_0, East_NNP_26_0); prep_to(visit_NN_22_0, Europe_NNP_28_0); conj_and(East_NNP_26_0, Europe_NNP_28_0); poss(capacity_NN_31_0, his_PRP$_30_0); prep_in(visit_NN_22_0, capacity_NN_31_0); det(member_NN_33_0, a_DT_32_0); dep(capacity_NN_31_0, member_NN_33_0); det(Senate_NNP_37_0, the_DT_35_0); nn(Senate_NNP_37_0, U.S._NNP_36_0); prep_of(member_NN_33_0, Senate_NNP_37_0); prep_from(member_NN_33_0, Illinois_NNP_39_0); punct(After_IN_0_0, ._._40_0)") val patterns = findPatterns(row) patterns.size must_== 1 patterns.head._1.toString must_== "{arg1} prep_to> {arg2}" } "A pattern is NOT found because of a length restriction" in { val row = ("arrive in", "barack obama", "afghanistan", "barack obama arrive afghanistan", "(to_TO_4_0), (in_IN_12_0), (on_IN_14_0), (or_CC_16_0), (for_IN_20_0), (to_TO_23_0), (and_CC_27_0), (in_IN_29_0), (of_IN_34_0), (from_IN_38_0), poss(trip_NN_3_0, his_PRP$_1_0); amod(trip_NN_3_0, two-day_JJ_2_0); pobj(After_IN_0_0, trip_NN_3_0); prep_to(trip_NN_3_0, Afghanistan_NNP_5_0); punct(trip_NN_3_0, ,_,_6_0); nn(Obama_NNP_10_0, U.S._NNP_7_0); nn(Obama_NNP_10_0, Senator_NNP_8_0); nn(Obama_NNP_10_0, Barack_NNP_9_0); nsubj(arrived_VBD_11_0, Obama_NNP_10_0); rcmod(trip_NN_3_0, arrived_VBD_11_0); prep_in(arrived_VBD_11_0, Iraq_NNP_13_0); prep_on(arrived_VBD_11_0, Monday_NNP_15_0); prep_on(arrived_VBD_11_0, July_NNP_17_0); conj_or(Monday_NNP_15_0, July_NNP_17_0); num(July_NNP_17_0, 21_CD_18_0); punct(trip_NN_3_0, ,_,_19_0); det(visit_NN_22_0, a_DT_21_0); prep_for(trip_NN_3_0, visit_NN_22_0); det(East_NNP_26_0, the_DT_24_0); nn(East_NNP_26_0, Middle_NNP_25_0); prep_to(visit_NN_22_0, East_NNP_26_0); prep_to(visit_NN_22_0, Europe_NNP_28_0); conj_and(East_NNP_26_0, Europe_NNP_28_0); poss(capacity_NN_31_0, his_PRP$_30_0); prep_in(visit_NN_22_0, capacity_NN_31_0); det(member_NN_33_0, a_DT_32_0); dep(capacity_NN_31_0, member_NN_33_0); det(Senate_NNP_37_0, the_DT_35_0); nn(Senate_NNP_37_0, U.S._NNP_36_0); prep_of(member_NN_33_0, Senate_NNP_37_0); prep_from(member_NN_33_0, Illinois_NNP_39_0); punct(After_IN_0_0, ._._40_0)") val patterns = findPatterns(row, Some(2)) patterns.size must_== 0 } // rel rel "A pattern is found" in { val row = ("be bear a", "queequag", "slave", "bear queequag slave", "(in_IN_5_0), (._._7_0), nsubjpass(born_VBN_2_0, Queequag_NNP_0_0); auxpass(born_VBN_2_0, was_VBD_1_0); dobj(born_VBN_2_0, slave_NN_4_0); det(slave_NN_4_0, a_DT_3_0); prep_in(slave_NN_4_0, Africa_NNP_6_0)") val patterns = findPatterns(row, Some(2)) patterns.size must_== 1 patterns.head._1.toString must_== "{arg1} dobj> {arg2}" } "A single pattern is found with a slot instead of a rel rel" in { val row = ("be elect president of", "barack obama", "unite state", "barack obama unite state elect president", "(of_IN_5_0), (._._9_0), nn(Obama_NNP_1_0, Barack_NNP_0_0); nsubjpass(elected_VBN_3_0, Obama_NNP_1_0); auxpass(elected_VBN_3_0, was_VBD_2_0); dobj(elected_VBN_3_0, president_NN_4_0); prep_of(president_NN_4_0, States_NNPS_8_0); det(States_NNPS_8_0, the_DT_6_0); nn(States_NNPS_8_0, United_NNP_7_0)") val patterns = findPatterns(row) patterns.size must_== 1 patterns.head._1.toString must_== "{arg1} dobj> {rel1:postag=NN} >prep_of> {arg2}" } "A single pattern is found with a slot instead of a rel rel" in { val row = ("be team locate in", "mariner", "seattle", "mariner team locate seattle", "(in_IN_6_0), (._._8_0), det(Mariners_NNPS_1_0, The_DT_0_0); nsubj(team_NN_4_0, Mariners_NNPS_1_0); cop(team_NN_4_0, are_VBP_2_0); det(team_NN_4_0, a_DT_3_0); partmod(team_NN_4_0, located_VBN_5_0); prep_in(located_VBN_5_0, Seattle_NNP_7_0)") val patterns = findPatterns(row) patterns.head._1.toString must_== "{arg1} partmod> {rel1:postag=VBN} >prep_in> {arg2}" } "A single pattern is found with a slot instead of a rel rel" in { val row = ("be going populate", "human", "earth", "human go populate earth", "(._._7_0), nsubj(going_VBG_2_0, Humans_NNS_0_0); aux(going_VBG_2_0, are_VBP_1_0); xcomp(going_VBG_2_0, populate_VB_4_0); aux(populate_VB_4_0, to_TO_3_0); dobj(populate_VB_4_0, earth_NN_6_0); det(earth_NN_6_0, the_DT_5_0)") val patterns = findPatterns(row) patterns.size must_== 1 patterns.head._1.toString must_== "{arg1} xcomp> {rel:postag=VB} >dobj> {arg2}" } "A single pattern is found with a slot instead of a rel rel" in { val row = ("have crush on", "juliette", "romeo", "juliette have crush romeo", "(on_IN_4_0), (._._6_0), nsubj(has_VBZ_1_0, Juliette_NNP_0_0); dobj(has_VBZ_1_0, crush_NN_3_0); det(crush_NN_3_0, a_DT_2_0); prep_on(crush_NN_3_0, Romeo_NNP_5_0)") val patterns = findPatterns(row) patterns.size must_== 1 patterns.head._1.toString must_== "{arg1} dobj> {rel1:postag=NN} >prep_on> {arg2}" } } ================================================ FILE: core/src/test/scala/edu/knowitall/openparse/ExtractorPatternSpec.scala ================================================ package edu.knowitall.openparse import org.junit._ import org.junit.Assert._ import org.specs2.mutable.Specification import org.junit.runner.RunWith import org.specs2.runner.JUnitRunner import edu.knowitall.tool.parse.graph.DependencyPattern import edu.knowitall.ollie.Ollie.stemmer @RunWith(classOf[JUnitRunner]) object ExtractorPatternSpecTest extends Specification { def testSymmetric(pattern: String, symmetric: Boolean) { (pattern + " is " + (if (symmetric) "symmetric" else "not symmetric")) in { new ExtractorPattern(DependencyPattern.deserialize(pattern)).symmetric must be_==(symmetric) } } testSymmetric("{arg1} dobj> {arg2}", false) testSymmetric("{arg1} nsubj> {arg2}", true) testSymmetric("{arg1} prep_of> {arg2}", true) testSymmetric("{rel:postag=NN} nn> {arg2}", false) } ================================================ FILE: core/src/test/scala/edu/knowitall/openparse/OllieSpec.scala ================================================ package edu.knowitall.openparse import org.junit._ import org.junit.Assert._ import org.specs2.mutable.Specification import org.junit.runner.RunWith import org.specs2.runner.JUnitRunner import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.tool.stem.MorphaStemmer import edu.knowitall.ollie.Ollie import edu.knowitall.ollie.OllieExtractionInstance import edu.knowitall.ollie.ScoredOllieExtractionInstance import edu.knowitall.ollie.confidence.OllieConfidenceFunction @RunWith(classOf[JUnitRunner]) object OllieSpecTest extends Specification { val ollie = new Ollie(OpenParse.withDefaultModel()) val conf = OllieConfidenceFunction.loadDefaultClassifier() "Ollie finds an example extraction" in { val graph = DependencyGraph.deserialize("(._._5_37), nsubj(finds_VBZ_1_10, OpenParse_NNP_0_0); dobj(finds_VBZ_1_10, extraction_NN_4_27); det(extraction_NN_4_27, an_DT_2_16); nn(extraction_NN_4_27, example_NN_3_19)") val extrs = ollie.extract(graph) val extr = extrs.head extr must_== OllieExtractionInstance.tabDeserialize(extr.tabSerialize) val scored = new ScoredOllieExtractionInstance(true, extr) scored must_== ScoredOllieExtractionInstance.tabDeserialize(scored.tabSerialize) } "Ollie confidence function executes" in { val graph = DependencyGraph.deserialize("(._._5_37), nsubj(finds_VBZ_1_10, OpenParse_NNP_0_0); dobj(finds_VBZ_1_10, extraction_NN_4_27); det(extraction_NN_4_27, an_DT_2_16); nn(extraction_NN_4_27, example_NN_3_19)") val extrs = ollie.extract(graph) extrs map conf must not(throwA[Exception]) } } ================================================ FILE: core/src/test/scala/edu/knowitall/openparse/OpenParseSpec.scala ================================================ package edu.knowitall.openparse import org.junit._ import org.junit.Assert._ import org.specs2.mutable.Specification import org.junit.runner.RunWith import org.specs2.runner.JUnitRunner import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.tool.stem.MorphaStemmer @RunWith(classOf[JUnitRunner]) object OpenParseSpecTest extends Specification { val openparse = OpenParse.withDefaultModel() "OpenParse finds an example extraction" in { val graph = DependencyGraph.deserialize("(._._5_37), nsubj(finds_VBZ_1_10, OpenParse_NNP_0_0); dobj(finds_VBZ_1_10, extraction_NN_4_27); det(extraction_NN_4_27, an_DT_2_16); nn(extraction_NN_4_27, example_NN_3_19)") val extrs = openparse.extract(graph) extrs.size must_== 1 extrs.head._2.toString must_== "(OpenParse; finds; an example extraction)" } } ================================================ FILE: core/src/test/scala/edu/knowitall/openparse/PatternExtractorSpec.scala ================================================ package edu.knowitall.openparse import org.junit._ import org.junit.Assert._ import org.specs2.mutable.Specification import org.junit.runner.RunWith import org.specs2.runner.JUnitRunner import edu.knowitall.ollie.Ollie.stemmer import edu.knowitall.tool.parse.graph.DependencyGraph import edu.knowitall.tool.parse.graph.Dependencies import edu.knowitall.tool.parse.graph.DependencyPattern import OpenParse._ import extract._ @RunWith(classOf[JUnitRunner]) object PatternExtractorSpecTest extends Specification { def testPostagConstraint { val sentence = "Angels appear in the Bible story from the first pages of Genesis right through to the final pages of the Book of Revelation ." val graph = DependencyGraph.deserialize("nsubj(appear_VB_1_0, Angels_NNPS_0_0); det(story_NN_5_0, the_DT_3_0); nn(story_NN_5_0, Bible_NNP_4_0); prep_in(appear_VB_1_0, story_NN_5_0); det(pages_NNS_9_0, the_DT_7_0); amod(pages_NNS_9_0, first_JJ_8_0); prep_from(appear_VB_1_0, pages_NNS_9_0); nn(right_NN_12_0, Genesis_NNP_11_0); prep_of(pages_NNS_9_0, right_NN_12_0); dep(appear_VB_1_0, through_IN_13_0); dep(through_IN_13_0, to_TO_14_0); det(pages_NNS_17_0, the_DT_15_0); amod(pages_NNS_17_0, final_JJ_16_0); pobj(to_TO_14_0, pages_NNS_17_0); det(Book_NNP_20_0, the_DT_19_0); prep_of(pages_NNS_17_0, Book_NNP_20_0); prep_of(Book_NNP_20_0, Revelation_NNP_22_0); punct(appear_VB_1_0, ._._23_0)"). normalize "(Angels, appear, the Bible) is found without a postag constraint" in { val pattern = DependencyPattern.deserialize("{arg1} prep_in> {arg2}") val extractions = new GeneralExtractor(pattern, 1.0).extract(graph) extractions.size must_== 1 extractions.map(_.toString) must contain("(Angels; appear; the Bible story)") } "(Angels, appear, the Bible) is found with a postag constraint" in { val pattern = DependencyPattern.deserialize("{arg1} prep_in> {arg2}") val extractions = new GeneralExtractor(pattern, 1.0).extract(graph) extractions.size must_== 1 extractions.map(_.toString) must contain("(Angels; appear; the Bible story)") } "(Angels, appear, the Bible) is not found with the wrong postag constraint" in { val pattern = DependencyPattern.deserialize("{arg1} prep_in> {arg2}") val extractions = new GeneralExtractor(pattern, 1.0).extract(graph) extractions.size must_== 0 } } def testRelnounCases { "adjective descriptor relnoun" in { val sentence = "US President Barack Obama went to the grocery store." val pickled = "nn(Obama_NNP_3_0, US_NNP_0_0); nn(Obama_NNP_3_0, President_NNP_1_0); nn(Obama_NNP_3_0, Barack_NNP_2_0); nsubj(went_VBD_4_0, Obama_NNP_3_0); prep(went_VBD_4_0, to_TO_5_0); det(store_NN_8_0, the_DT_6_0); nn(store_NN_8_0, grocery_NN_7_0); pobj(to_TO_5_0, store_NN_8_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{rel} nn> {arg2}") val extractor = new SpecificExtractor("be the president of", List("president"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; be the president of; US)")) } "adjective descriptor appositive relnoun" in { val sentence = "Barack Obama, the US President, went to the store." val pickled = "nn(Obama_NNP_1_0, Barack_NNP_0_0); nsubj(went_VBD_7_0, Obama_NNP_1_0); det(President_NNP_5_0, the_DT_3_0); nn(President_NNP_5_0, US_NNP_4_0); appos(Obama_NNP_1_0, President_NNP_5_0); det(store_NN_10_0, the_DT_9_0); prep_to(went_VBD_7_0, store_NN_10_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} >appos> {rel} >nn> {arg2}") val extractor = new SpecificExtractor("be the president of", List("president"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; be the president of; US)")) } "appositive relnoun" in { val sentence = "Barack Obama, the president of the US, went to the grocery store." val pickled = "nn(Obama_NNP_1_0, Barack_NNP_0_0); nsubj(went_VBD_9_0, Obama_NNP_1_0); det(president_NN_4_0, the_DT_3_0); appos(Obama_NNP_1_0, president_NN_4_0); det(US_NNP_7_0, the_DT_6_0); prep_of(president_NN_4_0, US_NNP_7_0); det(store_NN_13_0, the_DT_11_0); nn(store_NN_13_0, grocery_NN_12_0); prep_to(went_VBD_9_0, store_NN_13_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} >appos> {rel} >prep_of> {arg2}") val extractor = new SpecificExtractor("be the president of", List("president"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; be the president of; the US)")) } "possessive relnoun" in { val sentence = "Barack Obama, the president of the US, went to the grocery store." val pickled = "nn(Obama_NNP_1_0, Barack_NNP_0_0); nsubj(went_VBD_9_0, Obama_NNP_1_0); det(president_NN_4_0, the_DT_3_0); appos(Obama_NNP_1_0, president_NN_4_0); det(US_NNP_7_0, the_DT_6_0); prep_of(president_NN_4_0, US_NNP_7_0); det(store_NN_13_0, the_DT_11_0); nn(store_NN_13_0, grocery_NN_12_0); prep_to(went_VBD_9_0, store_NN_13_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} >appos> {rel} >prep_of> {arg2}") val extractor = new SpecificExtractor("be the president of", List("president"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; be the president of; the US)")) } "possessive appositive relnoun" in { val sentence = "The US's president, Barack Obama, went to the store." val pickled = "det(US_NNP_1_0, The_DT_0_0); poss(president_NN_3_0, US_NNP_1_0); nsubj(went_VBD_8_0, president_NN_3_0); nn(Obama_NNP_6_0, Barack_NNP_5_0); appos(president_NN_3_0, Obama_NNP_6_0); det(store_NN_11_0, the_DT_10_0); prep_to(went_VBD_8_0, store_NN_11_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} poss> {arg2}") val extractor = new SpecificExtractor("be the president of", List("president"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; be the president of; The US)")) } "reverse possessive appositive relnoun" in { val sentence = "Barack Obama, the US's president, went to the store." val pickled = "nn(Obama_NNP_1_0, Barack_NNP_0_0); nsubj(went_VBD_8_0, Obama_NNP_1_0); det(US_NNP_4_0, the_DT_3_0); poss(president_NN_6_0, US_NNP_4_0); appos(Obama_NNP_1_0, president_NN_6_0); det(store_NN_11_0, the_DT_10_0); prep_to(went_VBD_8_0, store_NN_11_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} >appos> {rel} >poss> {arg2}") val extractor = new SpecificExtractor("be the president of", List("president"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; be the president of; the US)")) } "possessive is relnoun" in { val sentence = "The US's President is Barack Obama." val pickled = "det(US_NNP_1_0, The_DT_0_0); poss(President_NNP_3_0, US_NNP_1_0); nsubj(Obama_NNP_6_0, President_NNP_3_0); cop(Obama_NNP_6_0, is_VBZ_4_0); nn(Obama_NNP_6_0, Barack_NNP_5_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} >nsubj> {rel} >poss> {arg2}") val extractor = new SpecificExtractor("be the president of", List("president"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; be the president of; The US)")) } "is possessive relnoun" in { val sentence = "Barack Obama is the US's president." val pickled = "nn(Obama_NNP_1_0, Barack_NNP_0_0); nsubj(president_NN_6_0, Obama_NNP_1_0); cop(president_NN_6_0, is_VBZ_2_0); det(US_NNP_4_0, the_DT_3_0); poss(president_NN_6_0, US_NNP_4_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} poss> {arg2}") val extractor = new SpecificExtractor("be the president of", List("president"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; be the president of; the US)")) } "of is relnoun" in { val sentence = "The president of the US is Barack Obama." val pickled = "det(president_NN_1_0, The_DT_0_0); nsubj(Obama_NNP_7_0, president_NN_1_0); det(US_NNP_4_0, the_DT_3_0); prep_of(president_NN_1_0, US_NNP_4_0); cop(Obama_NNP_7_0, is_VBZ_5_0); nn(Obama_NNP_7_0, Barack_NNP_6_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} >nsubj> {rel} >prep_of> {arg2}") val extractor = new SpecificExtractor("be the president of", List("president"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; be the president of; the US)")) } } def testRelRel = { "A rel rel pattern is found" in { val pickled = "(of_IN_5_0), (._._9_0), nn(Obama_NNP_1_0, Barack_NNP_0_0); nsubjpass(elected_VBN_3_0, Obama_NNP_1_0); auxpass(elected_VBN_3_0, was_VBD_2_0); dobj(elected_VBN_3_0, president_NN_4_0); prep_of(president_NN_4_0, States_NNPS_8_0); det(States_NNPS_8_0, the_DT_6_0); nn(States_NNPS_8_0, United_NNP_7_0)" val graph = DependencyGraph.deserialize(pickled) val pattern = DependencyPattern.deserialize("{arg1} dobj> {rel2} >prep_of> {arg2}") val extractor = new TemplateExtractor(Template.deserialize("be {rel} of"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Barack Obama; was elected president of; the United States)")) } "A rel rel pattern is found" in { val pickled = "(in_IN_6_0), (._._8_0), det(Mariners_NNPS_1_0, The_DT_0_0); nsubj(team_NN_4_0, Mariners_NNPS_1_0); cop(team_NN_4_0, are_VBP_2_0); det(team_NN_4_0, a_DT_3_0); partmod(team_NN_4_0, located_VBN_5_0); prep_in(located_VBN_5_0, Seattle_NNP_7_0)" val graph = DependencyGraph.deserialize(pickled) val pattern = DependencyPattern.deserialize("{arg1} partmod> {rel2} >prep_in> {arg2}") val extractor = new TemplateExtractor(Template.deserialize("be {rel} in"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(The Mariners; are a team located in; Seattle)")) } "A rel rel pattern is found" in { val pickled = "(._._7_0), nsubj(going_VBG_2_0, Humans_NNS_0_0); aux(going_VBG_2_0, are_VBP_1_0); xcomp(going_VBG_2_0, populate_VB_4_0); aux(populate_VB_4_0, to_TO_3_0); dobj(populate_VB_4_0, earth_NN_6_0); det(earth_NN_6_0, the_DT_5_0)" val graph = DependencyGraph.deserialize(pickled) val pattern = DependencyPattern.deserialize("{arg1} xcomp> {rel2} >dobj> {arg2}") val extractor = new TemplateExtractor(Template.deserialize("be {rel}"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Humans; are going to populate; the earth)")) } "A rel rel pattern is found" in { val pickled = "(on_IN_4_0), (._._6_0), nsubj(has_VBZ_1_0, Juliette_NNP_0_0); dobj(has_VBZ_1_0, crush_NN_3_0); det(crush_NN_3_0, a_DT_2_0); prep_on(crush_NN_3_0, Romeo_NNP_5_0)" val graph = DependencyGraph.deserialize(pickled) val pattern = DependencyPattern.deserialize("{arg1} dobj> {rel2} >prep_on> {arg2}") val extractor = new TemplateExtractor(Template.deserialize("{rel} on"), pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(Juliette; has a crush on; Romeo)")) } } "relation expands across 'chaotically'" in { val sentence = "The people fled away chaotically towards the barn." val pickled = "det(people_NNS_1_0, The_DT_0_0); nsubj(fled_VBD_2_0, people_NNS_1_0); advmod(fled_VBD_2_0, chaotically_RB_3_0); det(barn_NN_6_0, the_DT_5_0); prep_towards(fled_VBD_2_0, barn_NN_6_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} prep_towards> {arg2}") val extractor = new GeneralExtractor(pattern, 1.0) extractor.extract(graph).map(_.toString) must haveTheSameElementsAs(List("(The people; fled chaotically; the barn)")) } "noun relation word expands across of when it doesn't overlap with the argument" in { val pickled = "(of_IN_4_0), (by_IN_8_0), (of_IN_15_0), (at_IN_17_0), (of_IN_20_0), (at_IN_22_0), (and_CC_25_0), nsubj(types_NNS_3_0, These_DT_0_0); cop(types_NNS_3_0, are_VBP_1_0); det(types_NNS_3_0, the_DT_2_0); prep_of(types_NNS_3_0, clues_NNS_5_0); punct(types_NNS_3_0, ,_,_24_0); conj_and(types_NNS_3_0, team_NN_27_0); punct(types_NNS_3_0, of..._._28_0); partmod(clues_NNS_5_0, ferreted_VBN_6_0); prt(ferreted_VBN_6_0, out_RP_7_0); agent(ferreted_VBN_6_0, Gosling_NNP_10_0); nn(Gosling_NNP_10_0, Sam_NNP_9_0); punct(Gosling_NNP_10_0, ,_,_11_0); appos(Gosling_NNP_10_0, professor_NN_14_0); det(professor_NN_14_0, an_DT_12_0); amod(professor_NN_14_0, associate_JJ_13_0); prep_of(professor_NN_14_0, psychology_NN_16_0); prep_at(professor_NN_14_0, University_NNP_19_0); det(University_NNP_19_0, the_DT_18_0); prep_of(University_NNP_19_0, Texas_NNP_21_0); prep_at(University_NNP_19_0, Austin_NNP_23_0); poss(team_NN_27_0, his_PRP$_26_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}") val extractor = new TemplateExtractor(Template.deserialize("be {rel} {prep}"), pattern, 1.0) extractor.extract(graph).map(_.toString) must contain("(Sam Gosling; be an associate professor of psychology at; the University of Texas)") } "noun relation word does NOT expands across of when it overlaps with the argument" in { val pickled = "(of_IN_4_0), (by_IN_8_0), (of_IN_15_0), (at_IN_17_0), (of_IN_20_0), (at_IN_22_0), (and_CC_25_0), nsubj(types_NNS_3_0, These_DT_0_0); cop(types_NNS_3_0, are_VBP_1_0); det(types_NNS_3_0, the_DT_2_0); prep_of(types_NNS_3_0, clues_NNS_5_0); punct(types_NNS_3_0, ,_,_24_0); conj_and(types_NNS_3_0, team_NN_27_0); punct(types_NNS_3_0, of..._._28_0); partmod(clues_NNS_5_0, ferreted_VBN_6_0); prt(ferreted_VBN_6_0, out_RP_7_0); agent(ferreted_VBN_6_0, Gosling_NNP_10_0); nn(Gosling_NNP_10_0, Sam_NNP_9_0); punct(Gosling_NNP_10_0, ,_,_11_0); appos(Gosling_NNP_10_0, professor_NN_14_0); det(professor_NN_14_0, an_DT_12_0); amod(professor_NN_14_0, associate_JJ_13_0); prep_of(professor_NN_14_0, psychology_NN_16_0); prep_at(professor_NN_14_0, University_NNP_19_0); det(University_NNP_19_0, the_DT_18_0); prep_of(University_NNP_19_0, Texas_NNP_21_0); prep_at(University_NNP_19_0, Austin_NNP_23_0); poss(team_NN_27_0, his_PRP$_26_0)" val graph = DependencyGraph.deserialize(pickled) // don't normalize val pattern = DependencyPattern.deserialize("{arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2}") val extractor = new TemplateExtractor(Template.deserialize("be {rel} {prep}"), pattern, 1.0) extractor.extract(graph).map(_.toString) must contain("(Sam Gosling; be an associate professor of; psychology)") } testPostagConstraint testRelnounCases testRelRel } ================================================ FILE: data/training.tsv ================================================ 0 nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 it ;;; it_PRP_19_75 appears for ;;; appears_VBZ_20_78 the short term ;;; the_DT_15_58; short_JJ_16_62; term_NN_17_68 0.24440 None None 0 nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 it ;;; it_PRP_6_21 means over ;;; means_VBZ_7_24 the long run ;;; the_DT_9_35; long_JJ_10_39; run_NN_11_44 0.24440 None None 1 nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 gold ;;; gold_NN_33_143 that has risen over ;;; that_IN_32_138; has_VBZ_34_148; risen_VBN_35_152 the past week or so ;;; the_DT_37_163; past_JJ_38_167; week_NN_39_172; or_CC_40_177; so_RB_41_180 0.04440 None None 0 nsubj(know_VB_4_11, I_PRP_1_2); aux(know_VB_4_11, do_VBP_2_4); neg(know_VB_4_11, n't_RB_3_7); ccomp(know_VB_4_11, means_VBZ_7_24); punct(know_VB_4_11, ,_,_12_48); cc(know_VB_4_11, but_CC_13_50); conj(know_VB_4_11, appears_VBZ_20_78); dobj(means_VBZ_7_24, what_WP_5_16); nsubj(means_VBZ_7_24, it_PRP_6_21); prep(means_VBZ_7_24, over_IN_8_30); pobj(over_IN_8_30, run_NN_11_44); det(run_NN_11_44, the_DT_9_35); amod(run_NN_11_44, long_JJ_10_39); pobj(for_IN_14_54, term_NN_17_68); det(term_NN_17_68, the_DT_15_58); amod(term_NN_17_68, short_JJ_16_62); prep(appears_VBZ_20_78, for_IN_14_54); punct(appears_VBZ_20_78, ,_,_18_73); nsubj(appears_VBZ_20_78, it_PRP_19_75); ccomp(appears_VBZ_20_78, grateful_JJ_25_110); amod(producers_NNS_23_96, gold_JJ_22_91); complm(grateful_JJ_25_110, that_IN_21_86); nsubj(grateful_JJ_25_110, producers_NNS_23_96); cop(grateful_JJ_25_110, are_VBP_24_106); prep(grateful_JJ_25_110, for_IN_26_119); pobj(for_IN_26_119, $_$_28_127); dep($_$_28_127, the_DT_27_123); num($_$_28_127, 10_CD_29_129); num($_$_28_127, so_RB_31_135); rcmod($_$_28_127, risen_VBN_35_152); cc(so_RB_31_135, or_CC_30_132); dobj(risen_VBN_35_152, that_IN_32_138); nsubj(risen_VBN_35_152, gold_NN_33_143); aux(risen_VBN_35_152, has_VBZ_34_148); prep(risen_VBN_35_152, over_IN_36_158); pobj(over_IN_36_158, week_NN_39_172); det(week_NN_39_172, the_DT_37_163); amod(week_NN_39_172, past_JJ_38_167); num(week_NN_39_172, so_RB_41_180); cc(so_RB_41_180, or_CC_40_177); punct(said_VBD_45_190, "_``_0_0); ccomp(said_VBD_45_190, know_VB_4_11); punct(said_VBD_45_190, ,_,_42_183); punct(said_VBD_45_190, "_''_43_185); nsubj(said_VBD_45_190, he_PRP_44_187); punct(said_VBD_45_190, ._._46_195) Template {rel} of {arg1} ccomp> {slot0:postag=VB:regex=abide|accept|apologize|appoint|attend|be|betray|bring|cease|come|consider|continue|convict|count|damage|damn|decide|deliver|die|disarm|discuss|do|emerge|end|face|fit|get|give|go|guide|have|head|help|hold|issue|judge|know|lead|learn|leave|let|like|live|lose|make|meet|miss|need|place|play|pose|provide|pursue|put|receive|reign|remain|remind|return|review|say|see|sign|sit|speak|spend|stand|start|stay|stop|support|take|talk|teach|tell|try|turn|understand|veto|wait|want|win|withdraw} >nsubj> {arg2} 0.006 he ;;; he_PRP_44_187 said of ;;; said_VBD_45_190 I ;;; I_PRP_1_2 0.00600 None None 1 det(obligation_NN_2_6, The_DT_1_2); nsubj(unwarranted_JJ_5_28, obligation_NN_2_6); cop(unwarranted_JJ_5_28, is_VBZ_3_17); advmod(unwarranted_JJ_5_28, totally_RB_4_20); det(statement_NN_9_48, the_DT_8_44); punct(said_VBD_10_58, "_``_0_0); ccomp(said_VBD_10_58, unwarranted_JJ_5_28); punct(said_VBD_10_58, ,_,_6_40); punct(said_VBD_10_58, "_''_7_42); nsubj(said_VBD_10_58, statement_NN_9_48); punct(said_VBD_10_58, ._._11_63) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 The obligation ;;; The_DT_1_2; obligation_NN_2_6 is totally ;;; is_VBZ_3_17; totally_RB_4_20 unwarranted ;;; unwarranted_JJ_5_28 0.00840 None None 1 nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) Template {rel} {arg1} dobj> {arg2} 0.0416 I ;;; I_PRP_5_19 read ;;; read_VBP_6_21 a sign ;;; a_DT_7_26; sign_NN_8_28 0.04160 as_we whoosh through_16_19 None 1 nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) Template {rel} {arg1} dobj> {arg2} 0.0416 Tivoli Motel ;;; Tivoli_NNP_1_2; Motel_NNP_2_9 read ;;; read_VBP_6_21 a sign ;;; a_DT_7_26; sign_NN_8_28 0.04160 as_we whoosh through_16_19 None 1 nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 I ;;; I_PRP_5_19 read a sign in ;;; read_VBP_6_21; a_DT_7_26; sign_NN_8_28 the usual pronunciation of the name ;;; the_DT_10_36; usual_JJ_11_40; pronunciation_NN_12_46; of_IN_13_60; the_DT_14_63; name_NN_15_67 0.03070 as_we whoosh through_16_19 None 0 nn(Motel_NNP_2_9, Tivoli_NNP_1_2); punct(read_VBP_6_21, "_``_0_0); nsubj(read_VBP_6_21, Motel_NNP_2_9); punct(read_VBP_6_21, ,_,_3_15); punct(read_VBP_6_21, "_''_4_17); nsubj(read_VBP_6_21, I_PRP_5_19); dobj(read_VBP_6_21, sign_NN_8_28); prep(read_VBP_6_21, in_IN_9_33); advcl(read_VBP_6_21, whoosh_VBP_18_78); punct(read_VBP_6_21, ._._20_93); det(sign_NN_8_28, a_DT_7_26); pobj(in_IN_9_33, pronunciation_NN_12_46); det(pronunciation_NN_12_46, the_DT_10_36); amod(pronunciation_NN_12_46, usual_JJ_11_40); prep(pronunciation_NN_12_46, of_IN_13_60); pobj(of_IN_13_60, name_NN_15_67); det(name_NN_15_67, the_DT_14_63); mark(whoosh_VBP_18_78, as_IN_16_72); nsubj(whoosh_VBP_18_78, we_PRP_17_75); prt(whoosh_VBP_18_78, through_IN_19_85) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 Tivoli Motel ;;; Tivoli_NNP_1_2; Motel_NNP_2_9 read a sign in ;;; read_VBP_6_21; a_DT_7_26; sign_NN_8_28 the usual pronunciation of the name ;;; the_DT_10_36; usual_JJ_11_40; pronunciation_NN_12_46; of_IN_13_60; the_DT_14_63; name_NN_15_67 0.03070 as_we whoosh through_16_19 None 1 number($_$_0_0, 100_CD_1_2); number($_$_0_0, million_CD_2_6); num(issue_NN_3_14, $_$_0_0); prep(issue_NN_3_14, of_IN_4_20); pobj(of_IN_4_20, obligations_NNS_7_47); amod(obligations_NNS_7_47, collateralized_JJ_5_23); nn(obligations_NNS_7_47, mortgage_NN_6_38); nsubjpass(offered_VBN_10_68, issue_NN_3_14); aux(offered_VBN_10_68, is_VBZ_8_59); auxpass(offered_VBN_10_68, being_VBG_9_62); prep(offered_VBN_10_68, in_IN_11_76); prep(offered_VBN_10_68, by_IN_14_92); punct(offered_VBN_10_68, ._._19_118); pobj(in_IN_11_76, classes_NNS_13_84); num(classes_NNS_13_84, four_CD_12_79); pobj(by_IN_14_92, group_NN_18_112); det(group_NN_18_112, a_DT_15_95); nn(group_NN_18_112, Morgan_NNP_16_97); nn(group_NN_18_112, Stanley_NNP_17_104) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 $ 100 million issue of collateralized mortgage obligations ;;; $_$_0_0; 100_CD_1_2; million_CD_2_6; issue_NN_3_14; of_IN_4_20; collateralized_JJ_5_23; mortgage_NN_6_38; obligations_NN_7_47 is being offered by ;;; is_VBZ_8_59; being_VBG_9_62; offered_VBN_10_68 a Morgan Stanley group ;;; a_DT_15_95; Morgan_NNP_16_97; Stanley_NNP_17_104; group_NN_18_112 1.00000 None None 1 number($_$_0_0, 100_CD_1_2); number($_$_0_0, million_CD_2_6); num(issue_NN_3_14, $_$_0_0); prep(issue_NN_3_14, of_IN_4_20); pobj(of_IN_4_20, obligations_NNS_7_47); amod(obligations_NNS_7_47, collateralized_JJ_5_23); nn(obligations_NNS_7_47, mortgage_NN_6_38); nsubjpass(offered_VBN_10_68, issue_NN_3_14); aux(offered_VBN_10_68, is_VBZ_8_59); auxpass(offered_VBN_10_68, being_VBG_9_62); prep(offered_VBN_10_68, in_IN_11_76); prep(offered_VBN_10_68, by_IN_14_92); punct(offered_VBN_10_68, ._._19_118); pobj(in_IN_11_76, classes_NNS_13_84); num(classes_NNS_13_84, four_CD_12_79); pobj(by_IN_14_92, group_NN_18_112); det(group_NN_18_112, a_DT_15_95); nn(group_NN_18_112, Morgan_NNP_16_97); nn(group_NN_18_112, Stanley_NNP_17_104) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 $ 100 million issue of collateralized mortgage obligations ;;; $_$_0_0; 100_CD_1_2; million_CD_2_6; issue_NN_3_14; of_IN_4_20; collateralized_JJ_5_23; mortgage_NN_6_38; obligations_NN_7_47 is being offered in ;;; is_VBZ_8_59; being_VBG_9_62; offered_VBN_10_68 four classes ;;; four_CD_12_79; classes_NN_13_84 1.00000 None None 1 num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Dr. Erik I. Asphaug ;;; Dr._NNP_7_38; Erik_NNP_8_42; I._NNP_9_47; Asphaug_NNP_10_50 be recipient of ;;; recipient_NN_12_60 the 1998 H. C. Urey Prize and a professor ;;; the_DT_14_73; 1998_CD_15_77; H._NNP_16_82; C._NNP_17_85; Urey_NNP_18_88; Prize_NNP_19_93; and_CC_20_99; a_DT_21_103; professor_NN_22_105 0.40310 None None 1 num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 an asteroid ;;; an_DT_3_16; asteroid_NN_4_19 be named for ;;; named_VBN_5_28 Dr. Erik I. Asphaug ;;; Dr._NNP_7_38; Erik_NNP_8_42; I._NNP_9_47; Asphaug_NNP_10_50 0.11100 None None 1 num(Asphaug_NNP_1_5, 7939_CD_0_0); nsubj(asteroid_NN_4_19, Asphaug_NNP_1_5); cop(asteroid_NN_4_19, is_VBZ_2_13); det(asteroid_NN_4_19, an_DT_3_16); partmod(asteroid_NN_4_19, named_VBN_5_28); punct(asteroid_NN_4_19, ._._31_159); prep(named_VBN_5_28, for_IN_6_34); pobj(for_IN_6_34, Asphaug_NNP_10_50); nn(Asphaug_NNP_10_50, Dr._NNP_7_38); nn(Asphaug_NNP_10_50, Erik_NNP_8_42); nn(Asphaug_NNP_10_50, I._NNP_9_47); punct(Asphaug_NNP_10_50, ,_,_11_58); appos(Asphaug_NNP_10_50, recipient_NN_12_60); prep(recipient_NN_12_60, of_IN_13_70); pobj(of_IN_13_70, Prize_NNP_19_93); det(Prize_NNP_19_93, the_DT_14_73); num(Prize_NNP_19_93, 1998_CD_15_77); nn(Prize_NNP_19_93, H._NNP_16_82); nn(Prize_NNP_19_93, C._NNP_17_85); nn(Prize_NNP_19_93, Urey_NNP_18_88); cc(Prize_NNP_19_93, and_CC_20_99); conj(Prize_NNP_19_93, professor_NN_22_105); det(professor_NN_22_105, a_DT_21_103); prep(professor_NN_22_105, at_IN_23_115); punct(professor_NN_22_105, ,_,_28_146); appos(professor_NN_22_105, Cruz_NNP_30_154); pobj(at_IN_23_115, University_NNP_25_122); det(University_NNP_25_122, the_DT_24_118); prep(University_NNP_25_122, of_IN_26_133); pobj(of_IN_26_133, California_NNP_27_136); nn(Cruz_NNP_30_154, Santa_NNP_29_148) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 7939 Asphaug ;;; 7939_CD_0_0; Asphaug_NNP_1_5 is ;;; is_VBZ_2_13 an asteroid named for Dr. Erik I. Asphaug , recipient of the 1998 H. C. Urey Prize and a professor at the University of California , Santa Cruz ;;; an_DT_3_16; asteroid_NN_4_19; named_VBN_5_28; for_IN_6_34; Dr._NNP_7_38; Erik_NNP_8_42; I._NNP_9_47; Asphaug_NNP_10_50; ,_,_11_58; recipient_NN_12_60; of_IN_13_70; the_DT_14_73; 1998_CD_15_77; H._NNP_16_82; C._NNP_17_85; Urey_NNP_18_88; Prize_NNP_19_93; and_CC_20_99; a_DT_21_103; professor_NN_22_105; at_IN_23_115; the_DT_24_118; University_NNP_25_122; of_IN_26_133; California_NNP_27_136; ,_,_28_146; Santa_NNP_29_148; Cruz_NNP_30_154 0.00840 None None 1 det(collection_NN_1_2, A_DT_0_0); prep(collection_NN_1_2, of_IN_2_13); pobj(of_IN_2_13, art_NN_4_20); poss(art_NN_4_20, her_PRP$_3_16); nsubjpass(displayed_VBN_6_28, collection_NN_1_2); auxpass(displayed_VBN_6_28, was_VBD_5_24); prep(displayed_VBN_6_28, at_IN_7_38); prep(displayed_VBN_6_28, by_IN_12_65); punct(displayed_VBN_6_28, ._._18_106); pobj(at_IN_7_38, exhibition_NN_9_44); det(exhibition_NN_9_44, an_DT_8_41); prep(exhibition_NN_9_44, in_IN_10_55); pobj(in_IN_10_55, Tehran_NNP_11_58); pobj(by_IN_12_65, supporters_NNS_13_68); partmod(supporters_NNS_13_68, campaigning_VBG_14_79); xcomp(campaigning_VBG_14_79, release_VB_16_94); aux(release_VB_16_94, to_TO_15_91); dobj(release_VB_16_94, her_PRP_17_102) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 A collection of her art ;;; A_DT_0_0; collection_NN_1_2; of_IN_2_13; her_PRP$_3_16; art_NN_4_20 was displayed at ;;; was_VBD_5_24; displayed_VBN_6_28 an exhibition ;;; an_DT_8_41; exhibition_NN_9_44 1.00000 None None 1 det(collection_NN_1_2, A_DT_0_0); prep(collection_NN_1_2, of_IN_2_13); pobj(of_IN_2_13, art_NN_4_20); poss(art_NN_4_20, her_PRP$_3_16); nsubjpass(displayed_VBN_6_28, collection_NN_1_2); auxpass(displayed_VBN_6_28, was_VBD_5_24); prep(displayed_VBN_6_28, at_IN_7_38); prep(displayed_VBN_6_28, by_IN_12_65); punct(displayed_VBN_6_28, ._._18_106); pobj(at_IN_7_38, exhibition_NN_9_44); det(exhibition_NN_9_44, an_DT_8_41); prep(exhibition_NN_9_44, in_IN_10_55); pobj(in_IN_10_55, Tehran_NNP_11_58); pobj(by_IN_12_65, supporters_NNS_13_68); partmod(supporters_NNS_13_68, campaigning_VBG_14_79); xcomp(campaigning_VBG_14_79, release_VB_16_94); aux(release_VB_16_94, to_TO_15_91); dobj(release_VB_16_94, her_PRP_17_102) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 A collection of her art ;;; A_DT_0_0; collection_NN_1_2; of_IN_2_13; her_PRP$_3_16; art_NN_4_20 was displayed by ;;; was_VBD_5_24; displayed_VBN_6_28 supporters campaigning to release her ;;; supporters_NN_13_68; campaigning_VBG_14_79; to_TO_15_91; release_VB_16_94; her_PRP_17_102 1.00000 None None 1 det(axon_NN_2_13, A_DT_0_0); amod(axon_NN_2_13, myelinated_JJ_1_2); dep(axon_NN_2_13, m_NN_4_21); num(m_NN_4_21, 20_CD_3_18); prep(m_NN_4_21, in_IN_5_23); pobj(in_IN_5_23, diameter_NN_6_26); nsubj(has_VBZ_7_35, axon_NN_2_13); dobj(has_VBZ_7_35, speed_NN_10_52); advmod(has_VBZ_7_35, faster_RBR_11_58); punct(has_VBZ_7_35, ._._25_130); det(speed_NN_10_52, a_DT_8_39); nn(speed_NN_10_52, conduction_NN_9_41); dep(faster_RBR_11_58, than_IN_12_65); pobj(than_IN_12_65, that_DT_13_70); prep(that_DT_13_70, of_IN_14_75); pobj(of_IN_14_75, axon_NN_18_92); det(axon_NN_18_92, a_DT_15_78); amod(axon_NN_18_92, squid_JJ_16_80); amod(axon_NN_18_92, giant_JJ_17_86); prep(axon_NN_18_92, with_IN_19_97); pobj(with_IN_19_97, diameter_NN_21_104); det(diameter_NN_21_104, a_DT_20_102); dep(diameter_NN_21_104, greater_JJR_24_122); number(times_NNS_23_116, 40_CD_22_113); num(greater_JJR_24_122, times_NNS_23_116) Template {rel} {arg1} dobj> {arg2} 0.1443 A myelinated axon ;;; A_DT_0_0; myelinated_JJ_1_2; axon_NN_2_13 has ;;; has_VBZ_7_35 a conduction speed ;;; a_DT_8_39; conduction_NN_9_41; speed_NN_10_52 0.14430 None None 1 det(seed_NN_1_2, A_DT_0_0); nsubj(embryo_NN_4_13, seed_NN_1_2); cop(embryo_NN_4_13, is_VBZ_2_7); det(embryo_NN_4_13, an_DT_3_10); partmod(embryo_NN_4_13, packaged_VBN_5_20); punct(embryo_NN_4_13, ._._15_81); prep(packaged_VBN_5_20, with_IN_6_29); pobj(with_IN_6_29, supply_NN_8_36); det(supply_NN_8_36, a_DT_7_34); prep(supply_NN_8_36, of_IN_9_43); pobj(of_IN_9_43, nutrients_NNS_10_46); prep(nutrients_NNS_10_46, inside_IN_11_56); pobj(inside_IN_11_56, coat_NN_14_76); det(coat_NN_14_76, a_DT_12_63); amod(coat_NN_14_76, protective_JJ_13_65) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 an embryo ;;; an_DT_3_10; embryo_NN_4_13 be packaged with ;;; packaged_VBN_5_20 a supply of nutrients ;;; a_DT_7_34; supply_NN_8_36; of_IN_9_43; nutrients_NN_10_46 0.11100 None None 1 det(seed_NN_1_2, A_DT_0_0); nsubj(embryo_NN_4_13, seed_NN_1_2); cop(embryo_NN_4_13, is_VBZ_2_7); det(embryo_NN_4_13, an_DT_3_10); partmod(embryo_NN_4_13, packaged_VBN_5_20); punct(embryo_NN_4_13, ._._15_81); prep(packaged_VBN_5_20, with_IN_6_29); pobj(with_IN_6_29, supply_NN_8_36); det(supply_NN_8_36, a_DT_7_34); prep(supply_NN_8_36, of_IN_9_43); pobj(of_IN_9_43, nutrients_NNS_10_46); prep(nutrients_NNS_10_46, inside_IN_11_56); pobj(inside_IN_11_56, coat_NN_14_76); det(coat_NN_14_76, a_DT_12_63); amod(coat_NN_14_76, protective_JJ_13_65) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 A seed ;;; A_DT_0_0; seed_NN_1_2 is ;;; is_VBZ_2_7 an embryo packaged with a supply of nutrients inside a protective coat ;;; an_DT_3_10; embryo_NN_4_13; packaged_VBN_5_20; with_IN_6_29; a_DT_7_34; supply_NN_8_36; of_IN_9_43; nutrients_NN_10_46; inside_IN_11_56; a_DT_12_63; protective_JJ_13_65; coat_NN_14_76 0.00840 None None 1 det(phage_NN_2_12, A_DT_0_0); amod(phage_NN_2_12, temperate_JJ_1_2); nsubj(called_VBD_3_18, phage_NN_2_12); dobj(called_VBD_3_18, lambda_NN_4_25); parataxis(called_VBD_3_18, used_VBN_14_77); punct(called_VBD_3_18, ._._18_105); punct(lambda_NN_4_25, ,_,_5_32); partmod(lambda_NN_4_25, written_VBN_6_34); prep(written_VBN_6_34, with_IN_7_42); pobj(with_IN_7_42, letter_NN_10_57); det(letter_NN_10_57, the_DT_8_47); nn(letter_NN_10_57, Greek_NNP_9_51); punct(used_VBN_14_77, ,_,_11_65); auxpass(used_VBN_14_77, is_VBZ_12_67); advmod(used_VBN_14_77, widely_RB_13_70); prep(used_VBN_14_77, in_IN_15_82); pobj(in_IN_15_82, research_NN_17_96); amod(research_NN_17_96, biological_JJ_16_85) Template {rel} {arg1} dobj> {arg2} 0.3797 A temperate phage ;;; A_DT_0_0; temperate_JJ_1_2; phage_NN_2_12 called ;;; called_VBD_3_18 lambda written with the Greek letter ;;; lambda_NN_4_25; written_VBN_6_34; with_IN_7_42; the_DT_8_47; Greek_NNP_9_51; letter_NN_10_57 0.37970 None None 1 det(phage_NN_2_12, A_DT_0_0); amod(phage_NN_2_12, temperate_JJ_1_2); nsubj(called_VBD_3_18, phage_NN_2_12); dobj(called_VBD_3_18, lambda_NN_4_25); parataxis(called_VBD_3_18, used_VBN_14_77); punct(called_VBD_3_18, ._._18_105); punct(lambda_NN_4_25, ,_,_5_32); partmod(lambda_NN_4_25, written_VBN_6_34); prep(written_VBN_6_34, with_IN_7_42); pobj(with_IN_7_42, letter_NN_10_57); det(letter_NN_10_57, the_DT_8_47); nn(letter_NN_10_57, Greek_NNP_9_51); punct(used_VBN_14_77, ,_,_11_65); auxpass(used_VBN_14_77, is_VBZ_12_67); advmod(used_VBN_14_77, widely_RB_13_70); prep(used_VBN_14_77, in_IN_15_82); pobj(in_IN_15_82, research_NN_17_96); amod(research_NN_17_96, biological_JJ_16_85) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 lambda ;;; lambda_NN_4_25 be written with ;;; written_VBN_6_34 the Greek letter ;;; the_DT_8_47; Greek_NNP_9_51; letter_NN_10_57 0.11100 None None 1 nsubj(refused_VBD_2_16, Achmat_NNP_0_0); advmod(refused_VBD_2_16, publicly_RB_1_7); xcomp(refused_VBD_2_16, take_VB_4_27); punct(refused_VBD_2_16, ._._34_194); aux(take_VB_4_27, to_TO_3_24); dobj(take_VB_4_27, medications_NNS_6_37); advcl(take_VB_4_27, had_VBD_12_75); nn(medications_NNS_6_37, AIDS_NNP_5_32); rcmod(all_DT_8_55, needed_VBD_10_63); nsubj(needed_VBD_10_63, who_WP_9_59); dobj(needed_VBD_10_63, them_PRP_11_70); mark(had_VBD_12_75, until_IN_7_49); nsubj(had_VBD_12_75, all_DT_8_55); dobj(had_VBD_12_75, access_NN_13_79); prep(access_NN_13_79, to_TO_14_86); punct(access_NN_13_79, ,_,_16_94); rcmod(access_NN_13_79, drew_VBD_18_102); pobj(to_TO_14_86, them_PRP_15_89); nsubj(drew_VBD_18_102, which_WDT_17_96); dobj(drew_VBD_18_102, Mandela_NNP_22_131); xcomp(drew_VBD_18_102, plead_VB_24_142); amod(Mandela_NNP_22_131, former_JJ_19_107); nn(Mandela_NNP_22_131, President_NNP_20_114); nn(Mandela_NNP_22_131, Nelson_NNP_21_124); aux(plead_VB_24_142, to_TO_23_139); prep(plead_VB_24_142, with_IN_25_148); prep(plead_VB_24_142, at_IN_27_160); pobj(with_IN_25_148, Achmat_NNP_26_153); pobj(at_IN_27_160, home_NN_29_167); poss(home_NN_29_167, his_PRP$_28_163); infmod(home_NN_29_167, begin_VB_31_175); aux(begin_VB_31_175, to_TO_30_172); dobj(begin_VB_31_175, therapy_NN_33_186); nn(therapy_NN_33_186, drug_NN_32_181) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 Achmat ;;; Achmat_NNP_0_0 publicly refused to take ;;; publicly_RB_1_7; refused_VBD_2_16; to_TO_3_24; take_VB_4_27 AIDS medications ;;; AIDS_NNP_5_32; medications_NN_6_37 0.37970 until_all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy_7_33 None 0 nsubj(refused_VBD_2_16, Achmat_NNP_0_0); advmod(refused_VBD_2_16, publicly_RB_1_7); xcomp(refused_VBD_2_16, take_VB_4_27); punct(refused_VBD_2_16, ._._34_194); aux(take_VB_4_27, to_TO_3_24); dobj(take_VB_4_27, medications_NNS_6_37); advcl(take_VB_4_27, had_VBD_12_75); nn(medications_NNS_6_37, AIDS_NNP_5_32); rcmod(all_DT_8_55, needed_VBD_10_63); nsubj(needed_VBD_10_63, who_WP_9_59); dobj(needed_VBD_10_63, them_PRP_11_70); mark(had_VBD_12_75, until_IN_7_49); nsubj(had_VBD_12_75, all_DT_8_55); dobj(had_VBD_12_75, access_NN_13_79); prep(access_NN_13_79, to_TO_14_86); punct(access_NN_13_79, ,_,_16_94); rcmod(access_NN_13_79, drew_VBD_18_102); pobj(to_TO_14_86, them_PRP_15_89); nsubj(drew_VBD_18_102, which_WDT_17_96); dobj(drew_VBD_18_102, Mandela_NNP_22_131); xcomp(drew_VBD_18_102, plead_VB_24_142); amod(Mandela_NNP_22_131, former_JJ_19_107); nn(Mandela_NNP_22_131, President_NNP_20_114); nn(Mandela_NNP_22_131, Nelson_NNP_21_124); aux(plead_VB_24_142, to_TO_23_139); prep(plead_VB_24_142, with_IN_25_148); prep(plead_VB_24_142, at_IN_27_160); pobj(with_IN_25_148, Achmat_NNP_26_153); pobj(at_IN_27_160, home_NN_29_167); poss(home_NN_29_167, his_PRP$_28_163); infmod(home_NN_29_167, begin_VB_31_175); aux(begin_VB_31_175, to_TO_30_172); dobj(begin_VB_31_175, therapy_NN_33_186); nn(therapy_NN_33_186, drug_NN_32_181) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0195 Achmat ;;; Achmat_NNP_0_0 to take ;;; to_TO_3_24; take_VB_4_27 AIDS medications ;;; AIDS_NNP_5_32; medications_NN_6_37 0.01950 until_all who needed them had access to them , which drew former President Nelson Mandela to plead with Achmat at his home to begin drug therapy_7_33 None 1 nn(potentials_NNS_1_7, Action_NNP_0_0); nsubj(spread_VB_4_32, potentials_NNS_1_7); aux(spread_VB_4_32, can_MD_2_18); advmod(spread_VB_4_32, therefore_RB_3_22); prep(spread_VB_4_32, along_IN_5_39); punct(spread_VB_4_32, ,_,_7_51); xcomp(spread_VB_4_32, making_VBG_8_53); punct(spread_VB_4_32, ._._19_123); pobj(along_IN_5_39, axons_NNS_6_45); xcomp(making_VBG_8_53, suited_VBN_11_70); nsubj(suited_VBN_11_70, them_PRP_9_60); advmod(suited_VBN_11_70, well_RB_10_65); prep(suited_VBN_11_70, for_IN_12_77); pcomp(for_IN_12_77, transmitting_VBG_13_81); dobj(transmitting_VBG_13_81, signal_NN_15_96); prep(transmitting_VBG_13_81, over_IN_16_103); det(signal_NN_15_96, a_DT_14_94); pobj(over_IN_16_103, distances_NNS_18_113); amod(distances_NNS_18_113, long_JJ_17_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 Action potentials ;;; Action_NNP_0_0; potentials_NN_1_7 can therefore spread along ;;; can_MD_2_18; therefore_RB_3_22; spread_VB_4_32 axons ;;; axons_NN_6_45 0.13490 None None 1 nn(potentials_NNS_1_7, Action_NNP_0_0); nsubj(spread_VB_4_32, potentials_NNS_1_7); aux(spread_VB_4_32, can_MD_2_18); advmod(spread_VB_4_32, therefore_RB_3_22); prep(spread_VB_4_32, along_IN_5_39); punct(spread_VB_4_32, ,_,_7_51); xcomp(spread_VB_4_32, making_VBG_8_53); punct(spread_VB_4_32, ._._19_123); pobj(along_IN_5_39, axons_NNS_6_45); xcomp(making_VBG_8_53, suited_VBN_11_70); nsubj(suited_VBN_11_70, them_PRP_9_60); advmod(suited_VBN_11_70, well_RB_10_65); prep(suited_VBN_11_70, for_IN_12_77); pcomp(for_IN_12_77, transmitting_VBG_13_81); dobj(transmitting_VBG_13_81, signal_NN_15_96); prep(transmitting_VBG_13_81, over_IN_16_103); det(signal_NN_15_96, a_DT_14_94); pobj(over_IN_16_103, distances_NNS_18_113); amod(distances_NNS_18_113, long_JJ_17_108) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 a signal ;;; a_DT_14_94; signal_NN_15_96 be transmitting over ;;; transmitting_VBG_13_81 long distances ;;; long_JJ_17_108; distances_NN_18_113 0.00790 None None 1 pobj(After_IN_0_0, CSKA_NNP_1_6); prep(qualified_VBD_2_11, After_IN_0_0); prep(qualified_VBD_2_11, for_IN_3_21); pobj(for_IN_3_21, round_NN_5_29); det(round_NN_5_29, the_DT_4_25); prep(round_NN_5_29, of_IN_6_35); pobj(of_IN_6_35, 16_CD_7_38); prep(16_CD_7_38, of_IN_8_41); pobj(of_IN_8_41, Cup_NNP_11_53); det(Cup_NNP_11_53, the_DT_9_44); nn(Cup_NNP_11_53, UEFA_NNP_10_48); num(Cup_NNP_11_53, 2008_CD_12_57); advcl(called_VBN_16_71, qualified_VBD_2_11); punct(called_VBN_16_71, ,_,_13_62); nsubjpass(called_VBN_16_71, he_PRP_14_64); auxpass(called_VBN_16_71, was_VBD_15_67); advmod(called_VBN_16_71, back_RB_17_78); prep(called_VBN_16_71, from_IN_18_83); cc(called_VBN_16_71, and_CC_21_97); conj(called_VBN_16_71, registered_VBN_27_122); punct(called_VBN_16_71, ._._32_150); pobj(from_IN_18_83, loan_NN_20_92); det(loan_NN_20_92, the_DT_19_88); pobj(on_IN_22_101, March_NNP_24_107); num(March_NNP_24_107, 12_CD_23_104); num(March_NNP_24_107, 2009_CD_25_113); prep(registered_VBN_27_122, on_IN_22_101); auxpass(registered_VBN_27_122, was_VBD_26_118); prep(registered_VBN_27_122, as_IN_28_133); pobj(as_IN_28_133, player_NN_31_143); det(player_NN_31_143, a_DT_29_136); nn(player_NN_31_143, CSKA_NNP_30_138) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_14_64 was called back from ;;; was_VBD_15_67; called_VBN_16_71; back_RB_17_78 the loan ;;; the_DT_19_88; loan_NN_20_92 1.00000 CSKA_qualified for the round of 16 of the UEFA Cup 2008_1_12 None 1 pobj(After_IN_0_0, CSKA_NNP_1_6); prep(qualified_VBD_2_11, After_IN_0_0); prep(qualified_VBD_2_11, for_IN_3_21); pobj(for_IN_3_21, round_NN_5_29); det(round_NN_5_29, the_DT_4_25); prep(round_NN_5_29, of_IN_6_35); pobj(of_IN_6_35, 16_CD_7_38); prep(16_CD_7_38, of_IN_8_41); pobj(of_IN_8_41, Cup_NNP_11_53); det(Cup_NNP_11_53, the_DT_9_44); nn(Cup_NNP_11_53, UEFA_NNP_10_48); num(Cup_NNP_11_53, 2008_CD_12_57); advcl(called_VBN_16_71, qualified_VBD_2_11); punct(called_VBN_16_71, ,_,_13_62); nsubjpass(called_VBN_16_71, he_PRP_14_64); auxpass(called_VBN_16_71, was_VBD_15_67); advmod(called_VBN_16_71, back_RB_17_78); prep(called_VBN_16_71, from_IN_18_83); cc(called_VBN_16_71, and_CC_21_97); conj(called_VBN_16_71, registered_VBN_27_122); punct(called_VBN_16_71, ._._32_150); pobj(from_IN_18_83, loan_NN_20_92); det(loan_NN_20_92, the_DT_19_88); pobj(on_IN_22_101, March_NNP_24_107); num(March_NNP_24_107, 12_CD_23_104); num(March_NNP_24_107, 2009_CD_25_113); prep(registered_VBN_27_122, on_IN_22_101); auxpass(registered_VBN_27_122, was_VBD_26_118); prep(registered_VBN_27_122, as_IN_28_133); pobj(as_IN_28_133, player_NN_31_143); det(player_NN_31_143, a_DT_29_136); nn(player_NN_31_143, CSKA_NNP_30_138) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_14_64 was registered as ;;; was_VBD_26_118; registered_VBN_27_122 a CSKA player ;;; a_DT_29_136; CSKA_NNP_30_138; player_NN_31_143 1.00000 None None 1 pobj(After_IN_0_0, CSKA_NNP_1_6); prep(qualified_VBD_2_11, After_IN_0_0); prep(qualified_VBD_2_11, for_IN_3_21); pobj(for_IN_3_21, round_NN_5_29); det(round_NN_5_29, the_DT_4_25); prep(round_NN_5_29, of_IN_6_35); pobj(of_IN_6_35, 16_CD_7_38); prep(16_CD_7_38, of_IN_8_41); pobj(of_IN_8_41, Cup_NNP_11_53); det(Cup_NNP_11_53, the_DT_9_44); nn(Cup_NNP_11_53, UEFA_NNP_10_48); num(Cup_NNP_11_53, 2008_CD_12_57); advcl(called_VBN_16_71, qualified_VBD_2_11); punct(called_VBN_16_71, ,_,_13_62); nsubjpass(called_VBN_16_71, he_PRP_14_64); auxpass(called_VBN_16_71, was_VBD_15_67); advmod(called_VBN_16_71, back_RB_17_78); prep(called_VBN_16_71, from_IN_18_83); cc(called_VBN_16_71, and_CC_21_97); conj(called_VBN_16_71, registered_VBN_27_122); punct(called_VBN_16_71, ._._32_150); pobj(from_IN_18_83, loan_NN_20_92); det(loan_NN_20_92, the_DT_19_88); pobj(on_IN_22_101, March_NNP_24_107); num(March_NNP_24_107, 12_CD_23_104); num(March_NNP_24_107, 2009_CD_25_113); prep(registered_VBN_27_122, on_IN_22_101); auxpass(registered_VBN_27_122, was_VBD_26_118); prep(registered_VBN_27_122, as_IN_28_133); pobj(as_IN_28_133, player_NN_31_143); det(player_NN_31_143, a_DT_29_136); nn(player_NN_31_143, CSKA_NNP_30_138) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_14_64 was registered on ;;; was_VBD_26_118; registered_VBN_27_122 12 March 2009 ;;; 12_CD_23_104; March_NNP_24_107; 2009_CD_25_113 1.00000 None None 1 pobj(After_IN_0_0, Jim_NNP_1_6); prep(stops_VBZ_2_10, After_IN_0_0); ccomp(stops_VBZ_2_10, phones_VBZ_6_27); punct(stops_VBZ_2_10, ._._32_163); complm(phones_VBZ_6_27, by_IN_3_16); punct(phones_VBZ_6_27, ,_,_4_19); nsubj(phones_VBZ_6_27, Susan_NNP_5_21); dobj(phones_VBZ_6_27, agency_NN_10_50); xcomp(phones_VBZ_6_27, tell_VB_12_60); det(agency_NN_10_50, the_DT_7_34); amod(agency_NN_10_50, real_JJ_8_38); nn(agency_NN_10_50, estate_NN_9_43); aux(tell_VB_12_60, to_TO_11_57); dobj(tell_VB_12_60, Jerry_NNP_13_65); ccomp(tell_VB_12_60, looking_VBG_17_88); punct(tell_VB_12_60, ,_,_20_104); dep(tell_VB_12_60, informed_VBN_24_117); complm(looking_VBG_17_88, that_IN_14_71); nsubj(looking_VBG_17_88, someone_NN_15_76); aux(looking_VBG_17_88, was_VBD_16_84); prep(looking_VBG_17_88, for_IN_18_96); pobj(for_IN_18_96, him_PRP_19_100); advmod(informed_VBN_24_117, only_RB_21_106); aux(informed_VBN_24_117, to_TO_22_111); auxpass(informed_VBN_24_117, be_VB_23_114); ccomp(informed_VBN_24_117, quit_VBN_28_141); complm(quit_VBN_28_141, that_IN_25_126); nsubj(quit_VBN_28_141, Jerry_NNP_26_131); aux(quit_VBN_28_141, had_VBD_27_137); advmod(quit_VBN_28_141, ago_RB_31_159); amod(days_NNS_30_154, several_JJ_29_146); dep(ago_RB_31_159, days_NNS_30_154) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1443 Susan ;;; Susan_NNP_5_21 phones the real estate agency to tell ;;; phones_VBZ_6_27; the_DT_7_34; real_JJ_8_38; estate_NN_9_43; agency_NN_10_50; to_TO_11_57; tell_VB_12_60 Jerry ;;; Jerry_NNP_13_65 0.14430 None None 1 pobj(After_IN_0_0, Jim_NNP_1_6); prep(stops_VBZ_2_10, After_IN_0_0); ccomp(stops_VBZ_2_10, phones_VBZ_6_27); punct(stops_VBZ_2_10, ._._32_163); complm(phones_VBZ_6_27, by_IN_3_16); punct(phones_VBZ_6_27, ,_,_4_19); nsubj(phones_VBZ_6_27, Susan_NNP_5_21); dobj(phones_VBZ_6_27, agency_NN_10_50); xcomp(phones_VBZ_6_27, tell_VB_12_60); det(agency_NN_10_50, the_DT_7_34); amod(agency_NN_10_50, real_JJ_8_38); nn(agency_NN_10_50, estate_NN_9_43); aux(tell_VB_12_60, to_TO_11_57); dobj(tell_VB_12_60, Jerry_NNP_13_65); ccomp(tell_VB_12_60, looking_VBG_17_88); punct(tell_VB_12_60, ,_,_20_104); dep(tell_VB_12_60, informed_VBN_24_117); complm(looking_VBG_17_88, that_IN_14_71); nsubj(looking_VBG_17_88, someone_NN_15_76); aux(looking_VBG_17_88, was_VBD_16_84); prep(looking_VBG_17_88, for_IN_18_96); pobj(for_IN_18_96, him_PRP_19_100); advmod(informed_VBN_24_117, only_RB_21_106); aux(informed_VBN_24_117, to_TO_22_111); auxpass(informed_VBN_24_117, be_VB_23_114); ccomp(informed_VBN_24_117, quit_VBN_28_141); complm(quit_VBN_28_141, that_IN_25_126); nsubj(quit_VBN_28_141, Jerry_NNP_26_131); aux(quit_VBN_28_141, had_VBD_27_137); advmod(quit_VBN_28_141, ago_RB_31_159); amod(days_NNS_30_154, several_JJ_29_146); dep(ago_RB_31_159, days_NNS_30_154) Template {rel} {arg1} dobj> {arg2} 0.1443 Susan ;;; Susan_NNP_5_21 phones ;;; phones_VBZ_6_27 the real estate agency ;;; the_DT_7_34; real_JJ_8_38; estate_NN_9_43; agency_NN_10_50 0.14430 None None 1 pobj(After_IN_0_0, Jim_NNP_1_6); prep(stops_VBZ_2_10, After_IN_0_0); ccomp(stops_VBZ_2_10, phones_VBZ_6_27); punct(stops_VBZ_2_10, ._._32_163); complm(phones_VBZ_6_27, by_IN_3_16); punct(phones_VBZ_6_27, ,_,_4_19); nsubj(phones_VBZ_6_27, Susan_NNP_5_21); dobj(phones_VBZ_6_27, agency_NN_10_50); xcomp(phones_VBZ_6_27, tell_VB_12_60); det(agency_NN_10_50, the_DT_7_34); amod(agency_NN_10_50, real_JJ_8_38); nn(agency_NN_10_50, estate_NN_9_43); aux(tell_VB_12_60, to_TO_11_57); dobj(tell_VB_12_60, Jerry_NNP_13_65); ccomp(tell_VB_12_60, looking_VBG_17_88); punct(tell_VB_12_60, ,_,_20_104); dep(tell_VB_12_60, informed_VBN_24_117); complm(looking_VBG_17_88, that_IN_14_71); nsubj(looking_VBG_17_88, someone_NN_15_76); aux(looking_VBG_17_88, was_VBD_16_84); prep(looking_VBG_17_88, for_IN_18_96); pobj(for_IN_18_96, him_PRP_19_100); advmod(informed_VBN_24_117, only_RB_21_106); aux(informed_VBN_24_117, to_TO_22_111); auxpass(informed_VBN_24_117, be_VB_23_114); ccomp(informed_VBN_24_117, quit_VBN_28_141); complm(quit_VBN_28_141, that_IN_25_126); nsubj(quit_VBN_28_141, Jerry_NNP_26_131); aux(quit_VBN_28_141, had_VBD_27_137); advmod(quit_VBN_28_141, ago_RB_31_159); amod(days_NNS_30_154, several_JJ_29_146); dep(ago_RB_31_159, days_NNS_30_154) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393 someone ;;; someone_NN_15_76 was looking for ;;; was_VBD_16_84; looking_VBG_17_88 him ;;; him_PRP_19_100 0.03930 None None 1 pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Riley ;;; Riley_NNP_8_49 re-emerged after ;;; re-emerged_VBD_9_55 a hiatus ;;; a_DT_1_6; hiatus_NN_2_8 0.73450 None None 1 pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Riley ;;; Riley_NNP_8_49 re-emerged as ;;; re-emerged_VBD_9_55 a star ;;; a_DT_15_88; star_NN_16_90 0.73450 None None 1 pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Riley ;;; Riley_NNP_8_49 re-emerged in ;;; re-emerged_VBD_9_55 the early 2000s ;;; the_DT_11_69; early_JJ_12_73; 2000s_CD_13_79 0.73450 None None 0 pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 Madea 's Class Reunion ;;; Madea_NNP_30_175; 's_POS_31_181; Class_NNP_32_184; Reunion_NNP_33_190 Goes to ;;; Goes_VBZ_36_206 Jail ;;; Jail_NNP_38_214 0.24440 Why_Did I Get Married_40_44 None 0 pobj(After_IN_0_0, hiatus_NN_2_8); det(hiatus_NN_2_8, a_DT_1_6); prep(hiatus_NN_2_8, from_IN_3_15); pobj(from_IN_3_15, industry_NN_6_38); det(industry_NN_6_38, the_DT_4_20); nn(industry_NN_6_38, entertainment_NN_5_24); prep(re-emerged_VBD_9_55, After_IN_0_0); punct(re-emerged_VBD_9_55, ,_,_7_47); nsubj(re-emerged_VBD_9_55, Riley_NNP_8_49); prep(re-emerged_VBD_9_55, in_IN_10_66); prep(re-emerged_VBD_9_55, as_IN_14_85); punct(re-emerged_VBD_9_55, ?_._45_243); pobj(in_IN_10_66, 2000s_CD_13_79); det(2000s_CD_13_79, the_DT_11_69); amod(2000s_CD_13_79, early_JJ_12_73); pobj(as_IN_14_85, star_NN_16_90); det(star_NN_16_90, a_DT_15_88); prep(star_NN_16_90, in_IN_17_95); prep(star_NN_16_90, for_IN_23_123); punct(star_NN_16_90, ,_,_28_163); prep(star_NN_16_90, including_VBG_29_165); pobj(in_IN_17_95, number_NN_19_100); det(number_NN_19_100, a_DT_18_98); prep(number_NN_19_100, of_IN_20_107); pobj(of_IN_20_107, plays_NNS_22_117); nn(plays_NNS_22_117, gospel_NN_21_110); pobj(for_IN_23_123, Perry_NNP_27_157); amod(Perry_NNP_27_157, best-selling_JJ_24_127); nn(Perry_NNP_27_157, playwright_NN_25_140); nn(Perry_NNP_27_157, Tyler_NNP_26_151); pcomp(including_VBG_29_165, Goes_VBZ_36_206); possessive(Madea_NNP_30_175, 's_POS_31_181); poss(Reunion_NNP_33_190, Madea_NNP_30_175); nn(Reunion_NNP_33_190, Class_NNP_32_184); punct(Reunion_NNP_33_190, ,_,_34_198); appos(Reunion_NNP_33_190, Madea_NNP_35_200); nsubj(Goes_VBZ_36_206, Reunion_NNP_33_190); prep(Goes_VBZ_36_206, to_TO_37_211); advcl(Goes_VBZ_36_206, Did_VBD_41_225); pobj(to_TO_37_211, Jail_NNP_38_214); punct(Jail_NNP_38_214, ,_,_39_219); advmod(Did_VBD_41_225, Why_WRB_40_221); ccomp(Did_VBD_41_225, Married_VBN_44_235); nsubjpass(Married_VBN_44_235, I_PRP_42_229); auxpass(Married_VBN_44_235, Get_VB_43_231) Template be {rel} of {arg1} poss> {arg2} 0.0062 Madea ;;; Madea_NNP_35_200 be Class Reunion of ;;; Class_NNP_32_184; Reunion_NNP_33_190 Madea ;;; Madea_NNP_30_175 0.00620 None None 1 pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Rage ;;; Rage_NNP_17_97 left Death Row Records after ;;; left_VBD_18_102; Death_NNP_19_107; Row_NNP_20_113; Records_NNP_21_117 the release of her album and a guest-appearance ;;; the_DT_1_6; release_NN_2_10; of_IN_3_18; her_PRP$_4_21; album_NN_5_25; and_CC_6_31; a_DT_7_35; guest-appearance_NN_8_37 0.73450 None None 1 pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Rage ;;; Rage_NNP_17_97 left the music industry generally to focus on acting , appearing in an episode of Kenan & Kel after ;;; left_VBD_18_102; the_DT_23_129; music_NN_24_133; industry_NN_25_139; generally_RB_26_148; to_TO_27_158; focus_VB_28_161; on_IN_29_167; acting_VBG_30_170; ,_,_31_177; appearing_VBG_32_179; in_IN_33_189; an_DT_34_192; episode_NN_35_195; of_IN_36_203; Kenan_NNP_37_206; &_CC_38_212; Kel_NNP_39_214 the release of her album and a guest-appearance ;;; the_DT_1_6; release_NN_2_10; of_IN_3_18; her_PRP$_4_21; album_NN_5_25; and_CC_6_31; a_DT_7_35; guest-appearance_NN_8_37 0.73450 None None 1 pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) Template {rel} {arg1} dobj> {arg2} 0.3797 Rage ;;; Rage_NNP_17_97 left ;;; left_VBD_18_102 Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel ;;; Death_NNP_19_107; Row_NNP_20_113; Records_NNP_21_117; and_CC_22_125; the_DT_23_129; music_NN_24_133; industry_NN_25_139; generally_RB_26_148; to_TO_27_158; focus_VB_28_161; on_IN_29_167; acting_VBG_30_170; ,_,_31_177; appearing_VBG_32_179; in_IN_33_189; an_DT_34_192; episode_NN_35_195; of_IN_36_203; Kenan_NNP_37_206; &_CC_38_212; Kel_NNP_39_214 0.37970 None None 0 pobj(After_IN_0_0, release_NN_2_10); det(release_NN_2_10, the_DT_1_6); prep(release_NN_2_10, of_IN_3_18); cc(release_NN_2_10, and_CC_6_31); conj(release_NN_2_10, guest-appearance_NN_8_37); pobj(of_IN_3_18, album_NN_5_25); poss(album_NN_5_25, her_PRP$_4_21); det(guest-appearance_NN_8_37, a_DT_7_35); prep(guest-appearance_NN_8_37, with_IN_9_54); prep(guest-appearance_NN_8_37, alongside_IN_12_70); prep(guest-appearance_NN_8_37, in_IN_14_87); pobj(with_IN_9_54, Starr_NNP_11_64); nn(Starr_NNP_11_64, Gang_NNP_10_59); pobj(alongside_IN_12_70, Kurupt_NNP_13_80); pobj(in_IN_14_87, 1998_CD_15_90); prep(left_VBD_18_102, After_IN_0_0); punct(left_VBD_18_102, ,_,_16_95); nsubj(left_VBD_18_102, Rage_NNP_17_97); dobj(left_VBD_18_102, Records_NNP_21_117); punct(left_VBD_18_102, ._._40_218); nn(Records_NNP_21_117, Death_NNP_19_107); nn(Records_NNP_21_117, Row_NNP_20_113); cc(Records_NNP_21_117, and_CC_22_125); conj(Records_NNP_21_117, industry_NN_25_139); det(industry_NN_25_139, the_DT_23_129); nn(industry_NN_25_139, music_NN_24_133); advmod(industry_NN_25_139, generally_RB_26_148); infmod(industry_NN_25_139, focus_VB_28_161); aux(focus_VB_28_161, to_TO_27_158); prep(focus_VB_28_161, on_IN_29_167); pcomp(on_IN_29_167, acting_VBG_30_170); punct(acting_VBG_30_170, ,_,_31_177); xcomp(acting_VBG_30_170, appearing_VBG_32_179); prep(appearing_VBG_32_179, in_IN_33_189); pobj(in_IN_33_189, episode_NN_35_195); det(episode_NN_35_195, an_DT_34_192); prep(episode_NN_35_195, of_IN_36_203); pobj(of_IN_36_203, Kenan_NNP_37_206); cc(Kenan_NNP_37_206, &_CC_38_212); conj(Kenan_NNP_37_206, Kel_NNP_39_214) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Death Row Records and the music industry generally to focus on acting , appearing in an episode of Kenan & Kel ;;; Death_NNP_19_107; Row_NNP_20_113; Records_NNP_21_117; and_CC_22_125; the_DT_23_129; music_NN_24_133; industry_NN_25_139; generally_RB_26_148; to_TO_27_158; focus_VB_28_161; on_IN_29_167; acting_VBG_30_170; ,_,_31_177; appearing_VBG_32_179; in_IN_33_189; an_DT_34_192; episode_NN_35_195; of_IN_36_203; Kenan_NNP_37_206; &_CC_38_212; Kel_NNP_39_214 be left after ;;; left_VBD_18_102 the release of her album and a guest-appearance ;;; the_DT_1_6; release_NN_2_10; of_IN_3_18; her_PRP$_4_21; album_NN_5_25; and_CC_6_31; a_DT_7_35; guest-appearance_NN_8_37 0.01550 None None 1 prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Drop Trio ;;; Drop_NNP_8_40; Trio_NNP_9_45 was asked by ;;; was_VBD_10_50; asked_VBN_11_54 SugarHill Recording Studios ;;; SugarHill_NNP_13_63; Recording_NNP_14_73; Studios_NNP_15_83 1.00000 None None 0 prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 unreleased ;;; unreleased_JJ_3_16 was asked by ;;; was_VBD_10_50; asked_VBN_11_54 SugarHill Recording Studios ;;; SugarHill_NNP_13_63; Recording_NNP_14_73; Studios_NNP_15_83 1.00000 None None 1 prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a song ;;; a_DT_22_113; song_NN_23_115 Also to be record by ;;; Also_RB_0_0; to_TO_20_103; record_VB_21_106 Destiny 's Child ;;; Destiny_NNP_25_123; 's_POS_26_131; Child_NN_27_134 0.01320 None None 1 prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a song ;;; a_DT_22_113; song_NN_23_115 Also to be record for ;;; Also_RB_0_0; to_TO_20_103; record_VB_21_106 an upcoming compilation CD to be released by the studio ;;; an_DT_29_144; upcoming_JJ_30_147; compilation_NN_31_156; CD_NN_32_168; to_TO_33_171; be_VB_34_174; released_VBN_35_177; by_IN_36_186; the_DT_37_189; studio_NN_38_193 0.01320 None None 1 prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a song ;;; a_DT_22_113; song_NN_23_115 Also to be record in ;;; Also_RB_0_0; to_TO_20_103; record_VB_21_106 2003 ;;; 2003_CD_18_96 0.01320 None None 1 prep(unreleased_JJ_3_16, as_IN_4_27); dep(as_IN_4_27, of_IN_5_30); pobj(of_IN_5_30, 2009_CD_6_33); nn(Trio_NNP_9_45, Drop_NNP_8_40); mark(asked_VBN_11_54, although_IN_2_7); nsubjpass(asked_VBN_11_54, unreleased_JJ_3_16); punct(asked_VBN_11_54, ,_,_7_38); nsubjpass(asked_VBN_11_54, Trio_NNP_9_45); auxpass(asked_VBN_11_54, was_VBD_10_50); prep(asked_VBN_11_54, by_IN_12_60); pobj(by_IN_12_60, Studios_NNP_15_83); nn(Studios_NNP_15_83, SugarHill_NNP_13_63); nn(Studios_NNP_15_83, Recording_NNP_14_73); pobj(in_IN_17_93, 2003_CD_18_96); advmod(record_VB_21_106, Also_RB_0_0); punct(record_VB_21_106, ,_,_1_5); dep(record_VB_21_106, asked_VBN_11_54); punct(record_VB_21_106, ,_,_16_91); prep(record_VB_21_106, in_IN_17_93); punct(record_VB_21_106, ,_,_19_101); aux(record_VB_21_106, to_TO_20_103); dobj(record_VB_21_106, song_NN_23_115); prep(record_VB_21_106, by_IN_24_120); prep(record_VB_21_106, for_IN_28_140); punct(record_VB_21_106, ._._39_200); det(song_NN_23_115, a_DT_22_113); pobj(by_IN_24_120, Child_NN_27_134); possessive(Destiny_NNP_25_123, 's_POS_26_131); poss(Child_NN_27_134, Destiny_NNP_25_123); pobj(for_IN_28_140, CD_NN_32_168); det(CD_NN_32_168, an_DT_29_144); amod(CD_NN_32_168, upcoming_JJ_30_147); nn(CD_NN_32_168, compilation_NN_31_156); infmod(CD_NN_32_168, released_VBN_35_177); aux(released_VBN_35_177, to_TO_33_171); auxpass(released_VBN_35_177, be_VB_34_174); prep(released_VBN_35_177, by_IN_36_186); pobj(by_IN_36_186, studio_NN_38_193); det(studio_NN_38_193, the_DT_37_189) Template be {rel} {prep} {arg1} >infmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0117 an upcoming compilation CD ;;; an_DT_29_144; upcoming_JJ_30_147; compilation_NN_31_156; CD_NN_32_168 to be released by ;;; to_TO_33_171; be_VB_34_174; released_VBN_35_177 the studio ;;; the_DT_37_189; studio_NN_38_193 0.01170 None None 1 amod(immunity_NN_2_18, adaptive_JJ_1_9); mark(offers_VBZ_3_27, Although_IN_0_0); nsubj(offers_VBZ_3_27, immunity_NN_2_18); dobj(offers_VBZ_3_27, protection_NN_5_46); prep(offers_VBZ_3_27, against_IN_6_57); amod(protection_NN_5_46, significant_JJ_4_34); pobj(against_IN_6_57, range_NN_9_72); det(range_NN_9_72, a_DT_7_65); amod(range_NN_9_72, wide_JJ_8_67); prep(range_NN_9_72, of_IN_10_78); pobj(of_IN_10_78, pathogens_NNS_11_81); advcl(fail-safe_JJ_16_103, offers_VBZ_3_27); punct(fail-safe_JJ_16_103, ,_,_12_91); nsubj(fail-safe_JJ_16_103, it_PRP_13_93); cop(fail-safe_JJ_16_103, is_VBZ_14_96); neg(fail-safe_JJ_16_103, not_RB_15_99); punct(fail-safe_JJ_16_103, ._._17_113) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 adaptive immunity ;;; adaptive_JJ_1_9; immunity_NN_2_18 offers significant protection against ;;; offers_VBZ_3_27; significant_JJ_4_34; protection_NN_5_46 a wide range of pathogens ;;; a_DT_7_65; wide_JJ_8_67; range_NN_9_72; of_IN_10_78; pathogens_NN_11_81 0.24440 None None 1 amod(immunity_NN_2_18, adaptive_JJ_1_9); mark(offers_VBZ_3_27, Although_IN_0_0); nsubj(offers_VBZ_3_27, immunity_NN_2_18); dobj(offers_VBZ_3_27, protection_NN_5_46); prep(offers_VBZ_3_27, against_IN_6_57); amod(protection_NN_5_46, significant_JJ_4_34); pobj(against_IN_6_57, range_NN_9_72); det(range_NN_9_72, a_DT_7_65); amod(range_NN_9_72, wide_JJ_8_67); prep(range_NN_9_72, of_IN_10_78); pobj(of_IN_10_78, pathogens_NNS_11_81); advcl(fail-safe_JJ_16_103, offers_VBZ_3_27); punct(fail-safe_JJ_16_103, ,_,_12_91); nsubj(fail-safe_JJ_16_103, it_PRP_13_93); cop(fail-safe_JJ_16_103, is_VBZ_14_96); neg(fail-safe_JJ_16_103, not_RB_15_99); punct(fail-safe_JJ_16_103, ._._17_113) Template {rel} {arg1} dobj> {arg2} 0.1443 adaptive immunity ;;; adaptive_JJ_1_9; immunity_NN_2_18 offers ;;; offers_VBZ_3_27 significant protection ;;; significant_JJ_4_34; protection_NN_5_46 0.14430 None None 1 amod(immunity_NN_2_18, adaptive_JJ_1_9); mark(offers_VBZ_3_27, Although_IN_0_0); nsubj(offers_VBZ_3_27, immunity_NN_2_18); dobj(offers_VBZ_3_27, protection_NN_5_46); prep(offers_VBZ_3_27, against_IN_6_57); amod(protection_NN_5_46, significant_JJ_4_34); pobj(against_IN_6_57, range_NN_9_72); det(range_NN_9_72, a_DT_7_65); amod(range_NN_9_72, wide_JJ_8_67); prep(range_NN_9_72, of_IN_10_78); pobj(of_IN_10_78, pathogens_NNS_11_81); advcl(fail-safe_JJ_16_103, offers_VBZ_3_27); punct(fail-safe_JJ_16_103, ,_,_12_91); nsubj(fail-safe_JJ_16_103, it_PRP_13_93); cop(fail-safe_JJ_16_103, is_VBZ_14_96); neg(fail-safe_JJ_16_103, not_RB_15_99); punct(fail-safe_JJ_16_103, ._._17_113) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 it ;;; it_PRP_13_93 is ;;; is_VBZ_14_96 not fail-safe ;;; not_RB_15_99; fail-safe_JJ_16_103 0.00840 None None 1 det(percentages_NNS_2_15, these_DT_1_9); mark(seem_VB_4_31, Although_IN_0_0); nsubj(seem_VB_4_31, percentages_NNS_2_15); aux(seem_VB_4_31, may_MD_3_27); dobj(seem_VB_4_31, immigration_NN_8_49); amod(immigration_NN_8_49, small_JJ_5_36); punct(immigration_NN_8_49, ,_,_6_42); amod(immigration_NN_8_49, such_JJ_7_44); csubj(exchange_NN_13_88, seem_VB_4_31); cop(exchange_NN_13_88, is_VBZ_9_61); det(exchange_NN_13_88, a_DT_10_64); amod(exchange_NN_13_88, meaningful_JJ_11_66); amod(exchange_NN_13_88, biological_JJ_12_77); prep(exchange_NN_13_88, between_IN_14_97); punct(exchange_NN_13_88, ._._18_127); pobj(between_IN_14_97, populations_NNS_15_105); prep(populations_NNS_15_105, over_IN_16_117); pobj(over_IN_16_117, time_NN_17_122) Template {rel} {arg1} dobj> {arg2} 0.1473 these percentages ;;; these_DT_1_9; percentages_NN_2_15 may seem ;;; may_MD_3_27; seem_VB_4_31 small , such immigration ;;; small_JJ_5_36; ,_,_6_42; such_JJ_7_44; immigration_NN_8_49 0.14730 None None 1 nsubj(include_VBP_1_12, Amoebozoans_NNS_0_0); dobj(include_VBP_1_12, molds_NNS_3_26); punct(include_VBP_1_12, ._._9_63); amod(molds_NNS_3_26, slime_JJ_2_20); punct(molds_NNS_3_26, ,_,_4_32); appos(molds_NNS_3_26, gymnamoebas_NNP_5_34); punct(molds_NNS_3_26, ,_,_6_46); cc(molds_NNS_3_26, and_CC_7_48); advmod(molds_NNS_3_26, entamoebas_RB_8_52) Template {rel} {arg1} dobj> {arg2} 0.0416 Amoebozoans ;;; Amoebozoans_NN_0_0 include ;;; include_VBP_1_12 slime molds ;;; slime_JJ_2_20; molds_NN_3_26 0.04160 None None 1 pobj(Among_IN_0_0, nonsmokers_NNS_1_6); nn(pills_NNS_5_33, birth_NN_3_19); nn(pills_NNS_5_33, control_NN_4_25); prep(raise_VB_7_48, Among_IN_0_0); punct(raise_VB_7_48, ,_,_2_17); nsubj(raise_VB_7_48, pills_NNS_5_33); advmod(raise_VB_7_48, slightly_RB_6_39); dobj(raise_VB_7_48, risk_NN_11_65); det(woman_NN_9_56, a_DT_8_54); possessive(woman_NN_9_56, 's_POS_10_62); poss(risk_NN_11_65, woman_NN_9_56); prep(risk_NN_11_65, of_IN_12_70); pobj(of_IN_12_70, clotting_NN_15_88); amod(clotting_NN_15_88, abnormal_JJ_13_73); nn(clotting_NN_15_88, blood_NN_14_82); advcl(pressure_NN_19_110, raise_VB_7_48); punct(pressure_NN_19_110, ,_,_16_97); amod(pressure_NN_19_110, high_JJ_17_99); nn(pressure_NN_19_110, blood_NN_18_104); punct(pressure_NN_19_110, ,_,_20_119); conj(pressure_NN_19_110, attack_NN_22_127); punct(pressure_NN_19_110, ,_,_23_134); cc(pressure_NN_19_110, and_CC_24_136); conj(pressure_NN_19_110, stroke_NN_25_140); punct(pressure_NN_19_110, ._._26_147); nn(attack_NN_22_127, heart_NN_21_121) Template {rel} {arg1} dobj> {arg2} 0.1473 birth control pills ;;; birth_NN_3_19; control_NN_4_25; pills_NN_5_33 slightly raise ;;; slightly_RB_6_39; raise_VB_7_48 a woman 's risk of abnormal blood clotting ;;; a_DT_8_54; woman_NN_9_56; 's_POS_10_62; risk_NN_11_65; of_IN_12_70; abnormal_JJ_13_73; blood_NN_14_82; clotting_NN_15_88 0.14730 None None 1 pobj(Among_IN_0_0, nonsmokers_NNS_1_6); nn(pills_NNS_5_33, birth_NN_3_19); nn(pills_NNS_5_33, control_NN_4_25); prep(raise_VB_7_48, Among_IN_0_0); punct(raise_VB_7_48, ,_,_2_17); nsubj(raise_VB_7_48, pills_NNS_5_33); advmod(raise_VB_7_48, slightly_RB_6_39); dobj(raise_VB_7_48, risk_NN_11_65); det(woman_NN_9_56, a_DT_8_54); possessive(woman_NN_9_56, 's_POS_10_62); poss(risk_NN_11_65, woman_NN_9_56); prep(risk_NN_11_65, of_IN_12_70); pobj(of_IN_12_70, clotting_NN_15_88); amod(clotting_NN_15_88, abnormal_JJ_13_73); nn(clotting_NN_15_88, blood_NN_14_82); advcl(pressure_NN_19_110, raise_VB_7_48); punct(pressure_NN_19_110, ,_,_16_97); amod(pressure_NN_19_110, high_JJ_17_99); nn(pressure_NN_19_110, blood_NN_18_104); punct(pressure_NN_19_110, ,_,_20_119); conj(pressure_NN_19_110, attack_NN_22_127); punct(pressure_NN_19_110, ,_,_23_134); cc(pressure_NN_19_110, and_CC_24_136); conj(pressure_NN_19_110, stroke_NN_25_140); punct(pressure_NN_19_110, ._._26_147); nn(attack_NN_22_127, heart_NN_21_121) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 birth control pills ;;; birth_NN_3_19; control_NN_4_25; pills_NN_5_33 slightly raise a woman 's risk of abnormal blood clotting among ;;; slightly_RB_6_39; raise_VB_7_48; a_DT_8_54; woman_NN_9_56; 's_POS_10_62; risk_NN_11_65; of_IN_12_70; abnormal_JJ_13_73; blood_NN_14_82; clotting_NN_15_88 nonsmokers ;;; nonsmokers_NN_1_6 0.13490 None None 1 pobj(Among_IN_0_0, nonsmokers_NNS_1_6); nn(pills_NNS_5_33, birth_NN_3_19); nn(pills_NNS_5_33, control_NN_4_25); prep(raise_VB_7_48, Among_IN_0_0); punct(raise_VB_7_48, ,_,_2_17); nsubj(raise_VB_7_48, pills_NNS_5_33); advmod(raise_VB_7_48, slightly_RB_6_39); dobj(raise_VB_7_48, risk_NN_11_65); det(woman_NN_9_56, a_DT_8_54); possessive(woman_NN_9_56, 's_POS_10_62); poss(risk_NN_11_65, woman_NN_9_56); prep(risk_NN_11_65, of_IN_12_70); pobj(of_IN_12_70, clotting_NN_15_88); amod(clotting_NN_15_88, abnormal_JJ_13_73); nn(clotting_NN_15_88, blood_NN_14_82); advcl(pressure_NN_19_110, raise_VB_7_48); punct(pressure_NN_19_110, ,_,_16_97); amod(pressure_NN_19_110, high_JJ_17_99); nn(pressure_NN_19_110, blood_NN_18_104); punct(pressure_NN_19_110, ,_,_20_119); conj(pressure_NN_19_110, attack_NN_22_127); punct(pressure_NN_19_110, ,_,_23_134); cc(pressure_NN_19_110, and_CC_24_136); conj(pressure_NN_19_110, stroke_NN_25_140); punct(pressure_NN_19_110, ._._26_147); nn(attack_NN_22_127, heart_NN_21_121) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a woman 's risk of abnormal blood clotting ;;; a_DT_8_54; woman_NN_9_56; 's_POS_10_62; risk_NN_11_65; of_IN_12_70; abnormal_JJ_13_73; blood_NN_14_82; clotting_NN_15_88 be slightly raise among ;;; slightly_RB_6_39; raise_VB_7_48 nonsmokers ;;; nonsmokers_NN_1_6 0.01320 None None 1 pobj(Among_IN_0_0, professionals_NNS_1_6); num(%_NN_4_25, 76_CD_3_22); prep(have_VBP_5_27, Among_IN_0_0); punct(have_VBP_5_27, ,_,_2_20); nsubj(have_VBP_5_27, %_NN_4_25); dobj(have_VBP_5_27, opinion_NN_8_44); punct(have_VBP_5_27, ,_,_11_59); prep(have_VBP_5_27, compared_VBN_12_61); punct(have_VBP_5_27, ._._23_120); det(opinion_NN_8_44, a_DT_6_32); amod(opinion_NN_8_44, favorable_JJ_7_34); prep(opinion_NN_8_44, of_IN_9_52); pobj(of_IN_9_52, her_PRP_10_55); dep(compared_VBN_12_61, to_TO_13_70); pobj(to_TO_13_70, %_NN_15_76); num(%_NN_15_76, 62_CD_14_73); rcmod(%_NN_15_76, approve_VB_17_82); nsubj(approve_VB_17_82, who_WP_16_78); prep(approve_VB_17_82, of_IN_18_90); pobj(of_IN_18_90, performance_NN_22_108); poss(husband_NN_20_97, her_PRP$_19_93); possessive(husband_NN_20_97, 's_POS_21_105); poss(performance_NN_22_108, husband_NN_20_97) Template {rel} {arg1} dobj> {arg2} 0.0416 76 % ;;; 76_CD_3_22; %_NN_4_25 have ;;; have_VBP_5_27 a favorable opinion of her ;;; a_DT_6_32; favorable_JJ_7_34; opinion_NN_8_44; of_IN_9_52; her_PRP_10_55 0.04160 None None 1 pobj(Among_IN_0_0, professionals_NNS_1_6); num(%_NN_4_25, 76_CD_3_22); prep(have_VBP_5_27, Among_IN_0_0); punct(have_VBP_5_27, ,_,_2_20); nsubj(have_VBP_5_27, %_NN_4_25); dobj(have_VBP_5_27, opinion_NN_8_44); punct(have_VBP_5_27, ,_,_11_59); prep(have_VBP_5_27, compared_VBN_12_61); punct(have_VBP_5_27, ._._23_120); det(opinion_NN_8_44, a_DT_6_32); amod(opinion_NN_8_44, favorable_JJ_7_34); prep(opinion_NN_8_44, of_IN_9_52); pobj(of_IN_9_52, her_PRP_10_55); dep(compared_VBN_12_61, to_TO_13_70); pobj(to_TO_13_70, %_NN_15_76); num(%_NN_15_76, 62_CD_14_73); rcmod(%_NN_15_76, approve_VB_17_82); nsubj(approve_VB_17_82, who_WP_16_78); prep(approve_VB_17_82, of_IN_18_90); pobj(of_IN_18_90, performance_NN_22_108); poss(husband_NN_20_97, her_PRP$_19_93); possessive(husband_NN_20_97, 's_POS_21_105); poss(performance_NN_22_108, husband_NN_20_97) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 76 % ;;; 76_CD_3_22; %_NN_4_25 have a favorable opinion of her among ;;; have_VBP_5_27; a_DT_6_32; favorable_JJ_7_34; opinion_NN_8_44; of_IN_9_52; her_PRP_10_55 professionals ;;; professionals_NN_1_6 0.03070 None None 1 pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_18_111 dismissed against ;;; dismissed_VBD_19_114 the touring nation ;;; the_DT_28_170; touring_NN_29_174; nation_NN_30_182 0.73450 None None 0 pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_18_111 dismissed for ;;; dismissed_VBD_19_114 Western Australia ;;; Western_JJ_25_144; Australia_NNP_26_152 0.73450 None None 0 pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_18_111 dismissed in ;;; dismissed_VBD_19_114 a tour match ;;; a_DT_21_127; tour_NN_22_129; match_NN_23_134 0.73450 None None 1 pobj(Amongst_IN_0_0, victims_NNS_2_12); dep(Amongst_IN_0_0, in_IN_3_20); poss(victims_NNS_2_12, his_PRP$_1_8); pobj(in_IN_3_20, cricket_NN_5_35); amod(cricket_NN_5_35, first-class_JJ_4_23); prep(were_VBD_6_43, Amongst_IN_0_0); nsubj(were_VBD_6_43, pair_NN_9_62); punct(were_VBD_6_43, ._._31_189); det(pair_NN_9_62, the_DT_7_48); amod(pair_NN_9_62, Pakistani_JJ_8_52); prep(pair_NN_9_62, of_IN_10_67); pobj(of_IN_10_67, Abbas_NNP_12_77); nn(Abbas_NNP_12_77, Zaheer_NNP_11_70); cc(Abbas_NNP_12_77, and_CC_13_83); conj(Abbas_NNP_12_77, Mohammad_NNP_15_95); punct(Abbas_NNP_12_77, ,_,_16_104); rcmod(Abbas_NNP_12_77, dismissed_VBD_19_114); nn(Mohammad_NNP_15_95, Mushtaq_NNP_14_87); dobj(dismissed_VBD_19_114, whom_WP_17_106); nsubj(dismissed_VBD_19_114, he_PRP_18_111); prep(dismissed_VBD_19_114, in_IN_20_124); prep(dismissed_VBD_19_114, for_IN_24_140); prep(dismissed_VBD_19_114, against_IN_27_162); pobj(in_IN_20_124, match_NN_23_134); det(match_NN_23_134, a_DT_21_127); nn(match_NN_23_134, tour_NN_22_129); pobj(for_IN_24_140, Australia_NNP_26_152); amod(Australia_NNP_26_152, Western_JJ_25_144); pobj(against_IN_27_162, nation_NN_30_182); det(nation_NN_30_182, the_DT_28_170); nn(nation_NN_30_182, touring_NN_29_174) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the Pakistani pair of Zaheer Abbas ;;; the_DT_7_48; Pakistani_JJ_8_52; pair_NN_9_62; of_IN_10_67; Zaheer_NNP_11_70; Abbas_NNP_12_77 were amongst ;;; were_VBD_6_43 his victims ;;; his_PRP$_1_8; victims_NN_2_12 0.73450 None None 1 nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345 Amuro ;;; Amuro_NNP_0_0 returned to solo activities on ;;; returned_VBD_1_6; to_TO_2_15; solo_VB_3_18; activities_NN_4_23 her own ;;; her_PRP$_6_37; own_JJ_7_41 0.73450 None None 1 nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 Amuro ;;; Amuro_NNP_0_0 returned to solo ;;; returned_VBD_1_6; to_TO_2_15; solo_VB_3_18 activities ;;; activities_NN_4_23 0.37970 None None 0 nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) Template be {rel} {prep} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0195 Amuro ;;; Amuro_NNP_0_0 to solo ;;; to_TO_2_15; solo_VB_3_18 activities ;;; activities_NN_4_23 0.01950 None None 0 nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0181 Amuro ;;; Amuro_NNP_0_0 to solo activities on ;;; to_TO_2_15; solo_VB_3_18; activities_NN_4_23 her own ;;; her_PRP$_6_37; own_JJ_7_41 0.01810 None None 1 nsubj(returned_VBD_1_6, Amuro_NNP_0_0); xcomp(returned_VBD_1_6, solo_VB_3_18); punct(returned_VBD_1_6, ._._22_105); aux(solo_VB_3_18, to_TO_2_15); dobj(solo_VB_3_18, activities_NNS_4_23); prep(solo_VB_3_18, on_IN_5_34); prep(solo_VB_3_18, with_IN_8_45); pobj(on_IN_5_34, own_JJ_7_41); poss(own_JJ_7_41, her_PRP$_6_37); pobj(with_IN_8_45, the_DT_9_50); amod(the_DT_9_50, single_JJ_10_54); dep(single_JJ_10_54, "_``_11_61); dep("_``_11_61, Shine_NNP_12_63); dep(Shine_NNP_12_63, "_``_14_74); advmod("_``_14_74, More_RBR_13_69); punct("_``_14_74, ,_,_15_76); partmod("_``_14_74, released_VBN_16_78); prep(released_VBN_16_78, on_IN_17_87); pobj(on_IN_17_87, March_NNP_18_90); num(March_NNP_18_90, 6_CD_19_96); punct(March_NNP_18_90, ,_,_20_98); appos(March_NNP_18_90, 2003_CD_21_100) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 activities ;;; activities_NN_4_23 to be solo on ;;; to_TO_2_15; solo_VB_3_18 her own ;;; her_PRP$_6_37; own_JJ_7_41 0.01320 None None 0 det(solution_NN_2_11, An_DT_0_0); amod(solution_NN_2_11, aqueous_JJ_1_3); nsubj(one_CD_4_23, solution_NN_2_11); cop(one_CD_4_23, is_VBZ_3_20); prep(one_CD_4_23, in_IN_5_27); pobj(in_IN_5_27, water_NN_7_36); det(water_NN_7_36, which_WDT_6_30); nsubj(solvent_NN_10_49, one_CD_4_23); cop(solvent_NN_10_49, is_VBZ_8_42); det(solvent_NN_10_49, the_DT_9_45); punct(solvent_NN_10_49, ._._11_57) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 An aqueous solution ;;; An_DT_0_0; aqueous_JJ_1_3; solution_NN_2_11 is ;;; is_VBZ_3_20 one ;;; one_CD_4_23 0.00840 None None 0 det(solution_NN_2_11, An_DT_0_0); amod(solution_NN_2_11, aqueous_JJ_1_3); nsubj(one_CD_4_23, solution_NN_2_11); cop(one_CD_4_23, is_VBZ_3_20); prep(one_CD_4_23, in_IN_5_27); pobj(in_IN_5_27, water_NN_7_36); det(water_NN_7_36, which_WDT_6_30); nsubj(solvent_NN_10_49, one_CD_4_23); cop(solvent_NN_10_49, is_VBZ_8_42); det(solvent_NN_10_49, the_DT_9_45); punct(solvent_NN_10_49, ._._11_57) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 one ;;; one_CD_4_23 is ;;; is_VBZ_8_42 the solvent ;;; the_DT_9_45; solvent_NN_10_49 0.00840 None None 1 pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 the share issue ;;; the_DT_38_230; share_NN_39_234; issue_NN_40_240 is part of ;;; is_VBZ_41_246; part_NN_42_249 a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions ;;; a_DT_44_257; strategy_NN_45_259; to_TO_46_268; strengthen_VB_47_271; Labatt_NNP_48_282; 's_POS_49_289; balance_NN_50_292; sheet_NN_51_300; in_IN_52_306; anticipation_NN_53_309; of_IN_54_322; acquisitions_NN_55_325 0.95550 None None 0 pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the Appropriations Committee leadership ;;; the_DT_10_55; Appropriations_NNP_11_59; Committee_NNP_12_74; leadership_NN_13_84 turned back efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy to strengthen Labatt 's balance sheet in anticipation of acquisitions to be made during the next 12 to 18 months on ;;; turned_VBD_14_95; back_RP_15_102; efforts_NN_16_107; to_TO_17_115; weaken_VB_18_118; or_CC_19_125; strip_VB_20_128; the_DT_21_134; proposed_JJ_22_138; restrictions_NN_23_147; first_RB_24_160; added_VBN_25_166; by_IN_26_172; Sen._NNP_27_175; Warren_NNP_28_180; Rudman_NNP_29_187; -LRB-_-LRB-_30_194; R._NNP_31_200; ,_,_32_203; N.H._NNP_33_205; -RRB-_-RRB-_34_210; Mr._NNP_35_216; Vaux_NNP_36_220; said_VBD_37_225; the_DT_38_230; share_NN_39_234; issue_NN_40_240; is_VBZ_41_246; part_NN_42_249; of_IN_43_254; a_DT_44_257; strategy_NN_45_259; to_TO_46_268; strengthen_VB_47_271; Labatt_NNP_48_282; 's_POS_49_289; balance_NN_50_292; sheet_NN_51_300; in_IN_52_306; anticipation_NN_53_309; of_IN_54_322; acquisitions_NN_55_325; to_TO_56_338; be_VB_57_341; made_VBN_58_344; during_IN_59_349; the_DT_60_356; next_JJ_61_360; 12_CD_62_365; to_TO_63_368; 18_CD_64_371; months_NN_65_374 back-to-back roll calls ;;; back-to-back_JJ_2_7; roll_NN_3_20; calls_NN_4_25 0.73450 None None 1 pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) Template {rel} {arg1} dobj> {arg2} 0.3797 the Appropriations Committee leadership ;;; the_DT_10_55; Appropriations_NNP_11_59; Committee_NNP_12_74; leadership_NN_13_84 turned back ;;; turned_VBD_14_95; back_RP_15_102 efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy ;;; efforts_NN_16_107; to_TO_17_115; weaken_VB_18_118; or_CC_19_125; strip_VB_20_128; the_DT_21_134; proposed_JJ_22_138; restrictions_NN_23_147; first_RB_24_160; added_VBN_25_166; by_IN_26_172; Sen._NNP_27_175; Warren_NNP_28_180; Rudman_NNP_29_187; -LRB-_-LRB-_30_194; R._NNP_31_200; ,_,_32_203; N.H._NNP_33_205; -RRB-_-RRB-_34_210; Mr._NNP_35_216; Vaux_NNP_36_220; said_VBD_37_225; the_DT_38_230; share_NN_39_234; issue_NN_40_240; is_VBZ_41_246; part_NN_42_249; of_IN_43_254; a_DT_44_257; strategy_NN_45_259 0.37970 None None 0 pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 efforts to weaken or strip the proposed restrictions first added by Sen. Warren Rudman -LRB- R. , N.H. -RRB- Mr. Vaux said the share issue is part of a strategy ;;; efforts_NN_16_107; to_TO_17_115; weaken_VB_18_118; or_CC_19_125; strip_VB_20_128; the_DT_21_134; proposed_JJ_22_138; restrictions_NN_23_147; first_RB_24_160; added_VBN_25_166; by_IN_26_172; Sen._NNP_27_175; Warren_NNP_28_180; Rudman_NNP_29_187; -LRB-_-LRB-_30_194; R._NNP_31_200; ,_,_32_203; N.H._NNP_33_205; -RRB-_-RRB-_34_210; Mr._NNP_35_216; Vaux_NNP_36_220; said_VBD_37_225; the_DT_38_230; share_NN_39_234; issue_NN_40_240; is_VBZ_41_246; part_NN_42_249; of_IN_43_254; a_DT_44_257; strategy_NN_45_259 be turned back on ;;; turned_VBD_14_95; back_RP_15_102 back-to-back roll calls ;;; back-to-back_JJ_2_7; roll_NN_3_20; calls_NN_4_25 0.01550 None None 1 pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 Labatt 's balance sheet ;;; Labatt_NNP_48_282; 's_POS_49_289; balance_NN_50_292; sheet_NN_51_300 to be strengthen in ;;; to_TO_46_268; strengthen_VB_47_271 anticipation of acquisitions ;;; anticipation_NN_53_309; of_IN_54_322; acquisitions_NN_55_325 0.01320 None None 1 pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) Template be {rel} {prep} {arg1} >infmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0117 acquisitions ;;; acquisitions_NN_55_325 to be made during ;;; to_TO_56_338; be_VB_57_341; made_VBN_58_344 the next 12 to 18 months ;;; the_DT_60_356; next_JJ_61_360; 12_CD_62_365; to_TO_63_368; 18_CD_64_371; months_NN_65_374 0.01170 None None 1 pobj(on_IN_1_4, calls_NNS_4_25); amod(calls_NNS_4_25, back-to-back_JJ_2_7); nn(calls_NNS_4_25, roll_NN_3_20); cc(206-199_JJ_6_33, and_CC_7_41); conj(206-199_JJ_6_33, 223-178_JJ_8_45); det(leadership_NN_13_84, the_DT_10_55); nn(leadership_NN_13_84, Appropriations_NNP_11_59); nn(leadership_NN_13_84, Committee_NNP_12_74); cc(turned_VBD_14_95, And_CC_0_0); prep(turned_VBD_14_95, on_IN_1_4); punct(turned_VBD_14_95, ,_,_5_31); advmod(turned_VBD_14_95, 206-199_JJ_6_33); punct(turned_VBD_14_95, ,_,_9_53); nsubj(turned_VBD_14_95, leadership_NN_13_84); prt(turned_VBD_14_95, back_RP_15_102); dobj(turned_VBD_14_95, efforts_NNS_16_107); punct(turned_VBD_14_95, ._._66_381); infmod(efforts_NNS_16_107, weaken_VB_18_118); partmod(efforts_NNS_16_107, added_VBN_25_166); aux(weaken_VB_18_118, to_TO_17_115); cc(weaken_VB_18_118, or_CC_19_125); conj(weaken_VB_18_118, strip_VB_20_128); dobj(weaken_VB_18_118, restrictions_NNS_23_147); det(restrictions_NNS_23_147, the_DT_21_134); amod(restrictions_NNS_23_147, proposed_JJ_22_138); advmod(added_VBN_25_166, first_RB_24_160); advcl(added_VBN_25_166, said_VBD_37_225); nn(Rudman_NNP_29_187, Sen._NNP_27_175); nn(Rudman_NNP_29_187, Warren_NNP_28_180); punct(R._NNP_31_200, ,_,_32_203); appos(R._NNP_31_200, N.H._NNP_33_205); nn(Vaux_NNP_36_220, Mr._NNP_35_216); mark(said_VBD_37_225, by_IN_26_172); nsubj(said_VBD_37_225, Rudman_NNP_29_187); punct(said_VBD_37_225, -LRB-_-LRB-_30_194); nsubj(said_VBD_37_225, R._NNP_31_200); punct(said_VBD_37_225, -RRB-_-RRB-_34_210); nsubj(said_VBD_37_225, Vaux_NNP_36_220); ccomp(said_VBD_37_225, part_NN_42_249); det(issue_NN_40_240, the_DT_38_230); nn(issue_NN_40_240, share_NN_39_234); nsubj(part_NN_42_249, issue_NN_40_240); cop(part_NN_42_249, is_VBZ_41_246); prep(part_NN_42_249, of_IN_43_254); pobj(of_IN_43_254, strategy_NN_45_259); det(strategy_NN_45_259, a_DT_44_257); infmod(strategy_NN_45_259, strengthen_VB_47_271); aux(strengthen_VB_47_271, to_TO_46_268); dobj(strengthen_VB_47_271, sheet_NN_51_300); prep(strengthen_VB_47_271, in_IN_52_306); possessive(Labatt_NNP_48_282, 's_POS_49_289); poss(sheet_NN_51_300, Labatt_NNP_48_282); nn(sheet_NN_51_300, balance_NN_50_292); pobj(in_IN_52_306, anticipation_NN_53_309); prep(anticipation_NN_53_309, of_IN_54_322); pobj(of_IN_54_322, acquisitions_NNS_55_325); infmod(acquisitions_NNS_55_325, made_VBN_58_344); aux(made_VBN_58_344, to_TO_56_338); auxpass(made_VBN_58_344, be_VB_57_341); prep(made_VBN_58_344, during_IN_59_349); pobj(during_IN_59_349, months_NNS_65_374); number(18_CD_64_371, 12_CD_62_365); dep(18_CD_64_371, to_TO_63_368); det(months_NNS_65_374, the_DT_60_356); amod(months_NNS_65_374, next_JJ_61_360); num(months_NNS_65_374, 18_CD_64_371) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 the share issue ;;; the_DT_38_230; share_NN_39_234; issue_NN_40_240 is ;;; is_VBZ_41_246 part of a strategy ;;; part_NN_42_249; of_IN_43_254; a_DT_44_257; strategy_NN_45_259 0.00840 None None 1 amod(reproduction_NN_1_7, Animal_JJ_0_0); nsubj(takes_VBZ_5_32, reproduction_NN_1_7); punct(takes_VBZ_5_32, ,_,_2_20); advmod(takes_VBZ_5_32, however_RB_3_22); punct(takes_VBZ_5_32, ,_,_4_30); dobj(takes_VBZ_5_32, forms_NNS_7_43); punct(takes_VBZ_5_32, ._._8_49); amod(forms_NNS_7_43, many_JJ_6_38) Template {rel} {arg1} dobj> {arg2} 0.1443 Animal reproduction ;;; Animal_JJ_0_0; reproduction_NN_1_7 however takes ;;; however_RB_3_22; takes_VBZ_5_32 many forms ;;; many_JJ_6_38; forms_NN_7_43 0.14430 None None 1 det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) Template {rel} {arg1} dobj> {arg2} 0.3797 Another historian ;;; Another_DT_0_0; historian_NN_1_8 wrote ;;; wrote_VBD_8_42 a report ;;; a_DT_9_48; report_NN_10_50 0.37970 None None 1 det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) Template {rel} {arg1} dobj> {arg2} 0.3797 Browning ;;; Browning_NNP_19_102 wrote ;;; wrote_VBD_20_111 a report ;;; a_DT_21_117; report_NN_22_119 0.37970 None None 0 det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) Template {rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=actress|article|back|battle|book|briefly|caucus|column|conference|contest|country|decision|delegate|document|election|epistle|essay|force|goal|gospel|investigation|job|letter|life|look|majority|man|meet|messenger|nomination|nothing|notice|opinion|part|piece|primary|promise|proposal|question|race|report|review|rule|seat|settlement|settler|something|stateside|store|thing|time|top|tour|victory|vote|war|way|word|work|year} >{prep:regex=prep_(.*)}> {arg2} 0.0065 Another historian ;;; Another_DT_0_0; historian_NN_1_8 wrote at ;;; wrote_VBD_8_42 Auschwitz ;;; Auschwitz_NNP_16_86 0.00650 None None 1 det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) Template {rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=actress|article|back|battle|book|briefly|caucus|column|conference|contest|country|decision|delegate|document|election|epistle|essay|force|goal|gospel|investigation|job|letter|life|look|majority|man|meet|messenger|nomination|nothing|notice|opinion|part|piece|primary|promise|proposal|question|race|report|review|rule|seat|settlement|settler|something|stateside|store|thing|time|top|tour|victory|vote|war|way|word|work|year} >{prep:regex=prep_(.*)}> {arg2} 0.0065 Another historian ;;; Another_DT_0_0; historian_NN_1_8 wrote on ;;; wrote_VBD_20_111 the evidence ;;; the_DT_24_129; evidence_NN_25_133 0.00650 None None 1 det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) Template {rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=actress|article|back|battle|book|briefly|caucus|column|conference|contest|country|decision|delegate|document|election|epistle|essay|force|goal|gospel|investigation|job|letter|life|look|majority|man|meet|messenger|nomination|nothing|notice|opinion|part|piece|primary|promise|proposal|question|race|report|review|rule|seat|settlement|settler|something|stateside|store|thing|time|top|tour|victory|vote|war|way|word|work|year} >{prep:regex=prep_(.*)}> {arg2} 0.0065 Another historian ;;; Another_DT_0_0; historian_NN_1_8 wrote on ;;; wrote_VBD_8_42 the gassing facilities ;;; the_DT_12_60; gassing_NN_13_64; facilities_NN_14_72 0.00650 None None 0 det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) Template {rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=actress|article|back|battle|book|briefly|caucus|column|conference|contest|country|decision|delegate|document|election|epistle|essay|force|goal|gospel|investigation|job|letter|life|look|majority|man|meet|messenger|nomination|nothing|notice|opinion|part|piece|primary|promise|proposal|question|race|report|review|rule|seat|settlement|settler|something|stateside|store|thing|time|top|tour|victory|vote|war|way|word|work|year} >{prep:regex=prep_(.*)}> {arg2} 0.0065 Browning ;;; Browning_NNP_19_102 wrote at ;;; wrote_VBD_8_42 Auschwitz ;;; Auschwitz_NNP_16_86 0.00650 None None 1 det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) Template {rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=actress|article|back|battle|book|briefly|caucus|column|conference|contest|country|decision|delegate|document|election|epistle|essay|force|goal|gospel|investigation|job|letter|life|look|majority|man|meet|messenger|nomination|nothing|notice|opinion|part|piece|primary|promise|proposal|question|race|report|review|rule|seat|settlement|settler|something|stateside|store|thing|time|top|tour|victory|vote|war|way|word|work|year} >{prep:regex=prep_(.*)}> {arg2} 0.0065 Browning ;;; Browning_NNP_19_102 wrote on ;;; wrote_VBD_20_111 the evidence ;;; the_DT_24_129; evidence_NN_25_133 0.00650 None None 1 det(historian_NN_1_8, Another_DT_0_0); punct(historian_NN_1_8, ,_,_2_18); appos(historian_NN_1_8, Pelt_NNP_6_35); punct(historian_NN_1_8, ,_,_7_40); nn(Pelt_NNP_6_35, Robert_NNP_3_20); nn(Pelt_NNP_6_35, Jan_NNP_4_27); nn(Pelt_NNP_6_35, Van_NNP_5_31); nsubj(wrote_VBD_8_42, historian_NN_1_8); dobj(wrote_VBD_8_42, report_NN_10_50); punct(wrote_VBD_8_42, ,_,_17_96); cc(wrote_VBD_8_42, and_CC_18_98); conj(wrote_VBD_8_42, wrote_VBD_20_111); punct(wrote_VBD_8_42, ._._36_193); det(report_NN_10_50, a_DT_9_48); prep(report_NN_10_50, on_IN_11_57); prep(report_NN_10_50, at_IN_15_83); pobj(on_IN_11_57, facilities_NNS_14_72); det(facilities_NNS_14_72, the_DT_12_60); nn(facilities_NNS_14_72, gassing_NN_13_64); pobj(at_IN_15_83, Auschwitz_NNP_16_86); nsubj(wrote_VBD_20_111, Browning_NNP_19_102); dobj(wrote_VBD_20_111, report_NN_22_119); det(report_NN_22_119, a_DT_21_117); prep(report_NN_22_119, on_IN_23_126); pobj(on_IN_23_126, evidence_NN_25_133); det(evidence_NN_25_133, the_DT_24_129); prep(evidence_NN_25_133, for_IN_26_142); prep(evidence_NN_25_133, on_IN_32_176); pobj(for_IN_26_142, extermination_NN_28_150); det(extermination_NN_28_150, the_DT_27_146); prep(extermination_NN_28_150, of_IN_29_164); pobj(of_IN_29_164, Jews_NNPS_31_171); det(Jews_NNPS_31_171, the_DT_30_167); pobj(on_IN_32_176, scale_NN_35_187); det(scale_NN_35_187, a_DT_33_179); amod(scale_NN_35_187, wider_JJR_34_181) Template {rel} {prep} {arg1} dobj> {slot0:postag=NN:regex=actress|article|back|battle|book|briefly|caucus|column|conference|contest|country|decision|delegate|document|election|epistle|essay|force|goal|gospel|investigation|job|letter|life|look|majority|man|meet|messenger|nomination|nothing|notice|opinion|part|piece|primary|promise|proposal|question|race|report|review|rule|seat|settlement|settler|something|stateside|store|thing|time|top|tour|victory|vote|war|way|word|work|year} >{prep:regex=prep_(.*)}> {arg2} 0.0065 Browning ;;; Browning_NNP_19_102 wrote on ;;; wrote_VBD_8_42 the gassing facilities ;;; the_DT_12_60; gassing_NN_13_64; facilities_NN_14_72 0.00650 None None 1 nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Armed Forces of the Philippines chief of staff General Hermogenes Esperon ;;; Armed_NNP_0_0; Forces_NNP_1_6; of_IN_2_13; the_DT_3_16; Philippines_NNP_4_20; chief_NN_5_32; of_IN_6_38; staff_NN_7_41; General_NNP_8_47; Hermogenes_NNP_9_55; Esperon_NNP_10_66 linked Senator Panfilo Lacson to ;;; linked_VBD_13_80; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103 the February 6 ;;; the_DT_18_113; February_NNP_19_117; 6_CD_20_126 0.73450 None None 0 nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Jr. ;;; Jr._NNP_12_76 linked Senator Panfilo Lacson to ;;; linked_VBD_13_80; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103 the February 6 ;;; the_DT_18_113; February_NNP_19_117; 6_CD_20_126 0.73450 None None 0 nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) Template {rel} {arg1} dobj> {arg2} 0.3797 2005 Coup ;;; 2005_CD_22_130; Coup_NN_23_135 d ;;; d_VBD_24_140 'etat plot ;;; 'etat_JJ_25_142; plot_NN_26_148 0.37970 None None 0 nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) Template {rel} {arg1} dobj> {arg2} 0.3797 Armed Forces of the Philippines chief of staff General Hermogenes Esperon ;;; Armed_NNP_0_0; Forces_NNP_1_6; of_IN_2_13; the_DT_3_16; Philippines_NNP_4_20; chief_NN_5_32; of_IN_6_38; staff_NN_7_41; General_NNP_8_47; Hermogenes_NNP_9_55; Esperon_NNP_10_66 linked ;;; linked_VBD_13_80 Senator Panfilo Lacson ;;; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103 0.37970 None None 0 nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) Template {rel} {arg1} dobj> {arg2} 0.3797 Jr. ;;; Jr._NNP_12_76 linked ;;; linked_VBD_13_80 Senator Panfilo Lacson ;;; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103 0.37970 None None 1 nn(Forces_NNPS_1_6, Armed_NNP_0_0); prep(Forces_NNPS_1_6, of_IN_2_13); pobj(of_IN_2_13, chief_NN_5_32); det(chief_NN_5_32, the_DT_3_16); nn(chief_NN_5_32, Philippines_NNPS_4_20); prep(chief_NN_5_32, of_IN_6_38); pobj(of_IN_6_38, Esperon_NNP_10_66); nn(Esperon_NNP_10_66, staff_NN_7_41); nn(Esperon_NNP_10_66, General_NNP_8_47); nn(Esperon_NNP_10_66, Hermogenes_NNP_9_55); nsubj(linked_VBD_13_80, Forces_NNPS_1_6); punct(linked_VBD_13_80, ,_,_11_74); nsubj(linked_VBD_13_80, Jr._NNP_12_76); dobj(linked_VBD_13_80, Lacson_NNP_16_103); prep(linked_VBD_13_80, to_TO_17_110); punct(linked_VBD_13_80, ._._27_153); nn(Lacson_NNP_16_103, Senator_NNP_14_87); nn(Lacson_NNP_16_103, Panfilo_NNP_15_95); pobj(to_TO_17_110, February_NNP_19_117); det(February_NNP_19_117, the_DT_18_113); num(February_NNP_19_117, 6_CD_20_126); punct(February_NNP_19_117, ,_,_21_128); rcmod(February_NNP_19_117, d_VBD_24_140); num(Coup_NN_23_135, 2005_CD_22_130); nsubj(d_VBD_24_140, Coup_NN_23_135); dobj(d_VBD_24_140, plot_NN_26_148); amod(plot_NN_26_148, 'etat_JJ_25_142) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Senator Panfilo Lacson ;;; Senator_NNP_14_87; Panfilo_NNP_15_95; Lacson_NNP_16_103 be linked to ;;; linked_VBD_13_80 the February 6 ;;; the_DT_18_113; February_NNP_19_117; 6_CD_20_126 0.01550 None None 1 pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_10_56 led the invasion of the Philippines clearing the islands of Mindoro , Marinduque , Panay , Negros , Cebu and Bohol as ;;; led_VBD_11_59; the_DT_12_63; invasion_NN_13_67; of_IN_14_76; the_DT_15_79; Philippines_NNP_16_83; clearing_VBG_17_95; the_DT_18_104; islands_NN_19_108; of_IN_20_116; Mindoro_NNP_21_119; ,_,_22_127; Marinduque_NNP_23_129; ,_,_24_140; Panay_NNP_25_142; ,_,_26_148; Negros_NNP_27_150; ,_,_28_157; Cebu_NNP_29_159; and_CC_30_164; Bohol_NNP_31_168 Commanding General of the newly formed Eighth Army ;;; Commanding_NNP_1_3; General_NNP_2_14; of_IN_3_22; the_DT_4_25; newly_RB_5_29; formed_VBN_6_35; Eighth_NNP_7_42; Army_NNP_8_49 0.73450 None None 1 pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) Template {rel} {arg1} dobj> {arg2} 0.3797 he ;;; he_PRP_10_56 led ;;; led_VBD_11_59 the invasion of the Philippines ;;; the_DT_12_63; invasion_NN_13_67; of_IN_14_76; the_DT_15_79; Philippines_NNP_16_83 0.37970 None None 1 pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the invasion of the Philippines ;;; the_DT_12_63; invasion_NN_13_67; of_IN_14_76; the_DT_15_79; Philippines_NNP_16_83 be led as ;;; led_VBD_11_59 Commanding General of the newly formed Eighth Army ;;; Commanding_NNP_1_3; General_NNP_2_14; of_IN_3_22; the_DT_4_25; newly_RB_5_29; formed_VBN_6_35; Eighth_NNP_7_42; Army_NNP_8_49 0.01550 None None 0 pobj(As_IN_0_0, General_NNP_2_14); nn(General_NNP_2_14, Commanding_NNP_1_3); prep(General_NNP_2_14, of_IN_3_22); pobj(of_IN_3_22, Army_NNP_8_49); advmod(formed_VBN_6_35, newly_RB_5_29); det(Army_NNP_8_49, the_DT_4_25); amod(Army_NNP_8_49, formed_VBN_6_35); nn(Army_NNP_8_49, Eighth_NNP_7_42); prep(led_VBD_11_59, As_IN_0_0); punct(led_VBD_11_59, ,_,_9_54); nsubj(led_VBD_11_59, he_PRP_10_56); dobj(led_VBD_11_59, invasion_NN_13_67); punct(led_VBD_11_59, ._._32_174); det(invasion_NN_13_67, the_DT_12_63); prep(invasion_NN_13_67, of_IN_14_76); pobj(of_IN_14_76, Philippines_NNPS_16_83); det(Philippines_NNPS_16_83, the_DT_15_79); partmod(Philippines_NNPS_16_83, clearing_VBG_17_95); dobj(clearing_VBG_17_95, islands_NNS_19_108); det(islands_NNS_19_108, the_DT_18_104); prep(islands_NNS_19_108, of_IN_20_116); pobj(of_IN_20_116, Mindoro_NNP_21_119); punct(Mindoro_NNP_21_119, ,_,_22_127); conj(Mindoro_NNP_21_119, Marinduque_NNP_23_129); punct(Mindoro_NNP_21_119, ,_,_24_140); conj(Mindoro_NNP_21_119, Panay_NNP_25_142); punct(Mindoro_NNP_21_119, ,_,_26_148); conj(Mindoro_NNP_21_119, Negros_NNP_27_150); punct(Mindoro_NNP_21_119, ,_,_28_157); conj(Mindoro_NNP_21_119, Cebu_NNP_29_159); cc(Mindoro_NNP_21_119, and_CC_30_164); conj(Mindoro_NNP_21_119, Bohol_NNP_31_168) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 he ;;; he_PRP_10_56 be the invasion of ;;; the_DT_12_63; invasion_NN_13_67 the Philippines ;;; the_DT_15_79; Philippines_NNP_16_83 0.01190 None None 1 pobj(As_IN_0_0, Sid_NNP_1_3); prep(about_IN_3_11, As_IN_0_0); aux(about_IN_3_11, was_VBD_2_7); xcomp(about_IN_3_11, powerbomb_VB_5_20); punct(about_IN_3_11, ._._21_106); aux(powerbomb_VB_5_20, to_TO_4_17); ccomp(powerbomb_VB_5_20, got_VBD_13_68); punct(Vader_NNP_6_30, ,_,_7_36); conj(Vader_NNP_6_30, Cornette_NNP_12_59); possessive(Vader_NNP_8_38, 's_POS_9_44); poss(Cornette_NNP_12_59, Vader_NNP_8_38); nn(Cornette_NNP_12_59, manager_NN_10_47); nn(Cornette_NNP_12_59, Jim_NNP_11_55); nsubj(got_VBD_13_68, Vader_NNP_6_30); prep(got_VBD_13_68, on_IN_14_72); pobj(on_IN_14_72, apron_NN_17_84); det(apron_NN_17_84, the_DT_15_75); nn(apron_NN_17_84, ring_NN_16_79); infmod(apron_NN_17_84, distract_VB_19_93); aux(distract_VB_19_93, to_TO_18_90); dobj(distract_VB_19_93, him_PRP_20_102) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Vader ;;; Vader_NNP_6_30 got on ;;; got_VBD_13_68 the ring apron to distract him ;;; the_DT_15_75; ring_NN_16_79; apron_NN_17_84; to_TO_18_90; distract_VB_19_93; him_PRP_20_102 0.73450 None None 1 pobj(As_IN_0_0, Sid_NNP_1_3); prep(about_IN_3_11, As_IN_0_0); aux(about_IN_3_11, was_VBD_2_7); xcomp(about_IN_3_11, powerbomb_VB_5_20); punct(about_IN_3_11, ._._21_106); aux(powerbomb_VB_5_20, to_TO_4_17); ccomp(powerbomb_VB_5_20, got_VBD_13_68); punct(Vader_NNP_6_30, ,_,_7_36); conj(Vader_NNP_6_30, Cornette_NNP_12_59); possessive(Vader_NNP_8_38, 's_POS_9_44); poss(Cornette_NNP_12_59, Vader_NNP_8_38); nn(Cornette_NNP_12_59, manager_NN_10_47); nn(Cornette_NNP_12_59, Jim_NNP_11_55); nsubj(got_VBD_13_68, Vader_NNP_6_30); prep(got_VBD_13_68, on_IN_14_72); pobj(on_IN_14_72, apron_NN_17_84); det(apron_NN_17_84, the_DT_15_75); nn(apron_NN_17_84, ring_NN_16_79); infmod(apron_NN_17_84, distract_VB_19_93); aux(distract_VB_19_93, to_TO_18_90); dobj(distract_VB_19_93, him_PRP_20_102) Template be {rel} of {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|co-founder|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|home|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|island|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moon|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaper|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|product|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} poss> {arg2:postag=NNP} 0.0162 Jim Cornette ;;; Jim_NNP_11_55; Cornette_NNP_12_59 be manager of ;;; manager_NN_10_47 Vader ;;; Vader_NNP_8_38 0.01620 None None 1 pobj(As_IN_0_0, part_NN_2_5); det(part_NN_2_5, a_DT_1_3); prep(part_NN_2_5, of_IN_3_10); pobj(of_IN_3_10, agreement_NN_7_28); nn(Bowden_NNP_5_18, Jeff_NNP_4_13); possessive(Bowden_NNP_5_18, 's_POS_6_25); poss(agreement_NN_7_28, Bowden_NNP_5_18); prep(agreement_NN_7_28, with_IN_8_38); pobj(with_IN_8_38, State_NNP_10_51); nn(State_NNP_10_51, Florida_NNP_9_43); cc(State_NNP_10_51, and_CC_11_57); conj(State_NNP_10_51, Boosters_NNP_13_70); punct(State_NNP_10_51, ,_,_14_79); appos(State_NNP_10_51, Inc._NNP_15_81); nn(Boosters_NNP_13_70, Seminole_NNP_12_61); prep(receive_VB_19_96, As_IN_0_0); punct(receive_VB_19_96, ,_,_16_86); nsubj(receive_VB_19_96, he_PRP_17_88); aux(receive_VB_19_96, will_MD_18_91); dobj(receive_VB_19_96, an_DT_20_104); prep(receive_VB_19_96, through_IN_30_147); prep(receive_VB_19_96, from_IN_33_167); punct(receive_VB_19_96, ._._37_189); dobj(an_DT_20_104, $_$_21_107); dep($_$_21_107, 107,500_CD_22_108); advmod($_$_21_107, annually_RB_23_116); punct($_$_21_107, ,_,_24_125); cc($_$_21_107, or_CC_25_127); conj($_$_21_107, total_NN_28_139); punct($_$_21_107, ,_,_29_145); dep($_$_26_130, 537,000_CD_27_131); amod(total_NN_28_139, $_$_26_130); pobj(through_IN_30_147, August_NNP_31_155); num(August_NNP_31_155, 2012_CD_32_162); pobj(from_IN_33_167, club_NN_36_184); det(club_NN_36_184, the_DT_34_172); nn(club_NN_36_184, Booster_NNP_35_176) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 he ;;; he_PRP_17_88 will receive an $ 107,500 annually , or $ 537,000 total , as ;;; will_MD_18_91; receive_VB_19_96; an_DT_20_104; $_$_21_107; 107,500_CD_22_108; annually_RB_23_116; ,_,_24_125; or_CC_25_127; $_$_26_130; 537,000_CD_27_131; total_NN_28_139; ,_,_29_145 a part of Jeff Bowden 's agreement ;;; a_DT_1_3; part_NN_2_5; of_IN_3_10; Jeff_NNP_4_13; Bowden_NNP_5_18; 's_POS_6_25; agreement_NN_7_28 0.13490 None None 1 pobj(As_IN_0_0, part_NN_2_5); det(part_NN_2_5, a_DT_1_3); prep(part_NN_2_5, of_IN_3_10); pobj(of_IN_3_10, agreement_NN_7_28); nn(Bowden_NNP_5_18, Jeff_NNP_4_13); possessive(Bowden_NNP_5_18, 's_POS_6_25); poss(agreement_NN_7_28, Bowden_NNP_5_18); prep(agreement_NN_7_28, with_IN_8_38); pobj(with_IN_8_38, State_NNP_10_51); nn(State_NNP_10_51, Florida_NNP_9_43); cc(State_NNP_10_51, and_CC_11_57); conj(State_NNP_10_51, Boosters_NNP_13_70); punct(State_NNP_10_51, ,_,_14_79); appos(State_NNP_10_51, Inc._NNP_15_81); nn(Boosters_NNP_13_70, Seminole_NNP_12_61); prep(receive_VB_19_96, As_IN_0_0); punct(receive_VB_19_96, ,_,_16_86); nsubj(receive_VB_19_96, he_PRP_17_88); aux(receive_VB_19_96, will_MD_18_91); dobj(receive_VB_19_96, an_DT_20_104); prep(receive_VB_19_96, through_IN_30_147); prep(receive_VB_19_96, from_IN_33_167); punct(receive_VB_19_96, ._._37_189); dobj(an_DT_20_104, $_$_21_107); dep($_$_21_107, 107,500_CD_22_108); advmod($_$_21_107, annually_RB_23_116); punct($_$_21_107, ,_,_24_125); cc($_$_21_107, or_CC_25_127); conj($_$_21_107, total_NN_28_139); punct($_$_21_107, ,_,_29_145); dep($_$_26_130, 537,000_CD_27_131); amod(total_NN_28_139, $_$_26_130); pobj(through_IN_30_147, August_NNP_31_155); num(August_NNP_31_155, 2012_CD_32_162); pobj(from_IN_33_167, club_NN_36_184); det(club_NN_36_184, the_DT_34_172); nn(club_NN_36_184, Booster_NNP_35_176) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 he ;;; he_PRP_17_88 will receive an $ 107,500 annually , or $ 537,000 total , from ;;; will_MD_18_91; receive_VB_19_96; an_DT_20_104; $_$_21_107; 107,500_CD_22_108; annually_RB_23_116; ,_,_24_125; or_CC_25_127; $_$_26_130; 537,000_CD_27_131; total_NN_28_139; ,_,_29_145 the Booster club ;;; the_DT_34_172; Booster_NNP_35_176; club_NN_36_184 0.13490 None None 1 pobj(As_IN_0_0, part_NN_2_5); det(part_NN_2_5, a_DT_1_3); prep(part_NN_2_5, of_IN_3_10); pobj(of_IN_3_10, agreement_NN_7_28); nn(Bowden_NNP_5_18, Jeff_NNP_4_13); possessive(Bowden_NNP_5_18, 's_POS_6_25); poss(agreement_NN_7_28, Bowden_NNP_5_18); prep(agreement_NN_7_28, with_IN_8_38); pobj(with_IN_8_38, State_NNP_10_51); nn(State_NNP_10_51, Florida_NNP_9_43); cc(State_NNP_10_51, and_CC_11_57); conj(State_NNP_10_51, Boosters_NNP_13_70); punct(State_NNP_10_51, ,_,_14_79); appos(State_NNP_10_51, Inc._NNP_15_81); nn(Boosters_NNP_13_70, Seminole_NNP_12_61); prep(receive_VB_19_96, As_IN_0_0); punct(receive_VB_19_96, ,_,_16_86); nsubj(receive_VB_19_96, he_PRP_17_88); aux(receive_VB_19_96, will_MD_18_91); dobj(receive_VB_19_96, an_DT_20_104); prep(receive_VB_19_96, through_IN_30_147); prep(receive_VB_19_96, from_IN_33_167); punct(receive_VB_19_96, ._._37_189); dobj(an_DT_20_104, $_$_21_107); dep($_$_21_107, 107,500_CD_22_108); advmod($_$_21_107, annually_RB_23_116); punct($_$_21_107, ,_,_24_125); cc($_$_21_107, or_CC_25_127); conj($_$_21_107, total_NN_28_139); punct($_$_21_107, ,_,_29_145); dep($_$_26_130, 537,000_CD_27_131); amod(total_NN_28_139, $_$_26_130); pobj(through_IN_30_147, August_NNP_31_155); num(August_NNP_31_155, 2012_CD_32_162); pobj(from_IN_33_167, club_NN_36_184); det(club_NN_36_184, the_DT_34_172); nn(club_NN_36_184, Booster_NNP_35_176) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 he ;;; he_PRP_17_88 will receive an $ 107,500 annually , or $ 537,000 total , through ;;; will_MD_18_91; receive_VB_19_96; an_DT_20_104; $_$_21_107; 107,500_CD_22_108; annually_RB_23_116; ,_,_24_125; or_CC_25_127; $_$_26_130; 537,000_CD_27_131; total_NN_28_139; ,_,_29_145 August 2012 ;;; August_NNP_31_155; 2012_CD_32_162 0.13490 None None 0 amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.7345 July ;;; July_NNP_12_63 saw bringing to ;;; saw_VBD_13_68; bringing_VBG_38_186 an ignominious close ;;; an_DT_44_224; ignominious_JJ_45_227; close_NN_46_239 0.73450 As_if early elimination from the playoff race was n't enough_0_10 None 1 amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345 July ;;; July_NNP_12_63 saw suffer two 8-0 demolitions by ;;; saw_VBD_13_68; suffer_VB_16_81; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96 Des Moines Menace and in the last game of the season ;;; Des_NNP_21_111; Moines_NNP_22_115; Menace_NNP_23_122; and_CC_24_129; in_IN_25_133; the_DT_26_136; last_JJ_27_140; game_NN_28_145; of_IN_29_150; the_DT_30_153; season_NN_31_157 0.73450 As_if early elimination from the playoff race was n't enough_0_10 None 1 amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345 July ;;; July_NNP_12_63 saw suffer two 8-0 demolitions in ;;; saw_VBD_13_68; suffer_VB_16_81; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96 Des Moines Menace and in the last game of the season ;;; Des_NNP_21_111; Moines_NNP_22_115; Menace_NNP_23_122; and_CC_24_129; in_IN_25_133; the_DT_26_136; last_JJ_27_140; game_NN_28_145; of_IN_29_150; the_DT_30_153; season_NN_31_157 0.73450 As_if early elimination from the playoff race was n't enough_0_10 None 1 amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 July ;;; July_NNP_12_63 saw suffer ;;; saw_VBD_13_68; suffer_VB_16_81 two 8-0 demolitions ;;; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96 0.37970 As_if early elimination from the playoff race was n't enough_0_10 None 1 amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) Template {rel} {arg1} dobj> {arg2} 0.1473 the team ;;; the_DT_14_72; team_NN_15_76 suffer ;;; suffer_VB_16_81 two 8-0 demolitions ;;; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96 0.14730 None None 1 amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 the team ;;; the_DT_14_72; team_NN_15_76 suffer two 8-0 demolitions by ;;; suffer_VB_16_81; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96 Des Moines Menace and in the last game of the season ;;; Des_NNP_21_111; Moines_NNP_22_115; Menace_NNP_23_122; and_CC_24_129; in_IN_25_133; the_DT_26_136; last_JJ_27_140; game_NN_28_145; of_IN_29_150; the_DT_30_153; season_NN_31_157 0.13490 None None 1 amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 the team ;;; the_DT_14_72; team_NN_15_76 suffer two 8-0 demolitions in ;;; suffer_VB_16_81; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96 Des Moines Menace and in the last game of the season ;;; Des_NNP_21_111; Moines_NNP_22_115; Menace_NNP_23_122; and_CC_24_129; in_IN_25_133; the_DT_26_136; last_JJ_27_140; game_NN_28_145; of_IN_29_150; the_DT_30_153; season_NN_31_157 0.13490 None None 1 amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 two 8-0 demolitions ;;; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96 be suffer by ;;; suffer_VB_16_81 Des Moines Menace and in the last game of the season ;;; Des_NNP_21_111; Moines_NNP_22_115; Menace_NNP_23_122; and_CC_24_129; in_IN_25_133; the_DT_26_136; last_JJ_27_140; game_NN_28_145; of_IN_29_150; the_DT_30_153; season_NN_31_157 0.01320 None None 1 amod(elimination_NN_3_12, early_JJ_2_6); prep(elimination_NN_3_12, from_IN_4_24); pobj(from_IN_4_24, race_NN_7_41); det(race_NN_7_41, the_DT_5_29); nn(race_NN_7_41, playoff_NN_6_33); mark(enough_RB_10_54, As_IN_0_0); dep(enough_RB_10_54, if_IN_1_3); nsubj(enough_RB_10_54, elimination_NN_3_12); cop(enough_RB_10_54, was_VBD_8_46); neg(enough_RB_10_54, n't_RB_9_50); advcl(saw_VBD_13_68, enough_RB_10_54); punct(saw_VBD_13_68, ,_,_11_61); nsubj(saw_VBD_13_68, July_NNP_12_63); xcomp(saw_VBD_13_68, suffer_VB_16_81); punct(saw_VBD_13_68, ,_,_37_184); xcomp(saw_VBD_13_68, bringing_VBG_38_186); punct(saw_VBD_13_68, ._._47_245); det(team_NN_15_76, the_DT_14_72); nsubj(suffer_VB_16_81, team_NN_15_76); dobj(suffer_VB_16_81, demolitions_NNS_19_96); prep(suffer_VB_16_81, by_IN_20_108); number(8-0_CD_18_92, two_CD_17_88); num(demolitions_NNS_19_96, 8-0_CD_18_92); pobj(by_IN_20_108, Menace_NNP_23_122); cc(by_IN_20_108, and_CC_24_129); conj(by_IN_20_108, in_IN_25_133); nn(Menace_NNP_23_122, Des_NNP_21_111); nn(Menace_NNP_23_122, Moines_NNP_22_115); pobj(in_IN_25_133, game_NN_28_145); det(game_NN_28_145, the_DT_26_136); amod(game_NN_28_145, last_JJ_27_140); prep(game_NN_28_145, of_IN_29_150); prep(game_NN_28_145, at_IN_32_164); pobj(of_IN_29_150, season_NN_31_157); det(season_NN_31_157, the_DT_30_153); pobj(at_IN_32_164, Lions_NNP_36_178); nn(Lions_NNP_36_178, St_NNP_33_167); punct(Lions_NNP_36_178, ._._34_170); nn(Lions_NNP_36_178, Louis_NNP_35_172); tmod(bringing_VBG_38_186, year_NN_42_216); prep(bringing_VBG_38_186, to_TO_43_221); det(year_NN_42_216, a_DT_39_195); amod(year_NN_42_216, difficult_JJ_40_197); nn(year_NN_42_216, freshman_NN_41_207); pobj(to_TO_43_221, close_NN_46_239); det(close_NN_46_239, an_DT_44_224); amod(close_NN_46_239, ignominious_JJ_45_227) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 two 8-0 demolitions ;;; two_CD_17_88; 8-0_CD_18_92; demolitions_NN_19_96 be suffer in ;;; suffer_VB_16_81 Des Moines Menace and in the last game of the season ;;; Des_NNP_21_111; Moines_NNP_22_115; Menace_NNP_23_122; and_CC_24_129; in_IN_25_133; the_DT_26_136; last_JJ_27_140; game_NN_28_145; of_IN_29_150; the_DT_30_153; season_NN_31_157 0.01320 None None 1 mark(stands_VBZ_3_10, As_IN_0_0); nsubj(stands_VBZ_3_10, it_PRP_1_3); advmod(stands_VBZ_3_10, now_RB_2_6); det(U.S._NNP_6_23, the_DT_5_19); advcl(bomb_VB_8_32, stands_VBZ_3_10); punct(bomb_VB_8_32, ,_,_4_17); nsubj(bomb_VB_8_32, U.S._NNP_6_23); aux(bomb_VB_8_32, can_MD_7_28); dobj(bomb_VB_8_32, Tripoli_NNP_9_37); punct(bomb_VB_8_32, ,_,_10_45); cc(bomb_VB_8_32, but_CC_11_47); conj(bomb_VB_8_32, assassinate_VB_15_60); punct(bomb_VB_8_32, ._._19_90); aux(assassinate_VB_15_60, ca_MD_12_51); neg(assassinate_VB_15_60, n't_RB_13_54); punct(assassinate_VB_15_60, "_``_14_58); punct(assassinate_VB_15_60, "_''_16_72); dobj(assassinate_VB_15_60, Gadhafi_NNP_18_82); nn(Gadhafi_NNP_18_82, Colonel_NNP_17_74) Template {rel} {arg1} dobj> {arg2} 0.1473 the U.S. ;;; the_DT_5_19; U.S._NNP_6_23 can bomb ;;; can_MD_7_28; bomb_VB_8_32 Tripoli ;;; Tripoli_NNP_9_37 0.14730 As_it now stands_0_3 None 1 det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the band ;;; the_DT_1_3; band_NN_2_7 struggled without ;;; struggled_VBD_3_12 the help of a booking agent ;;; the_DT_12_70; help_NN_13_74; of_IN_14_79; a_DT_15_82; booking_NN_16_84; agent_NN_17_92 0.73450 None None 1 det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 they ;;; they_PRP_19_100 played locally in ;;; played_VBD_20_105; locally_RB_21_112 Southern California ;;; Southern_JJ_23_123; California_NNP_24_132 0.73450 As_the band struggled to find support slots on upcoming tours without the help of a booking agent_0_17 None 1 det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 they ;;; they_PRP_19_100 played locally throughout ;;; played_VBD_20_105; locally_RB_21_112 the winter of 2004 and the spring of 2005 ;;; the_DT_26_154; winter_NN_27_158; of_IN_28_165; 2004_CD_29_168; and_CC_30_173; the_DT_31_177; spring_NN_32_181; of_IN_33_188; 2005_CD_34_191 0.73450 As_the band struggled to find support slots on upcoming tours without the help of a booking agent_0_17 None 1 det(band_NN_2_7, the_DT_1_3); mark(struggled_VBD_3_12, As_IN_0_0); nsubj(struggled_VBD_3_12, band_NN_2_7); xcomp(struggled_VBD_3_12, find_VB_5_25); prep(struggled_VBD_3_12, without_IN_11_62); aux(find_VB_5_25, to_TO_4_22); dobj(find_VB_5_25, slots_NNS_7_38); nn(slots_NNS_7_38, support_NN_6_30); prep(slots_NNS_7_38, on_IN_8_44); pobj(on_IN_8_44, tours_NNS_10_56); nn(tours_NNS_10_56, upcoming_NN_9_47); pobj(without_IN_11_62, help_NN_13_74); det(help_NN_13_74, the_DT_12_70); prep(help_NN_13_74, of_IN_14_79); pobj(of_IN_14_79, agent_NN_17_92); det(agent_NN_17_92, a_DT_15_82); nn(agent_NN_17_92, booking_NN_16_84); advcl(played_VBD_20_105, struggled_VBD_3_12); punct(played_VBD_20_105, ,_,_18_98); nsubj(played_VBD_20_105, they_PRP_19_100); advmod(played_VBD_20_105, locally_RB_21_112); prep(played_VBD_20_105, in_IN_22_120); prep(played_VBD_20_105, throughout_IN_25_143); punct(played_VBD_20_105, ._._35_196); pobj(in_IN_22_120, California_NNP_24_132); amod(California_NNP_24_132, Southern_JJ_23_123); pobj(throughout_IN_25_143, winter_NN_27_158); det(winter_NN_27_158, the_DT_26_154); prep(winter_NN_27_158, of_IN_28_165); cc(winter_NN_27_158, and_CC_30_173); conj(winter_NN_27_158, spring_NN_32_181); pobj(of_IN_28_165, 2004_CD_29_168); det(spring_NN_32_181, the_DT_31_177); prep(spring_NN_32_181, of_IN_33_188); pobj(of_IN_33_188, 2005_CD_34_191) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 the band ;;; the_DT_1_3; band_NN_2_7 struggled to find ;;; struggled_VBD_3_12; to_TO_4_22; find_VB_5_25 support slots ;;; support_NN_6_30; slots_NN_7_38 0.37970 None None 1 det(trophoblast_NN_2_7, the_DT_1_3); mark(thickens_VBZ_3_19, As_IN_0_0); nsubj(thickens_VBZ_3_19, trophoblast_NN_2_7); prep(thickens_VBZ_3_19, through_IN_4_28); pobj(through_IN_4_28, division_NN_6_41); nn(division_NN_6_41, cell_NN_5_36); advcl(extends_VBZ_9_55, thickens_VBZ_3_19); punct(extends_VBZ_9_55, ,_,_7_50); nsubj(extends_VBZ_9_55, it_PRP_8_52); dobj(extends_VBZ_9_55, projections_NNS_11_75); prep(extends_VBZ_9_55, into_IN_12_87); punct(extends_VBZ_9_55, ._._17_124); amod(projections_NNS_11_75, finger-like_JJ_10_63); pobj(into_IN_12_87, tissue_NN_16_117); det(tissue_NN_16_117, the_DT_13_92); amod(tissue_NN_16_117, surrounding_VBG_14_96); amod(tissue_NN_16_117, maternal_JJ_15_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 it ;;; it_PRP_8_52 extends finger-like projections into ;;; extends_VBZ_9_55; finger-like_JJ_10_63; projections_NN_11_75 the surrounding maternal tissue ;;; the_DT_13_92; surrounding_VBG_14_96; maternal_JJ_15_108; tissue_NN_16_117 0.24440 As_the trophoblast thickens through cell division_0_6 None 1 det(trophoblast_NN_2_7, the_DT_1_3); mark(thickens_VBZ_3_19, As_IN_0_0); nsubj(thickens_VBZ_3_19, trophoblast_NN_2_7); prep(thickens_VBZ_3_19, through_IN_4_28); pobj(through_IN_4_28, division_NN_6_41); nn(division_NN_6_41, cell_NN_5_36); advcl(extends_VBZ_9_55, thickens_VBZ_3_19); punct(extends_VBZ_9_55, ,_,_7_50); nsubj(extends_VBZ_9_55, it_PRP_8_52); dobj(extends_VBZ_9_55, projections_NNS_11_75); prep(extends_VBZ_9_55, into_IN_12_87); punct(extends_VBZ_9_55, ._._17_124); amod(projections_NNS_11_75, finger-like_JJ_10_63); pobj(into_IN_12_87, tissue_NN_16_117); det(tissue_NN_16_117, the_DT_13_92); amod(tissue_NN_16_117, surrounding_VBG_14_96); amod(tissue_NN_16_117, maternal_JJ_15_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 the trophoblast ;;; the_DT_1_3; trophoblast_NN_2_7 thickens through ;;; thickens_VBZ_3_19 cell division ;;; cell_NN_5_36; division_NN_6_41 0.24440 None None 1 det(trophoblast_NN_2_7, the_DT_1_3); mark(thickens_VBZ_3_19, As_IN_0_0); nsubj(thickens_VBZ_3_19, trophoblast_NN_2_7); prep(thickens_VBZ_3_19, through_IN_4_28); pobj(through_IN_4_28, division_NN_6_41); nn(division_NN_6_41, cell_NN_5_36); advcl(extends_VBZ_9_55, thickens_VBZ_3_19); punct(extends_VBZ_9_55, ,_,_7_50); nsubj(extends_VBZ_9_55, it_PRP_8_52); dobj(extends_VBZ_9_55, projections_NNS_11_75); prep(extends_VBZ_9_55, into_IN_12_87); punct(extends_VBZ_9_55, ._._17_124); amod(projections_NNS_11_75, finger-like_JJ_10_63); pobj(into_IN_12_87, tissue_NN_16_117); det(tissue_NN_16_117, the_DT_13_92); amod(tissue_NN_16_117, surrounding_VBG_14_96); amod(tissue_NN_16_117, maternal_JJ_15_108) Template {rel} {arg1} dobj> {arg2} 0.1443 it ;;; it_PRP_8_52 extends ;;; extends_VBZ_9_55 finger-like projections ;;; finger-like_JJ_10_63; projections_NN_11_75 0.14430 As_the trophoblast thickens through cell division_0_6 None 0 pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the South ;;; the_DT_26_137; South_NNP_27_141 were forced into ;;; were_VBD_29_149; forced_VBN_30_154 an inferior status ;;; an_DT_32_166; inferior_JJ_33_169; status_NN_34_178 1.00000 None None 0 pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Pike ;;; Pike_NNP_8_48 said at ;;; said_VBD_9_53 the Southern Commercial Convention of 1854 ;;; the_DT_1_3; Southern_NNP_2_7; Commercial_NNP_3_16; Convention_NNP_4_27; of_IN_5_38; 1854_CD_6_41 0.73450 None None 1 pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) Template {rel} {arg1} dobj> {arg2} 0.1473 the South ;;; the_DT_10_58; South_NNP_11_62 seek ;;; seek_VB_18_99 equality ;;; equality_NN_19_104 0.14730 None Pike_said_8_8_9_9 1 pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 the South ;;; the_DT_10_58; South_NNP_11_62 should remain in ;;; should_MD_12_68; remain_VB_13_75 the Union ;;; the_DT_15_85; Union_NNP_16_89 0.13490 None Pike_said_8_8_9_9 0 pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) Template {rel} to {arg1} prep_at> {arg2} 0.0623 Pike ;;; Pike_NNP_8_48 said to ;;; said_VBD_9_53 the Southern Commercial Convention of 1854 ;;; the_DT_1_3; Southern_NNP_2_7; Commercial_NNP_3_16; Convention_NNP_4_27; of_IN_5_38; 1854_CD_6_41 0.06230 None None 0 pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) Template {rel} in {arg1} prep_at> {arg2} 0.0083 Pike ;;; Pike_NNP_8_48 said in ;;; said_VBD_9_53 the Southern Commercial Convention of 1854 ;;; the_DT_1_3; Southern_NNP_2_7; Commercial_NNP_3_16; Convention_NNP_4_27; of_IN_5_38; 1854_CD_6_41 0.00830 None None 0 pobj(At_IN_0_0, Convention_NNP_4_27); det(Convention_NNP_4_27, the_DT_1_3); nn(Convention_NNP_4_27, Southern_NNP_2_7); nn(Convention_NNP_4_27, Commercial_NNP_3_16); prep(Convention_NNP_4_27, of_IN_5_38); pobj(of_IN_5_38, 1854_CD_6_41); prep(said_VBD_9_53, At_IN_0_0); punct(said_VBD_9_53, ,_,_7_46); nsubj(said_VBD_9_53, Pike_NNP_8_48); ccomp(said_VBD_9_53, remain_VB_13_75); punct(said_VBD_9_53, ._._49_239); det(South_NNP_11_62, the_DT_10_58); nsubj(remain_VB_13_75, South_NNP_11_62); aux(remain_VB_13_75, should_MD_12_68); prep(remain_VB_13_75, in_IN_14_82); cc(remain_VB_13_75, and_CC_17_95); conj(remain_VB_13_75, seek_VB_18_99); punct(remain_VB_13_75, ,_,_23_128); cc(remain_VB_13_75, but_CC_24_130); conj(remain_VB_13_75, better_JJR_39_200); pobj(in_IN_14_82, Union_NNP_16_89); det(Union_NNP_16_89, the_DT_15_85); dobj(seek_VB_18_99, equality_NN_19_104); prep(equality_NN_19_104, with_IN_20_113); pobj(with_IN_20_113, North_NNP_22_122); det(North_NNP_22_122, the_DT_21_118); det(South_NNP_27_141, the_DT_26_137); mark(forced_VBN_30_154, if_IN_25_134); nsubjpass(forced_VBN_30_154, South_NNP_27_141); punct(forced_VBN_30_154, "_``_28_147); auxpass(forced_VBN_30_154, were_VBD_29_149); prep(forced_VBN_30_154, into_IN_31_161); pobj(into_IN_31_161, status_NN_34_178); det(status_NN_34_178, an_DT_32_166); amod(status_NN_34_178, inferior_JJ_33_169); advcl(better_JJR_39_200, forced_VBN_30_154); punct(better_JJR_39_200, ,_,_35_185); nsubj(better_JJR_39_200, she_PRP_36_187); aux(better_JJR_39_200, would_MD_37_191); cop(better_JJR_39_200, be_VB_38_197); prep(better_JJR_39_200, out_IN_40_207); prep(better_JJR_39_200, than_IN_44_224); punct(better_JJR_39_200, ._._47_235); punct(better_JJR_39_200, "_''_48_237); dep(out_IN_40_207, of_IN_41_211); pobj(of_IN_41_211, Union_NNP_43_218); det(Union_NNP_43_218, the_DT_42_214); dep(than_IN_44_224, in_IN_45_229); pobj(in_IN_45_229, it_PRP_46_232) Template {rel} of {arg1} ccomp> {slot0:postag=VB:regex=abide|accept|apologize|appoint|attend|be|betray|bring|cease|come|consider|continue|convict|count|damage|damn|decide|deliver|die|disarm|discuss|do|emerge|end|face|fit|get|give|go|guide|have|head|help|hold|issue|judge|know|lead|learn|leave|let|like|live|lose|make|meet|miss|need|place|play|pose|provide|pursue|put|receive|reign|remain|remind|return|review|say|see|sign|sit|speak|spend|stand|start|stay|stop|support|take|talk|teach|tell|try|turn|understand|veto|wait|want|win|withdraw} >nsubj> {arg2} 0.006 Pike ;;; Pike_NNP_8_48 said of ;;; said_VBD_9_53 the South ;;; the_DT_10_58; South_NNP_11_62 0.00600 None None 1 nn(Wikramanayake_NNP_1_7, Athula_NNP_0_0); cc(Wikramanayake_NNP_1_7, and_CC_2_21); conj(Wikramanayake_NNP_1_7, Martindale_NNP_4_30); punct(Wikramanayake_NNP_1_7, ,_,_5_41); prep(Wikramanayake_NNP_1_7, of_IN_6_43); punct(Wikramanayake_NNP_1_7, ,_,_11_71); cc(Wikramanayake_NNP_1_7, and_CC_12_73); conj(Wikramanayake_NNP_1_7, colleagues_NNS_13_77); nn(Martindale_NNP_4_30, Mark_NNP_3_25); pobj(of_IN_6_43, University_NNP_8_50); det(University_NNP_8_50, the_DT_7_46); prep(University_NNP_8_50, of_IN_9_61); pobj(of_IN_9_61, Hawaii_NNP_10_64); nsubj(tested_VBD_14_88, Wikramanayake_NNP_1_7); ccomp(tested_VBD_14_88, helps_VBZ_18_118); punct(tested_VBD_14_88, ._._28_190); complm(helps_VBZ_18_118, whether_IN_15_95); nsubj(helps_VBZ_18_118, e-catenin_NN_16_103); advmod(helps_VBZ_18_118, also_RB_17_113); xcomp(helps_VBZ_18_118, control_VB_20_127); aux(control_VB_20_127, to_TO_19_124); dobj(control_VB_20_127, gastrulation_NN_21_135); prep(control_VB_20_127, in_IN_22_148); pobj(in_IN_22_148, vectensis_NN_27_180); det(vectensis_NN_27_180, the_DT_23_151); nn(vectensis_NN_27_180, sea_NN_24_155); nn(vectensis_NN_27_180, anemone_NN_25_159); nn(vectensis_NN_27_180, Nematostella_NNP_26_167) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.2444 e-catenin ;;; e-catenin_NN_16_103 also helps to control gastrulation in ;;; also_RB_17_113; helps_VBZ_18_118; to_TO_19_124; control_VB_20_127; gastrulation_NN_21_135 the sea anemone Nematostella vectensis ;;; the_DT_23_151; sea_NN_24_155; anemone_NN_25_159; Nematostella_NNP_26_167; vectensis_NN_27_180 0.24440 None None 0 nn(Wikramanayake_NNP_1_7, Athula_NNP_0_0); cc(Wikramanayake_NNP_1_7, and_CC_2_21); conj(Wikramanayake_NNP_1_7, Martindale_NNP_4_30); punct(Wikramanayake_NNP_1_7, ,_,_5_41); prep(Wikramanayake_NNP_1_7, of_IN_6_43); punct(Wikramanayake_NNP_1_7, ,_,_11_71); cc(Wikramanayake_NNP_1_7, and_CC_12_73); conj(Wikramanayake_NNP_1_7, colleagues_NNS_13_77); nn(Martindale_NNP_4_30, Mark_NNP_3_25); pobj(of_IN_6_43, University_NNP_8_50); det(University_NNP_8_50, the_DT_7_46); prep(University_NNP_8_50, of_IN_9_61); pobj(of_IN_9_61, Hawaii_NNP_10_64); nsubj(tested_VBD_14_88, Wikramanayake_NNP_1_7); ccomp(tested_VBD_14_88, helps_VBZ_18_118); punct(tested_VBD_14_88, ._._28_190); complm(helps_VBZ_18_118, whether_IN_15_95); nsubj(helps_VBZ_18_118, e-catenin_NN_16_103); advmod(helps_VBZ_18_118, also_RB_17_113); xcomp(helps_VBZ_18_118, control_VB_20_127); aux(control_VB_20_127, to_TO_19_124); dobj(control_VB_20_127, gastrulation_NN_21_135); prep(control_VB_20_127, in_IN_22_148); pobj(in_IN_22_148, vectensis_NN_27_180); det(vectensis_NN_27_180, the_DT_23_151); nn(vectensis_NN_27_180, sea_NN_24_155); nn(vectensis_NN_27_180, anemone_NN_25_159); nn(vectensis_NN_27_180, Nematostella_NNP_26_167) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1443 e-catenin ;;; e-catenin_NN_16_103 also helps to control ;;; also_RB_17_113; helps_VBZ_18_118; to_TO_19_124; control_VB_20_127 gastrulation ;;; gastrulation_NN_21_135 0.14430 None None 1 nn(Wikramanayake_NNP_1_7, Athula_NNP_0_0); cc(Wikramanayake_NNP_1_7, and_CC_2_21); conj(Wikramanayake_NNP_1_7, Martindale_NNP_4_30); punct(Wikramanayake_NNP_1_7, ,_,_5_41); prep(Wikramanayake_NNP_1_7, of_IN_6_43); punct(Wikramanayake_NNP_1_7, ,_,_11_71); cc(Wikramanayake_NNP_1_7, and_CC_12_73); conj(Wikramanayake_NNP_1_7, colleagues_NNS_13_77); nn(Martindale_NNP_4_30, Mark_NNP_3_25); pobj(of_IN_6_43, University_NNP_8_50); det(University_NNP_8_50, the_DT_7_46); prep(University_NNP_8_50, of_IN_9_61); pobj(of_IN_9_61, Hawaii_NNP_10_64); nsubj(tested_VBD_14_88, Wikramanayake_NNP_1_7); ccomp(tested_VBD_14_88, helps_VBZ_18_118); punct(tested_VBD_14_88, ._._28_190); complm(helps_VBZ_18_118, whether_IN_15_95); nsubj(helps_VBZ_18_118, e-catenin_NN_16_103); advmod(helps_VBZ_18_118, also_RB_17_113); xcomp(helps_VBZ_18_118, control_VB_20_127); aux(control_VB_20_127, to_TO_19_124); dobj(control_VB_20_127, gastrulation_NN_21_135); prep(control_VB_20_127, in_IN_22_148); pobj(in_IN_22_148, vectensis_NN_27_180); det(vectensis_NN_27_180, the_DT_23_151); nn(vectensis_NN_27_180, sea_NN_24_155); nn(vectensis_NN_27_180, anemone_NN_25_159); nn(vectensis_NN_27_180, Nematostella_NNP_26_167) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 gastrulation ;;; gastrulation_NN_21_135 to be control in ;;; to_TO_19_124; control_VB_20_127 the sea anemone Nematostella vectensis ;;; the_DT_23_151; sea_NN_24_155; anemone_NN_25_159; Nematostella_NNP_26_167; vectensis_NN_27_180 0.01320 None None 1 nsubj(adjunct_JJ_5_32, Battaramulla_NNP_0_0); aux(adjunct_JJ_5_32, has_VBZ_1_13); advmod(adjunct_JJ_5_32, always_RB_2_17); cop(adjunct_JJ_5_32, been_VBN_3_24); det(adjunct_JJ_5_32, an_DT_4_29); prep(adjunct_JJ_5_32, to_TO_6_40); punct(adjunct_JJ_5_32, ._._19_103); pobj(to_TO_6_40, Kotte_NNP_7_43); punct(Kotte_NNP_7_43, ,_,_8_49); rcmod(Kotte_NNP_7_43, lay_VBD_10_57); nsubj(lay_VBD_10_57, which_WDT_9_51); prep(lay_VBD_10_57, on_IN_11_61); pobj(on_IN_11_61, side_NN_14_77); det(side_NN_14_77, the_DT_12_64); amod(side_NN_14_77, opposite_JJ_13_68); prep(side_NN_14_77, of_IN_15_82); pobj(of_IN_15_82, Oya_NNP_18_99); det(Oya_NNP_18_99, the_DT_16_85); nn(Oya_NNP_18_99, Diyawanna_NNP_17_89) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 Battaramulla ;;; Battaramulla_NNP_0_0 has always been an adjunct to ;;; has_VBZ_1_13; always_RB_2_17; been_VBN_3_24; an_DT_4_29; adjunct_JJ_5_32 Kotte ;;; Kotte_NNP_7_43 0.04780 None None 1 nsubj(adjunct_JJ_5_32, Battaramulla_NNP_0_0); aux(adjunct_JJ_5_32, has_VBZ_1_13); advmod(adjunct_JJ_5_32, always_RB_2_17); cop(adjunct_JJ_5_32, been_VBN_3_24); det(adjunct_JJ_5_32, an_DT_4_29); prep(adjunct_JJ_5_32, to_TO_6_40); punct(adjunct_JJ_5_32, ._._19_103); pobj(to_TO_6_40, Kotte_NNP_7_43); punct(Kotte_NNP_7_43, ,_,_8_49); rcmod(Kotte_NNP_7_43, lay_VBD_10_57); nsubj(lay_VBD_10_57, which_WDT_9_51); prep(lay_VBD_10_57, on_IN_11_61); pobj(on_IN_11_61, side_NN_14_77); det(side_NN_14_77, the_DT_12_64); amod(side_NN_14_77, opposite_JJ_13_68); prep(side_NN_14_77, of_IN_15_82); pobj(of_IN_15_82, Oya_NNP_18_99); det(Oya_NNP_18_99, the_DT_16_85); nn(Oya_NNP_18_99, Diyawanna_NNP_17_89) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 Kotte ;;; Kotte_NNP_7_43 lay on ;;; lay_VBD_10_57 the opposite side of the Diyawanna Oya ;;; the_DT_12_64; opposite_JJ_13_68; side_NN_14_77; of_IN_15_82; the_DT_16_85; Diyawanna_NNP_17_89; Oya_NNP_18_99 0.02000 None None 0 dep(of_IN_1_8, Because_IN_0_0); pobj(of_IN_1_8, importance_NN_4_23); poss(importance_NN_4_23, its_PRP$_2_11); amod(importance_NN_4_23, central_JJ_3_15); prep(importance_NN_4_23, to_TO_5_34); prep(importance_NN_4_23, in_IN_8_56); pobj(to_TO_5_34, conversions_NNS_7_44); nn(conversions_NNS_7_44, energy_NN_6_37); pobj(in_IN_8_56, prokaryotes_NNS_9_59); cc(prokaryotes_NNS_9_59, and_CC_10_71); conj(prokaryotes_NNS_9_59, eukaryotes_NNS_11_75); prep(helped_VBN_15_105, of_IN_1_8); punct(helped_VBN_15_105, ,_,_12_86); nsubj(helped_VBN_15_105, chemiosmosis_NN_13_88); aux(helped_VBN_15_105, has_VBZ_14_101); prep(helped_VBN_15_105, unify_IN_16_112); punct(helped_VBN_15_105, ._._21_145); pobj(unify_IN_16_112, study_NN_18_122); det(study_NN_18_122, the_DT_17_118); prep(study_NN_18_122, of_IN_19_128); pobj(of_IN_19_128, bioenergetics_NNS_20_131) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 chemiosmosis ;;; chemiosmosis_NN_13_88 has helped of ;;; has_VBZ_14_101; helped_VBN_15_105 its central importance ;;; its_PRP$_2_11; central_JJ_3_15; importance_NN_4_23 0.04440 None None 1 dep(of_IN_1_8, Because_IN_0_0); pobj(of_IN_1_8, importance_NN_4_23); poss(importance_NN_4_23, its_PRP$_2_11); amod(importance_NN_4_23, central_JJ_3_15); prep(importance_NN_4_23, to_TO_5_34); prep(importance_NN_4_23, in_IN_8_56); pobj(to_TO_5_34, conversions_NNS_7_44); nn(conversions_NNS_7_44, energy_NN_6_37); pobj(in_IN_8_56, prokaryotes_NNS_9_59); cc(prokaryotes_NNS_9_59, and_CC_10_71); conj(prokaryotes_NNS_9_59, eukaryotes_NNS_11_75); prep(helped_VBN_15_105, of_IN_1_8); punct(helped_VBN_15_105, ,_,_12_86); nsubj(helped_VBN_15_105, chemiosmosis_NN_13_88); aux(helped_VBN_15_105, has_VBZ_14_101); prep(helped_VBN_15_105, unify_IN_16_112); punct(helped_VBN_15_105, ._._21_145); pobj(unify_IN_16_112, study_NN_18_122); det(study_NN_18_122, the_DT_17_118); prep(study_NN_18_122, of_IN_19_128); pobj(of_IN_19_128, bioenergetics_NNS_20_131) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 chemiosmosis ;;; chemiosmosis_NN_13_88 has helped unify ;;; has_VBZ_14_101; helped_VBN_15_105 the study of bioenergetics ;;; the_DT_17_118; study_NN_18_122; of_IN_19_128; bioenergetics_NN_20_131 0.04440 None None 1 dep(of_IN_1_8, Because_IN_0_0); pobj(of_IN_1_8, ratio_NN_5_38); det(ratio_NN_5_38, the_DT_2_11); amod(ratio_NN_5_38, high_JJ_3_15); nn(ratio_NN_5_38, surface-to-volume_NN_4_20); rcmod(ratio_NN_5_38, goes_VBZ_7_49); punct(ratio_NN_5_38, ,_,_11_70); conj(ratio_NN_5_38, mice_NNS_13_77); nsubj(goes_VBZ_7_49, that_WDT_6_44); prep(goes_VBZ_7_49, with_IN_8_54); pobj(with_IN_8_54, size_NN_10_65); amod(size_NN_10_65, small_JJ_9_59); amod(mice_NNS_13_77, deer_JJR_12_72); prep(lose_VBP_14_82, of_IN_1_8); dobj(lose_VBP_14_82, heat_NN_16_92); advmod(lose_VBP_14_82, rapidly_RB_17_97); cc(lose_VBP_14_82, and_CC_18_105); conj(lose_VBP_14_82, generate_VB_21_125); punct(lose_VBP_14_82, ._._28_178); nn(heat_NN_16_92, body_NN_15_87); aux(generate_VB_21_125, must_MD_19_109); advmod(generate_VB_21_125, constantly_RB_20_114); dobj(generate_VB_21_125, heat_NN_23_144); xcomp(generate_VB_21_125, maintain_VB_25_152); amod(heat_NN_23_144, metabolic_JJ_22_134); aux(maintain_VB_25_152, to_TO_24_149); dobj(maintain_VB_25_152, temperature_NN_27_166); nn(temperature_NN_27_166, body_NN_26_161) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2} 0.0125 the high surface-to-volume ratio ;;; the_DT_2_11; high_JJ_3_15; surface-to-volume_NN_4_20; ratio_NN_5_38 goes with ;;; goes_VBZ_7_49 small size ;;; small_JJ_9_59; size_NN_10_65 0.01250 None None 1 nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.7345 Beecher ;;; Beecher_NNP_0_0 began collecting fossils from ;;; began_VBD_1_8; collecting_VBG_2_14; fossils_NN_3_25 local sandstones and shales ;;; local_JJ_5_38; sandstones_NN_6_44; and_CC_7_55; shales_NN_8_59 0.73450 when_his family moved to northwestern Pennsylvania_9_15 None 1 nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 his family ;;; his_PRP$_10_71; family_NN_11_75 moved to ;;; moved_VBD_12_82 northwestern Pennsylvania ;;; northwestern_JJ_14_91; Pennsylvania_NNP_15_104 0.73450 None None 1 nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797 Beecher ;;; Beecher_NNP_0_0 began collecting ;;; began_VBD_1_8; collecting_VBG_2_14 fossils ;;; fossils_NN_3_25 0.37970 when_his family moved to northwestern Pennsylvania_9_15 None 1 nsubj(began_VBD_1_8, Beecher_NNP_0_0); xcomp(began_VBD_1_8, collecting_VBG_2_14); punct(began_VBD_1_8, ._._39_270); dobj(collecting_VBG_2_14, fossils_NNS_3_25); prep(collecting_VBG_2_14, from_IN_4_33); advcl(collecting_VBG_2_14, moved_VBD_12_82); punct(collecting_VBG_2_14, ,_,_16_117); xcomp(collecting_VBG_2_14, resulting_VBG_17_119); pobj(from_IN_4_33, sandstones_NNS_6_44); amod(sandstones_NNS_6_44, local_JJ_5_38); cc(sandstones_NNS_6_44, and_CC_7_55); conj(sandstones_NNS_6_44, shales_NNS_8_59); poss(family_NN_11_75, his_PRP$_10_71); advmod(moved_VBD_12_82, when_WRB_9_66); nsubj(moved_VBD_12_82, family_NN_11_75); prep(moved_VBD_12_82, to_TO_13_88); pobj(to_TO_13_88, Pennsylvania_NNP_15_104); amod(Pennsylvania_NNP_15_104, northwestern_JJ_14_91); prep(resulting_VBG_17_119, in_IN_18_129); advmod(resulting_VBG_17_119, prior_RB_27_192); pobj(in_IN_18_129, collection_NN_20_134); det(collection_NN_20_134, a_DT_19_132); prep(collection_NN_20_134, of_IN_21_145); pobj(of_IN_21_145, phyllocarids_NNS_23_155); amod(phyllocarids_NNS_23_155, fossil_JJ_22_148); cc(phyllocarids_NNS_23_155, and_CC_24_168); conj(phyllocarids_NNS_23_155, unionids_NNS_26_183); nn(unionids_NNS_26_183, freshwater_NN_25_172); dep(prior_RB_27_192, to_TO_28_198); pcomp(to_TO_28_198, studying_VBG_30_205); poss(studying_VBG_30_205, his_PRP$_29_201); prep(studying_VBG_30_205, for_IN_31_214); pobj(for_IN_31_214, degree_NN_34_235); det(degree_NN_34_235, an_DT_32_218); amod(degree_NN_34_235, undergraduate_JJ_33_221); prep(degree_NN_34_235, from_IN_35_242); pobj(from_IN_35_242, University_NNP_36_247); prep(University_NNP_36_247, of_IN_37_258); pobj(of_IN_37_258, Michigan_NNP_38_261) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 fossils ;;; fossils_NN_3_25 be collecting from ;;; collecting_VBG_2_14 local sandstones and shales ;;; local_JJ_5_38; sandstones_NN_6_44; and_CC_7_55; shales_NN_8_59 0.00790 when_his family moved to northwestern Pennsylvania_9_15 None 1 pobj(Before_IN_0_0, adjustment_NN_1_7); prep(adjustment_NN_1_7, for_IN_2_18); pobj(for_IN_2_18, inflation_NN_3_22); det(association_NN_6_38, the_DT_5_34); punct(said_VBD_7_50, ,_,_4_32); nsubj(said_VBD_7_50, association_NN_6_38); punct(said_VBD_7_50, ,_,_8_55); prep(were_VBD_10_64, Before_IN_0_0); parataxis(were_VBD_10_64, said_VBD_7_50); nsubj(were_VBD_10_64, orders_NNS_9_57); advmod(were_VBD_10_64, up_RB_11_69); punct(were_VBD_10_64, ._._16_86); dep(up_RB_11_69, %_NN_15_84); det(%_NN_15_84, a_DT_12_72); amod(%_NN_15_84, nominal_JJ_13_74); num(%_NN_15_84, 5_CD_14_82) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 orders ;;; orders_NN_9_57 were up a nominal 5 % before ;;; were_VBD_10_64; up_RB_11_69; a_DT_12_72; nominal_JJ_13_74; 5_CD_14_82; %_NN_15_84 adjustment ;;; adjustment_NN_1_7 0.73450 None None 1 det(glia_NN_2_12, Both_DT_0_0); amod(glia_NN_2_12, radial_JJ_1_5); cc(glia_NN_2_12, and_CC_3_17); conj(glia_NN_2_12, astrocytes_NNS_4_21); nsubj(act_VB_7_41, glia_NN_2_12); aux(act_VB_7_41, can_MD_5_32); advmod(act_VB_7_41, also_RB_6_36); prep(act_VB_7_41, as_IN_8_45); punct(act_VB_7_41, ,_,_11_59); xcomp(act_VB_7_41, generating_VBG_12_61); punct(act_VB_7_41, ._._17_93); pobj(as_IN_8_45, cells_NNS_10_53); nn(cells_NNS_10_53, stem_NN_9_48); dobj(generating_VBG_12_61, neurons_NNS_14_76); amod(neurons_NNS_14_76, new_JJ_13_72); cc(neurons_NNS_14_76, and_CC_15_84); conj(neurons_NNS_14_76, glia_NNP_16_88) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.1473 Both radial glia and astrocytes ;;; Both_DT_0_0; radial_JJ_1_5; glia_NN_2_12; and_CC_3_17; astrocytes_NN_4_21 can also act generating ;;; can_MD_5_32; also_RB_6_36; act_VB_7_41; generating_VBG_12_61 new neurons and glia ;;; new_JJ_13_72; neurons_NN_14_76; and_CC_15_84; glia_NNP_16_88 0.14730 None None 1 det(glia_NN_2_12, Both_DT_0_0); amod(glia_NN_2_12, radial_JJ_1_5); cc(glia_NN_2_12, and_CC_3_17); conj(glia_NN_2_12, astrocytes_NNS_4_21); nsubj(act_VB_7_41, glia_NN_2_12); aux(act_VB_7_41, can_MD_5_32); advmod(act_VB_7_41, also_RB_6_36); prep(act_VB_7_41, as_IN_8_45); punct(act_VB_7_41, ,_,_11_59); xcomp(act_VB_7_41, generating_VBG_12_61); punct(act_VB_7_41, ._._17_93); pobj(as_IN_8_45, cells_NNS_10_53); nn(cells_NNS_10_53, stem_NN_9_48); dobj(generating_VBG_12_61, neurons_NNS_14_76); amod(neurons_NNS_14_76, new_JJ_13_72); cc(neurons_NNS_14_76, and_CC_15_84); conj(neurons_NNS_14_76, glia_NNP_16_88) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 Both radial glia and astrocytes ;;; Both_DT_0_0; radial_JJ_1_5; glia_NN_2_12; and_CC_3_17; astrocytes_NN_4_21 can also act as ;;; can_MD_5_32; also_RB_6_36; act_VB_7_41 stem cells ;;; stem_NN_9_48; cells_NN_10_53 0.13490 None None 1 nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Bruno DeGol ;;; Bruno_NNP_0_0; DeGol_NNP_1_6 be chairman of ;;; chairman_NN_3_14 DeGol Brothers Lumber ;;; DeGol_NNP_5_26; Brothers_NNP_6_32; Lumber_NNP_7_41 0.40310 None None 1 nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) Template be {rel} {prep} {arg1} xcomp> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0208 Bruno DeGol ;;; Bruno_NNP_0_0; DeGol_NNP_1_6 be a director of ;;; a_DT_16_78; director_NN_17_80 this bank-holding company ;;; this_DT_19_92; bank-holding_JJ_20_97; company_NN_21_110 0.02080 None None 1 nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) Template be {rel} {prep} {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locate|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109 DeGol Brothers Lumber ;;; DeGol_NNP_5_26; Brothers_NNP_6_32; Lumber_NNP_7_41 be chairman of ;;; chairman_NN_3_14 Gallitzin ;;; Gallitzin_NNP_9_50 0.01090 None None 1 nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) Template be {rel} {arg1} xcomp> {arg2} 0.0087 Bruno DeGol ;;; Bruno_NNP_0_0; DeGol_NNP_1_6 was named ;;; was_VBD_14_68; named_VBN_15_72 a director of this bank-holding company ;;; a_DT_16_78; director_NN_17_80; of_IN_18_89; this_DT_19_92; bank-holding_JJ_20_97; company_NN_21_110 0.00870 None None 1 nn(DeGol_NNP_1_6, Bruno_NNP_0_0); punct(DeGol_NNP_1_6, ,_,_2_12); appos(DeGol_NNP_1_6, chairman_NN_3_14); punct(DeGol_NNP_1_6, ,_,_13_66); prep(chairman_NN_3_14, of_IN_4_23); pobj(of_IN_4_23, Lumber_NNP_7_41); nn(Lumber_NNP_7_41, DeGol_NNP_5_26); nn(Lumber_NNP_7_41, Brothers_NNPS_6_32); punct(Lumber_NNP_7_41, ,_,_8_48); appos(Lumber_NNP_7_41, Gallitzin_NNP_9_50); punct(Gallitzin_NNP_9_50, ,_,_10_60); appos(Gallitzin_NNP_9_50, ._._12_64); nn(._._12_64, Pa_NNP_11_62); nsubjpass(named_VBN_15_72, DeGol_NNP_1_6); auxpass(named_VBN_15_72, was_VBD_14_68); xcomp(named_VBN_15_72, director_NN_17_80); punct(named_VBN_15_72, ,_,_22_118); xcomp(named_VBN_15_72, expanding_VBG_23_120); punct(named_VBN_15_72, ._._29_154); det(director_NN_17_80, a_DT_16_78); prep(director_NN_17_80, of_IN_18_89); pobj(of_IN_18_89, company_NN_21_110); det(company_NN_21_110, this_DT_19_92); amod(company_NN_21_110, bank-holding_JJ_20_97); dobj(expanding_VBG_23_120, board_NN_25_134); prep(expanding_VBG_23_120, to_TO_26_140); det(board_NN_25_134, the_DT_24_130); pobj(to_TO_26_140, members_NNS_28_146); num(members_NNS_28_146, 11_CD_27_143) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 the board ;;; the_DT_24_130; board_NN_25_134 be expanding to ;;; expanding_VBG_23_120 11 members ;;; 11_CD_27_143; members_NN_28_146 0.00790 None None 1 possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 Wolfowitz 's tenure ;;; Wolfowitz_NNP_1_4; 's_POS_2_14; tenure_NN_3_17 was a notable success largely owing to ;;; was_VBD_6_38; a_DT_7_42; notable_JJ_8_44; success_NN_9_52 the fact ;;; the_DT_14_79; fact_NN_15_83 0.95550 None None 1 possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_21_108 went native in ;;; went_VBD_22_111; native_JJ_23_116 essence ;;; essence_NN_19_98 0.73450 None None 1 possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 a notable success ;;; a_DT_7_42; notable_JJ_8_44; success_NN_9_52 be Wolfowitz 's tenure as ;;; Wolfowitz_NNP_1_4; 's_POS_2_14; tenure_NN_3_17 Ambassador ;;; Ambassador_NNP_5_27 0.04770 None None 1 possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 Wolfowitz 's tenure ;;; Wolfowitz_NNP_1_4; 's_POS_2_14; tenure_NN_3_17 was ;;; was_VBD_6_38 a notable success ;;; a_DT_7_42; notable_JJ_8_44; success_NN_9_52 0.02160 None None 0 possessive(Wolfowitz_NNP_1_4, 's_POS_2_14); poss(tenure_NN_3_17, Wolfowitz_NNP_1_4); prep(tenure_NN_3_17, as_IN_4_24); pobj(as_IN_4_24, Ambassador_NNP_5_27); cc(success_NN_9_52, But_CC_0_0); nsubj(success_NN_9_52, tenure_NN_3_17); cop(success_NN_9_52, was_VBD_6_38); det(success_NN_9_52, a_DT_7_42); amod(success_NN_9_52, notable_JJ_8_44); punct(success_NN_9_52, ,_,_10_60); partmod(success_NN_9_52, owing_VBG_12_70); punct(success_NN_9_52, ._._24_123); advmod(owing_VBG_12_70, largely_RB_11_62); prep(owing_VBG_12_70, to_TO_13_76); pobj(to_TO_13_76, fact_NN_15_83); det(fact_NN_15_83, the_DT_14_79); ccomp(fact_NN_15_83, went_VBD_22_111); pobj(in_IN_18_95, essence_NN_19_98); complm(went_VBD_22_111, that_IN_16_88); punct(went_VBD_22_111, ,_,_17_93); prep(went_VBD_22_111, in_IN_18_95); punct(went_VBD_22_111, ,_,_20_106); nsubj(went_VBD_22_111, he_PRP_21_108); acomp(went_VBD_22_111, native_JJ_23_116) Template {rel} to {arg1} nsubj> {arg2} 0.0071 essence ;;; essence_NN_19_98 went native to ;;; went_VBD_22_111; native_JJ_23_116 he ;;; he_PRP_21_108 0.00710 None None 1 det(approach_NN_2_9, this_DT_1_4); punct(approach_NN_2_9, ,_,_3_18); partmod(approach_NN_2_9, called_VBN_4_20); punct(approach_NN_2_9, ,_,_7_44); dep(called_VBN_4_20, genetics_NNS_6_35); nn(genetics_NNS_6_35, reverse_NN_5_27); cc(poses_VBZ_8_46, But_CC_0_0); nsubj(poses_VBZ_8_46, approach_NN_2_9); dobj(poses_VBZ_8_46, challenge_NN_11_58); punct(poses_VBZ_8_46, ._._19_114); det(challenge_NN_11_58, a_DT_9_52); amod(challenge_NN_11_58, new_JJ_10_54); punct(challenge_NN_11_58, :_:_12_68); dep(challenge_NN_11_58, determining_VBG_13_70); dobj(determining_VBG_13_70, phenotype_NN_15_86); prep(determining_VBG_13_70, from_IN_16_96); det(phenotype_NN_15_86, the_DT_14_82); pobj(from_IN_16_96, genotype_NN_18_105); det(genotype_NN_18_105, the_DT_17_101) Template {rel} {arg1} dobj> {arg2} 0.1443 this approach called reverse genetics ;;; this_DT_1_4; approach_NN_2_9; called_VBN_4_20; reverse_NN_5_27; genetics_NN_6_35 poses ;;; poses_VBZ_8_46 a new challenge ;;; a_DT_9_52; new_JJ_10_54; challenge_NN_11_58 0.14430 None None 0 det(approach_NN_2_9, this_DT_1_4); punct(approach_NN_2_9, ,_,_3_18); partmod(approach_NN_2_9, called_VBN_4_20); punct(approach_NN_2_9, ,_,_7_44); dep(called_VBN_4_20, genetics_NNS_6_35); nn(genetics_NNS_6_35, reverse_NN_5_27); cc(poses_VBZ_8_46, But_CC_0_0); nsubj(poses_VBZ_8_46, approach_NN_2_9); dobj(poses_VBZ_8_46, challenge_NN_11_58); punct(poses_VBZ_8_46, ._._19_114); det(challenge_NN_11_58, a_DT_9_52); amod(challenge_NN_11_58, new_JJ_10_54); punct(challenge_NN_11_58, :_:_12_68); dep(challenge_NN_11_58, determining_VBG_13_70); dobj(determining_VBG_13_70, phenotype_NN_15_86); prep(determining_VBG_13_70, from_IN_16_96); det(phenotype_NN_15_86, the_DT_14_82); pobj(from_IN_16_96, genotype_NN_18_105); det(genotype_NN_18_105, the_DT_17_101) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 the phenotype ;;; the_DT_14_82; phenotype_NN_15_86 be determining from ;;; determining_VBG_13_70 the genotype ;;; the_DT_17_101; genotype_NN_18_105 0.00790 None None 1 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Rome ;;; Rome_NNP_6_37 asked Antiochus III the Great of Syria for ;;; asked_VBD_14_75; Antiochus_NNP_15_81; III_NNP_16_91; the_DT_17_95; Great_NNP_18_99; of_IN_19_105; Syria_NNP_20_108 help ;;; help_NN_22_118 0.73450 None None 1 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the Roman general Manius Acilius Glabrio ;;; the_DT_24_125; Roman_NNP_25_129; general_JJ_26_135; Manius_NNP_27_143; Acilius_NNP_28_150; Glabrio_NNP_29_158 advanced to ;;; advanced_VBD_33_183 Amfissa ;;; Amfissa_NNP_35_195 0.73450 None None 0 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {arg1} dobj> {arg2} 0.3797 Rome ;;; Rome_NNP_6_37 asked ;;; asked_VBD_14_75 Antiochus III ;;; Antiochus_NNP_15_81; III_NNP_16_91 0.37970 None None 1 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 Rome ;;; Rome_NNP_6_37 was to rule ;;; was_VBD_7_42; to_TO_8_46; rule_VB_9_49 the Greek cities ;;; the_DT_10_54; Greek_JJ_11_58; cities_NN_12_64 0.37970 None None 1 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {arg1} dobj> {arg2} 0.3797 he ;;; he_PRP_38_211 conquered ;;; conquered_VBD_39_214 the Crissaean plain ;;; the_DT_40_224; Crissaean_NNP_41_228; plain_NN_42_238 0.37970 None None 1 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {arg1} dobj> {arg2} 0.3797 the Roman general Manius Acilius Glabrio ;;; the_DT_24_125; Roman_NNP_25_129; general_JJ_26_135; Manius_NNP_27_143; Acilius_NNP_28_150; Glabrio_NNP_29_158 seized ;;; seized_VBD_30_166 Lamia ;;; Lamia_NNP_31_173 0.37970 None None 1 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {arg1} dobj> {arg2} 0.0577 he ;;; he_PRP_38_211 besieged ;;; besieged_VBN_44_248 the town ;;; the_DT_45_257; town_NN_46_261 0.05770 None None 1 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 he ;;; he_PRP_38_211 besieged the town in ;;; besieged_VBN_44_248; the_DT_45_257; town_NN_46_261 190 BC ;;; 190_CD_48_269; BC_NNP_49_273 0.04440 None None 1 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0195 Rome ;;; Rome_NNP_6_37 to rule ;;; to_TO_8_46; rule_VB_9_49 the Greek cities ;;; the_DT_10_54; Greek_JJ_11_58; cities_NN_12_64 0.01950 None None 1 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Antiochus III ;;; Antiochus_NNP_15_81; III_NNP_16_91 be asked for ;;; asked_VBD_14_75 help ;;; help_NN_22_118 0.01550 None None 0 det(Aetolians_NNPS_3_13, the_DT_2_9); advmod(realised_VBD_4_23, when_WRB_1_4); nsubj(realised_VBD_4_23, Aetolians_NNPS_3_13); ccomp(realised_VBD_4_23, was_VBD_7_42); complm(was_VBD_7_42, that_IN_5_32); nsubj(was_VBD_7_42, Rome_NNP_6_37); xcomp(was_VBD_7_42, rule_VB_9_49); cc(was_VBD_7_42, and_CC_13_71); conj(was_VBD_7_42, asked_VBD_14_75); aux(rule_VB_9_49, to_TO_8_46); dobj(rule_VB_9_49, cities_NNS_12_64); det(cities_NNS_12_64, the_DT_10_54); amod(cities_NNS_12_64, Greek_JJ_11_58); dobj(asked_VBD_14_75, III_NNP_16_91); prep(asked_VBD_14_75, for_IN_21_114); nn(III_NNP_16_91, Antiochus_NNP_15_81); dep(III_NNP_16_91, Great_NNP_18_99); det(Great_NNP_18_99, the_DT_17_95); prep(Great_NNP_18_99, of_IN_19_105); pobj(of_IN_19_105, Syria_NNP_20_108); pobj(for_IN_21_114, help_NN_22_118); dep(general_JJ_26_135, Roman_NNP_25_129); det(Glabrio_NNP_29_158, the_DT_24_125); amod(Glabrio_NNP_29_158, general_JJ_26_135); nn(Glabrio_NNP_29_158, Manius_NNP_27_143); nn(Glabrio_NNP_29_158, Acilius_NNP_28_150); cc(seized_VBD_30_166, But_CC_0_0); dep(seized_VBD_30_166, realised_VBD_4_23); punct(seized_VBD_30_166, ,_,_23_123); nsubj(seized_VBD_30_166, Glabrio_NNP_29_158); dobj(seized_VBD_30_166, Lamia_NNP_31_173); cc(seized_VBD_30_166, and_CC_32_179); conj(seized_VBD_30_166, advanced_VBD_33_183); punct(seized_VBD_30_166, ._._50_276); prep(advanced_VBD_33_183, to_TO_34_192); pobj(to_TO_34_192, Amfissa_NNP_35_195); punct(Amfissa_NNP_35_195, ,_,_36_203); rcmod(Amfissa_NNP_35_195, conquered_VBD_39_214); advmod(conquered_VBD_39_214, where_WRB_37_205); nsubj(conquered_VBD_39_214, he_PRP_38_211); dobj(conquered_VBD_39_214, plain_NN_42_238); cc(conquered_VBD_39_214, and_CC_43_244); conj(conquered_VBD_39_214, besieged_VBN_44_248); det(plain_NN_42_238, the_DT_40_224); nn(plain_NN_42_238, Crissaean_NNP_41_228); dobj(besieged_VBN_44_248, town_NN_46_261); prep(besieged_VBN_44_248, in_IN_47_266); det(town_NN_46_261, the_DT_45_257); pobj(in_IN_47_266, BC_NNP_49_273); num(BC_NNP_49_273, 190_CD_48_269) Template {rel} {arg1} ccomp> {slot0:postag=VBD:regex=aka|announce|appear|approve|ask|attack|attempt|be|beat|beget|begin|blame|break|bring|buy|call|capture|carry|cause|celebrate|change|choose|circa|claim|come|command|control|create|crucify|cry|decide|declare|defeat|deliver|demand|deny|die|discover|do|draw|drop|emerge|enlist|enter|establish|estimate|fall|favor|fear|feel|find|flee|fly|follow|ft|get|give|go|greet|grow|have|help|hit|hold|inspire|intend|introduce|invade|invent|join|kill|know|launch|lead|leave|lift|live|look|lose|love|make|marry|mean|meet|name|opt|pass|pick|place|play|pledge|produce|prove|publish|put|raise|reach|read|realize|receive|refuse|release|replace|respond|rise|salt|sample|say|see|send|serve|set|show|sign|speak|spend|spring|stand|start|stay|stop|suffer|surprise|take|teach|tell|think|try|turn|use|veto|vote|wake|walk|want|win|write} >nsubj> {arg2} 0.0105 the Aetolians ;;; the_DT_2_9; Aetolians_NNP_3_13 realised ;;; realised_VBD_4_23 Rome ;;; Rome_NNP_6_37 0.01050 None None 0 pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 the squadron ;;; the_DT_20_112; squadron_NN_21_116 be an airfield at ;;; an_DT_10_53; airfield_NN_11_56 Cape Torokina ;;; Cape_NNP_13_68; Torokina_NNP_14_73 0.95550 None None 0 pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 the squadron ;;; the_DT_20_112; squadron_NN_21_116 be an airfield on ;;; an_DT_10_53; airfield_NN_11_56 Bougainville ;;; Bougainville_NNP_16_85 0.95550 None None 0 pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.7345 the squadron ;;; the_DT_20_112; squadron_NN_21_116 began taking part in ;;; began_VBD_22_125; taking_VBG_23_131; part_NN_24_138 the air ;;; the_DT_26_146; air_NN_27_150 0.73450 None None 1 pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Rabaul ;;; Rabaul_NNP_34_195 be the Japanese naval base at ;;; the_DT_36_204; Japanese_JJ_37_208; naval_JJ_38_217; base_NN_39_223 Kavieng ;;; Kavieng_NNP_41_231 0.40310 None None 0 pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797 the squadron ;;; the_DT_20_112; squadron_NN_21_116 began taking ;;; began_VBD_22_125; taking_VBG_23_131 part ;;; part_NN_24_138 0.37970 None None 0 pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393 1944 the squadron ;;; 1944_CD_4_16; the_DT_5_21; squadron_NN_6_25 was operating by ;;; was_VBD_7_34; operating_VBG_8_38 January 27 ;;; January_NNP_1_3; 27_CD_2_11 0.03930 None None 1 pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393 1944 the squadron ;;; 1944_CD_4_16; the_DT_5_21; squadron_NN_6_25 was operating from ;;; was_VBD_7_34; operating_VBG_8_38 an airfield ;;; an_DT_10_53; airfield_NN_11_56 0.03930 None None 0 pobj(By_IN_0_0, January_NNP_1_3); num(January_NNP_1_3, 27_CD_2_11); num(squadron_NN_6_25, 1944_CD_4_16); det(squadron_NN_6_25, the_DT_5_21); prep(operating_VBG_8_38, By_IN_0_0); punct(operating_VBG_8_38, ,_,_3_14); nsubj(operating_VBG_8_38, squadron_NN_6_25); aux(operating_VBG_8_38, was_VBD_7_34); prep(operating_VBG_8_38, from_IN_9_48); pobj(from_IN_9_48, airfield_NN_11_56); cc(from_IN_9_48, and_CC_17_98); conj(from_IN_9_48, began_VBD_22_125); det(airfield_NN_11_56, an_DT_10_53); prep(airfield_NN_11_56, at_IN_12_65); prep(airfield_NN_11_56, on_IN_15_82); pobj(at_IN_12_65, Torokina_NNP_14_73); nn(Torokina_NNP_14_73, Cape_NNP_13_68); pobj(on_IN_15_82, Bougainville_NNP_16_85); pobj(from_IN_18_102, here_RB_19_107); det(squadron_NN_21_116, the_DT_20_112); prep(began_VBD_22_125, from_IN_18_102); nsubj(began_VBD_22_125, squadron_NN_21_116); xcomp(began_VBD_22_125, taking_VBG_23_131); dobj(taking_VBG_23_131, part_NN_24_138); prep(taking_VBG_23_131, in_IN_25_143); pobj(in_IN_25_143, air_NN_27_150); det(air_NN_27_150, the_DT_26_146); csubj(strikes_VBZ_28_154, operating_VBG_8_38); prep(strikes_VBZ_28_154, against_IN_29_162); cc(strikes_VBZ_28_154, and_CC_45_253); conj(strikes_VBZ_28_154, against_IN_46_257); punct(strikes_VBZ_28_154, ._._53_313); pobj(against_IN_29_162, garrison_NN_32_183); det(garrison_NN_32_183, the_DT_30_170); amod(garrison_NN_32_183, Japanese_JJ_31_174); prep(garrison_NN_32_183, at_IN_33_192); pobj(at_IN_33_192, Rabaul_NNP_34_195); punct(Rabaul_NNP_34_195, ,_,_35_202); appos(Rabaul_NNP_34_195, base_NN_39_223); det(base_NN_39_223, the_DT_36_204); amod(base_NN_39_223, Japanese_JJ_37_208); amod(base_NN_39_223, naval_JJ_38_217); prep(base_NN_39_223, at_IN_40_228); pobj(at_IN_40_228, Kavieng_NNP_41_231); punct(Kavieng_NNP_41_231, ,_,_42_239); conj(Kavieng_NNP_41_231, Ireland_NNP_44_245); nn(Ireland_NNP_44_245, New_NNP_43_241); pobj(against_IN_46_257, shipping_NN_48_274); amod(shipping_NN_48_274, Japanese_JJ_47_265); prep(shipping_NN_48_274, near_IN_49_283); pobj(near_IN_49_283, Archipelago_NNP_52_301); det(Archipelago_NNP_52_301, the_DT_50_288); nn(Archipelago_NNP_52_301, Bismarck_NNP_51_292) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 part ;;; part_NN_24_138 be taking in ;;; taking_VBG_23_131 the air ;;; the_DT_26_146; air_NN_27_150 0.00790 None None 1 nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Byrom ;;; Byrom_NNP_0_0 is commemorated by ;;; is_VBZ_29_143; commemorated_VBN_30_146 a plaque ;;; a_DT_32_162; plaque_NN_33_164 1.00000 None None 1 nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Byrom ;;; Byrom_NNP_0_0 was born at ;;; was_VBD_1_6; born_VBN_2_10 a major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116 1.00000 None None 1 nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 his birth ;;; his_PRP$_27_133; birth_NN_28_137 is commemorated by ;;; is_VBZ_29_143; commemorated_VBN_30_146 a plaque ;;; a_DT_32_162; plaque_NN_33_164 1.00000 None None 1 nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 his birth ;;; his_PRP$_27_133; birth_NN_28_137 was born at ;;; was_VBD_1_6; born_VBN_2_10 a major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116 1.00000 None None 1 nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) Template be {rel} in {arg1} prep_at> {arg2} 0.0432 Byrom ;;; Byrom_NNP_0_0 was born in ;;; was_VBD_1_6; born_VBN_2_10 a major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116 0.04320 None None 1 nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) Template be {rel} in {arg1} prep_at> {arg2} 0.0432 his birth ;;; his_PRP$_27_133; birth_NN_28_137 was born in ;;; was_VBD_1_6; born_VBN_2_10 a major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116 0.04320 None None 1 nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 The Wellington Inn ;;; The_DT_16_74; Wellington_NNP_17_78; Inn_NNP_18_89 is now ;;; is_VBZ_19_93; now_RB_20_96 a major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116 0.00840 None None 0 nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) Template be {rel} on {arg1} prep_at> {arg2} 0.0055 Byrom ;;; Byrom_NNP_0_0 was born on ;;; was_VBD_1_6; born_VBN_2_10 a major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116 0.00550 None None 0 nsubjpass(born_VBN_2_10, Byrom_NNP_0_0); auxpass(born_VBN_2_10, was_VBD_1_6); prep(born_VBN_2_10, at_IN_3_15); punct(born_VBN_2_10, ,_,_25_127); cc(born_VBN_2_10, and_CC_26_129); conj(born_VBN_2_10, commemorated_VBN_30_146); punct(born_VBN_2_10, ._._38_187); pobj(at_IN_3_15, attraction_NN_24_116); dep(what_WP_4_18, is_VBZ_5_23); advmod(is_VBZ_5_23, now_RB_6_26); prep(is_VBZ_5_23, in_IN_13_64); dep(now_RB_6_26, Inn_NNP_9_45); det(Inn_NNP_9_45, the_DT_7_30); nn(Inn_NNP_9_45, Wellington_NNP_8_34); punct(Inn_NNP_9_45, ,_,_10_49); appos(Inn_NNP_9_45, Manchester_NNP_11_51); punct(Inn_NNP_9_45, ,_,_12_62); pobj(in_IN_13_64, 1692_CD_14_67); det(Inn_NNP_18_89, The_DT_16_74); nn(Inn_NNP_18_89, Wellington_NNP_17_78); dep(attraction_NN_24_116, what_WP_4_18); punct(attraction_NN_24_116, ,_,_15_72); nsubj(attraction_NN_24_116, Inn_NNP_18_89); cop(attraction_NN_24_116, is_VBZ_19_93); advmod(attraction_NN_24_116, now_RB_20_96); det(attraction_NN_24_116, a_DT_21_100); amod(attraction_NN_24_116, major_JJ_22_102); nn(attraction_NN_24_116, tourist_NN_23_108); poss(birth_NN_28_137, his_PRP$_27_133); nsubjpass(commemorated_VBN_30_146, birth_NN_28_137); auxpass(commemorated_VBN_30_146, is_VBZ_29_143); prep(commemorated_VBN_30_146, by_IN_31_159); pobj(by_IN_31_159, plaque_NN_33_164); det(plaque_NN_33_164, a_DT_32_162); prep(plaque_NN_33_164, in_IN_34_171); pobj(in_IN_34_171, area_NN_37_182); det(area_NN_37_182, the_DT_35_174); nn(area_NN_37_182, bar_NN_36_178) Template be {rel} on {arg1} prep_at> {arg2} 0.0055 his birth ;;; his_PRP$_27_133; birth_NN_28_137 was born on ;;; was_VBD_1_6; born_VBN_2_10 a major tourist attraction ;;; a_DT_21_100; major_JJ_22_102; tourist_NN_23_108; attraction_NN_24_116 0.00550 None None 1 nn(BANK_NNP_2_17, CENTRUST_NNP_0_0); nn(BANK_NNP_2_17, SAVINGS_NNP_1_9); nsubj(-RRB-_-RRB-_5_34, BANK_NNP_2_17); advmod(-RRB-_-RRB-_5_34, -LRB-_-LRB-_3_22); nsubj(-RRB-_-RRB-_5_34, Miami_NNP_4_28); punct(-RRB-_-RRB-_5_34, --_:_6_40); parataxis(-RRB-_-RRB-_5_34, said_VBD_10_66); punct(-RRB-_-RRB-_5_34, ._._37_216); nn(Inc._NNP_9_61, McCormick_NNP_7_43); nn(Inc._NNP_9_61, Capital_NNP_8_53); nsubj(said_VBD_10_66, Inc._NNP_9_61); ccomp(said_VBD_10_66, 0.628394_CD_16_102); det(factor_NN_14_91, the_DT_11_71); amod(factor_NN_14_91, final_JJ_12_75); nn(factor_NN_14_91, proration_NN_13_81); nsubj(0.628394_CD_16_102, factor_NN_14_91); cop(0.628394_CD_16_102, was_VBD_15_98); prep(0.628394_CD_16_102, on_IN_17_111); pobj(on_IN_17_111, offer_NN_24_154); dep($_$_21_135, 3-a-share_JJ_22_137); poss(offer_NN_24_154, its_PRP$_18_114); amod(offer_NN_24_154, oversubscribed_JJ_19_118); punct(offer_NN_24_154, ,_,_20_133); amod(offer_NN_24_154, $_$_21_135); nn(offer_NN_24_154, tender_NN_23_147); infmod(offer_NN_24_154, buy_VB_26_163); aux(buy_VB_26_163, to_TO_25_160); prt(buy_VB_26_163, back_RP_27_167); dobj(buy_VB_26_163, million_CD_32_187); quantmod(million_CD_32_187, as_RB_28_172); quantmod(million_CD_32_187, many_JJ_29_175); quantmod(million_CD_32_187, as_IN_30_180); number(million_CD_32_187, 1.1_CD_31_183); prep(million_CD_32_187, of_IN_33_195); pobj(of_IN_33_195, shares_NNS_36_209); poss(shares_NNS_36_209, its_PRP$_34_198); amod(shares_NNS_36_209, common_JJ_35_202) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 the final proration factor ;;; the_DT_11_71; final_JJ_12_75; proration_NN_13_81; factor_NN_14_91 was ;;; was_VBD_15_98 0.628394 ;;; 0.628394_CD_16_102 0.02160 None None 0 nn(Corp._NNP_2_11, CMS_NNP_0_0); nn(Corp._NNP_2_11, ENERGY_NNP_1_4); nsubj(said_VBD_3_17, Corp._NNP_2_11); ccomp(said_VBD_3_17, recommend_VB_6_39); punct(said_VBD_3_17, ._._27_151); nsubj(recommend_VB_6_39, management_NN_4_22); aux(recommend_VB_6_39, would_MD_5_33); prep(recommend_VB_6_39, to_TO_7_49); tmod(recommend_VB_6_39, today_NN_10_62); ccomp(recommend_VB_6_39, reinstated_VBN_17_102); pobj(to_TO_7_49, board_NN_9_56); poss(board_NN_9_56, its_PRP$_8_52); poss(dividend_NN_15_90, its_PRP$_12_73); amod(dividend_NN_15_90, common_JJ_13_77); nn(dividend_NN_15_90, stock_NN_14_84); complm(reinstated_VBN_17_102, that_IN_11_68); nsubjpass(reinstated_VBN_17_102, dividend_NN_15_90); auxpass(reinstated_VBN_17_102, be_VB_16_99); prep(reinstated_VBN_17_102, at_IN_18_113); tmod(reinstated_VBN_17_102, year_NN_26_146); pobj(at_IN_18_113, level_NN_22_127); det(level_NN_22_127, a_DT_19_116); punct(level_NN_22_127, "_``_20_118); amod(level_NN_22_127, modest_JJ_21_120); punct(level_NN_22_127, "_''_23_133); advmod(year_NN_26_146, later_RB_24_135); det(year_NN_26_146, this_DT_25_141) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 its common stock dividend ;;; its_PRP$_12_73; common_JJ_13_77; stock_NN_14_84; dividend_NN_15_90 be reinstated at ;;; be_VB_16_99; reinstated_VBN_17_102 a " modest level ;;; a_DT_19_116; "_``_20_118; modest_JJ_21_120; level_NN_22_127 1.00000 None None 1 nn(Corp._NNP_2_11, CMS_NNP_0_0); nn(Corp._NNP_2_11, ENERGY_NNP_1_4); nsubj(said_VBD_3_17, Corp._NNP_2_11); ccomp(said_VBD_3_17, recommend_VB_6_39); punct(said_VBD_3_17, ._._27_151); nsubj(recommend_VB_6_39, management_NN_4_22); aux(recommend_VB_6_39, would_MD_5_33); prep(recommend_VB_6_39, to_TO_7_49); tmod(recommend_VB_6_39, today_NN_10_62); ccomp(recommend_VB_6_39, reinstated_VBN_17_102); pobj(to_TO_7_49, board_NN_9_56); poss(board_NN_9_56, its_PRP$_8_52); poss(dividend_NN_15_90, its_PRP$_12_73); amod(dividend_NN_15_90, common_JJ_13_77); nn(dividend_NN_15_90, stock_NN_14_84); complm(reinstated_VBN_17_102, that_IN_11_68); nsubjpass(reinstated_VBN_17_102, dividend_NN_15_90); auxpass(reinstated_VBN_17_102, be_VB_16_99); prep(reinstated_VBN_17_102, at_IN_18_113); tmod(reinstated_VBN_17_102, year_NN_26_146); pobj(at_IN_18_113, level_NN_22_127); det(level_NN_22_127, a_DT_19_116); punct(level_NN_22_127, "_``_20_118); amod(level_NN_22_127, modest_JJ_21_120); punct(level_NN_22_127, "_''_23_133); advmod(year_NN_26_146, later_RB_24_135); det(year_NN_26_146, this_DT_25_141) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 management ;;; management_NN_4_22 would recommend to ;;; would_MD_5_33; recommend_VB_6_39 its board ;;; its_PRP$_8_52; board_NN_9_56 0.13490 None CMS ENERGY Corp._said_0_2_3_3 0 nn(Corp._NNP_2_11, CMS_NNP_0_0); nn(Corp._NNP_2_11, ENERGY_NNP_1_4); nsubj(said_VBD_3_17, Corp._NNP_2_11); ccomp(said_VBD_3_17, recommend_VB_6_39); punct(said_VBD_3_17, ._._27_151); nsubj(recommend_VB_6_39, management_NN_4_22); aux(recommend_VB_6_39, would_MD_5_33); prep(recommend_VB_6_39, to_TO_7_49); tmod(recommend_VB_6_39, today_NN_10_62); ccomp(recommend_VB_6_39, reinstated_VBN_17_102); pobj(to_TO_7_49, board_NN_9_56); poss(board_NN_9_56, its_PRP$_8_52); poss(dividend_NN_15_90, its_PRP$_12_73); amod(dividend_NN_15_90, common_JJ_13_77); nn(dividend_NN_15_90, stock_NN_14_84); complm(reinstated_VBN_17_102, that_IN_11_68); nsubjpass(reinstated_VBN_17_102, dividend_NN_15_90); auxpass(reinstated_VBN_17_102, be_VB_16_99); prep(reinstated_VBN_17_102, at_IN_18_113); tmod(reinstated_VBN_17_102, year_NN_26_146); pobj(at_IN_18_113, level_NN_22_127); det(level_NN_22_127, a_DT_19_116); punct(level_NN_22_127, "_``_20_118); amod(level_NN_22_127, modest_JJ_21_120); punct(level_NN_22_127, "_''_23_133); advmod(year_NN_26_146, later_RB_24_135); det(year_NN_26_146, this_DT_25_141) Template be {rel} in {arg1} tmod> {arg2} 0.0305 its common stock dividend ;;; its_PRP$_12_73; common_JJ_13_77; stock_NN_14_84; dividend_NN_15_90 be reinstated in ;;; be_VB_16_99; reinstated_VBN_17_102 this year ;;; this_DT_25_141; year_NN_26_146 0.03050 None None 1 prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Capillaries in the brain , heart , kidneys , and liver ;;; Capillaries_NN_0_0; in_IN_1_12; the_DT_2_15; brain_NN_3_19; ,_,_4_25; heart_NN_5_27; ,_,_6_33; kidneys_NN_7_35; ,_,_8_43; and_CC_9_45; liver_NN_10_49 are usually filled to ;;; are_VBP_11_55; usually_RB_12_59; filled_VBN_13_67 capacity ;;; capacity_NN_15_77 1.00000 None None 0 prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 the blood supply ;;; the_DT_22_112; blood_NN_23_116; supply_NN_24_122 varies as ;;; varies_VBZ_25_129 blood ;;; blood_NN_29_149 0.24440 None None 1 prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 the blood supply ;;; the_DT_22_112; blood_NN_23_116; supply_NN_24_122 varies over ;;; varies_VBZ_25_129 time ;;; time_NN_27_141 0.24440 None None 0 prep(Capillaries_NNS_0_0, in_IN_1_12); punct(Capillaries_NNS_0_0, ,_,_8_43); cc(Capillaries_NNS_0_0, and_CC_9_45); conj(Capillaries_NNS_0_0, liver_NN_10_49); pobj(in_IN_1_12, brain_NN_3_19); det(brain_NN_3_19, the_DT_2_15); punct(brain_NN_3_19, ,_,_4_25); conj(brain_NN_3_19, heart_NN_5_27); punct(brain_NN_3_19, ,_,_6_33); conj(brain_NN_3_19, kidneys_NNS_7_35); nsubjpass(filled_VBN_13_67, Capillaries_NNS_0_0); auxpass(filled_VBN_13_67, are_VBP_11_55); advmod(filled_VBN_13_67, usually_RB_12_59); prep(filled_VBN_13_67, to_TO_14_74); punct(filled_VBN_13_67, ,_,_16_86); cc(filled_VBN_13_67, but_CC_17_88); conj(filled_VBN_13_67, diverted_VBN_31_158); punct(filled_VBN_13_67, ._._37_199); pobj(to_TO_14_74, capacity_NN_15_77); pobj(at_IN_18_92, sites_NNS_21_106); amod(sites_NNS_21_106, many_JJ_19_95); amod(sites_NNS_21_106, other_JJ_20_100); rcmod(sites_NNS_21_106, varies_VBZ_25_129); det(supply_NN_24_122, the_DT_22_112); nn(supply_NN_24_122, blood_NN_23_116); nsubj(varies_VBZ_25_129, supply_NN_24_122); prep(varies_VBZ_25_129, over_IN_26_136); prep(varies_VBZ_25_129, as_IN_28_146); pobj(over_IN_26_136, time_NN_27_141); pobj(as_IN_28_146, blood_NN_29_149); prep(diverted_VBN_31_158, at_IN_18_92); auxpass(diverted_VBN_31_158, is_VBZ_30_155); prep(diverted_VBN_31_158, from_IN_32_167); prep(diverted_VBN_31_158, to_TO_35_188); pobj(from_IN_32_167, destination_NN_34_176); num(destination_NN_34_176, one_CD_33_172); pobj(to_TO_35_188, another_DT_36_191) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 she ;;; she_PRP_7_49 was kidnapped in ;;; was_VBD_8_53; kidnapped_VBN_9_57 Baghdad ;;; Baghdad_NNP_11_70 1.00000 None None 1 nsubj(clbre_NN_5_38, Carroll_NNP_0_0); cop(clbre_NN_5_38, became_VBD_1_8); det(clbre_NN_5_38, an_DT_2_15); amod(clbre_NN_5_38, international_JJ_3_18); nn(clbre_NN_5_38, cause_NN_4_32); advcl(clbre_NN_5_38, kidnapped_VBN_9_57); punct(clbre_NN_5_38, ._._17_98); advmod(kidnapped_VBN_9_57, when_WRB_6_44); nsubjpass(kidnapped_VBN_9_57, she_PRP_7_49); auxpass(kidnapped_VBN_9_57, was_VBD_8_53); prep(kidnapped_VBN_9_57, in_IN_10_67); prep(kidnapped_VBN_9_57, on_IN_12_78); pobj(in_IN_10_67, Baghdad_NNP_11_70); pobj(on_IN_12_78, January_NNP_13_81); num(January_NNP_13_81, 7_CD_14_89); punct(January_NNP_13_81, ,_,_15_91); num(January_NNP_13_81, 2006_CD_16_93) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 she ;;; she_PRP_7_49 was kidnapped on ;;; was_VBD_8_53; kidnapped_VBN_9_57 January 7 , 2006 ;;; January_NNP_13_81; 7_CD_14_89; ,_,_15_91; 2006_CD_16_93 1.00000 None None 1 nsubj(clbre_NN_5_38, Carroll_NNP_0_0); cop(clbre_NN_5_38, became_VBD_1_8); det(clbre_NN_5_38, an_DT_2_15); amod(clbre_NN_5_38, international_JJ_3_18); nn(clbre_NN_5_38, cause_NN_4_32); advcl(clbre_NN_5_38, kidnapped_VBN_9_57); punct(clbre_NN_5_38, ._._17_98); advmod(kidnapped_VBN_9_57, when_WRB_6_44); nsubjpass(kidnapped_VBN_9_57, she_PRP_7_49); auxpass(kidnapped_VBN_9_57, was_VBD_8_53); prep(kidnapped_VBN_9_57, in_IN_10_67); prep(kidnapped_VBN_9_57, on_IN_12_78); pobj(in_IN_10_67, Baghdad_NNP_11_70); pobj(on_IN_12_78, January_NNP_13_81); num(January_NNP_13_81, 7_CD_14_89); punct(January_NNP_13_81, ,_,_15_91); num(January_NNP_13_81, 2006_CD_16_93) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 Carroll ;;; Carroll_NNP_0_0 became ;;; became_VBD_1_8 an international cause clbre ;;; an_DT_2_15; international_JJ_3_18; cause_NN_4_32; clbre_NN_5_38 0.02160 None None 0 nn(Roussel_NNP_1_7, Cedric_NNP_0_0); nsubj(striker_NN_6_37, Roussel_NNP_1_7); cop(striker_NN_6_37, is_VBZ_2_15); det(striker_NN_6_37, a_DT_3_18); amod(striker_NN_6_37, Belgian_JJ_4_20); nn(striker_NN_6_37, football_NN_5_28); advmod(striker_NN_6_37, currently_RB_7_45); punct(striker_NN_6_37, ._._14_85); dep(currently_RB_7_45, on_IN_8_55); pobj(on_IN_8_55, books_NNS_10_62); det(books_NNS_10_62, the_DT_9_58); prep(books_NNS_10_62, of_IN_11_68); pobj(of_IN_11_68, Mons_NNP_13_80); nn(Mons_NNP_13_80, R.A.E.C._NNP_12_71) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Cedric Roussel ;;; Cedric_NNP_0_0; Roussel_NNP_1_7 is currently on the books R.A.E.C. Mons ;;; is_VBZ_2_15; currently_RB_7_45; on_IN_8_55; the_DT_9_58; books_NN_10_62; R.A.E.C._NNP_12_71; Mons_NNP_13_80 a Belgian football striker ;;; a_DT_3_18; Belgian_JJ_4_20; football_NN_5_28; striker_NN_6_37 0.00840 None None 1 nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_11_54 looked at ;;; looked_VBD_12_57 dead cells ;;; dead_JJ_17_88; cells_NN_18_93 0.73450 None None 1 nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_11_54 looked through ;;; looked_VBD_12_57 a microscope ;;; a_DT_14_72; microscope_NN_15_74 0.73450 None None 0 nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) Template {rel} to {arg1} prep_at> {arg2} 0.0623 he ;;; he_PRP_11_54 looked to ;;; looked_VBD_12_57 dead cells ;;; dead_JJ_17_88; cells_NN_18_93 0.06230 None None 0 nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 Cell walls ;;; Cell_NNP_0_0; walls_NN_1_5 were ;;; were_VBD_2_11 first ;;; first_JJ_3_16 0.02160 None None 0 nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) Template be {rel} {prep} {arg1} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0071 first ;;; first_JJ_3_16 be seen by ;;; seen_VBN_4_22 Robert Hooke ;;; Robert_NNP_6_30; Hooke_NNP_7_37 0.00710 as_he looked through a microscope at dead cells from the bark of an oak tree_10_25 None 0 nn(walls_NNS_1_5, Cell_NNP_0_0); nsubj(first_JJ_3_16, walls_NNS_1_5); cop(first_JJ_3_16, were_VBD_2_11); ccomp(first_JJ_3_16, seen_VBN_4_22); punct(first_JJ_3_16, ._._26_128); prep(seen_VBN_4_22, by_IN_5_27); prep(seen_VBN_4_22, in_IN_8_43); advcl(seen_VBN_4_22, looked_VBD_12_57); pobj(by_IN_5_27, Hooke_NNP_7_37); nn(Hooke_NNP_7_37, Robert_NNP_6_30); pobj(in_IN_8_43, 1665_CD_9_46); mark(looked_VBD_12_57, as_IN_10_51); nsubj(looked_VBD_12_57, he_PRP_11_54); prep(looked_VBD_12_57, through_IN_13_64); prep(looked_VBD_12_57, at_IN_16_85); pobj(through_IN_13_64, microscope_NN_15_74); det(microscope_NN_15_74, a_DT_14_72); pobj(at_IN_16_85, cells_NNS_18_93); amod(cells_NNS_18_93, dead_JJ_17_88); prep(cells_NNS_18_93, from_IN_19_99); pobj(from_IN_19_99, bark_NN_21_108); det(bark_NN_21_108, the_DT_20_104); prep(bark_NN_21_108, of_IN_22_113); pobj(of_IN_22_113, tree_NN_25_123); det(tree_NN_25_123, an_DT_23_116); nn(tree_NN_25_123, oak_NN_24_119) Template be {rel} {prep} {arg1} >ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0071 first ;;; first_JJ_3_16 be seen in ;;; seen_VBN_4_22 1665 ;;; 1665_CD_9_46 0.00710 as_he looked through a microscope at dead cells from the bark of an oak tree_10_25 None 1 nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 Cephalopods ;;; Cephalopods_NN_0_0 are the only molluscs with ;;; are_VBP_1_12; the_DT_2_16; only_JJ_3_20; molluscs_NN_4_25 a closed circulatory system in which the blood remains separate from fluid in the body cavity ;;; a_DT_6_39; closed_JJ_7_41; circulatory_NN_8_48; system_NN_9_60; in_IN_11_69; which_WDT_12_72; the_DT_13_78; blood_NN_14_82; remains_VBZ_15_88; separate_JJ_16_96; from_IN_17_105; fluid_NN_18_110; in_IN_19_116; the_DT_20_119; body_NN_21_123; cavity_NN_22_128 0.95550 None None 1 nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 the blood ;;; the_DT_13_78; blood_NN_14_82 remains separate from ;;; remains_VBZ_15_88; separate_JJ_16_96 fluid ;;; fluid_NN_18_110 0.04780 None None 1 nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 the blood ;;; the_DT_13_78; blood_NN_14_82 remains separate in ;;; remains_VBZ_15_88; separate_JJ_16_96 the body cavity ;;; the_DT_20_119; body_NN_21_123; cavity_NN_22_128 0.04780 None None 0 nsubj(molluscs_NNS_4_25, Cephalopods_NNS_0_0); cop(molluscs_NNS_4_25, are_VBP_1_12); det(molluscs_NNS_4_25, the_DT_2_16); amod(molluscs_NNS_4_25, only_JJ_3_20); prep(molluscs_NNS_4_25, with_IN_5_34); punct(molluscs_NNS_4_25, ._._23_135); pobj(with_IN_5_34, system_NN_9_60); det(system_NN_9_60, a_DT_6_39); amod(system_NN_9_60, closed_JJ_7_41); nn(system_NN_9_60, circulatory_NN_8_48); punct(system_NN_9_60, ,_,_10_67); rcmod(system_NN_9_60, separate_JJ_16_96); pobj(in_IN_11_69, which_WDT_12_72); det(blood_NN_14_82, the_DT_13_78); rel(separate_JJ_16_96, in_IN_11_69); nsubj(separate_JJ_16_96, blood_NN_14_82); cop(separate_JJ_16_96, remains_VBZ_15_88); prep(separate_JJ_16_96, from_IN_17_105); prep(separate_JJ_16_96, in_IN_19_116); pobj(from_IN_17_105, fluid_NN_18_110); pobj(in_IN_19_116, cavity_NN_22_128); det(cavity_NN_22_128, the_DT_20_119); nn(cavity_NN_22_128, body_NN_21_123) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 the blood ;;; the_DT_13_78; blood_NN_14_82 remains ;;; remains_VBZ_15_88 separate ;;; separate_JJ_16_96 0.00840 None None 1 amod(species_NNS_1_8, Certain_JJ_0_0); nsubj(have_VBP_2_16, species_NNS_1_8); dobj(have_VBP_2_16, impact_NN_6_41); advcl(have_VBP_2_16, abundant_JJ_17_111); punct(have_VBP_2_16, ._._26_165); advmod(large_JJ_5_35, especially_RB_4_24); det(impact_NN_6_41, an_DT_3_21); amod(impact_NN_6_41, large_JJ_5_35); prep(impact_NN_6_41, on_IN_7_48); pobj(on_IN_7_48, structure_NN_9_55); det(structure_NN_9_55, the_DT_8_51); prep(structure_NN_9_55, of_IN_10_65); pobj(of_IN_10_65, communities_NNS_12_75); amod(communities_NNS_12_75, entire_JJ_11_68); mark(abundant_JJ_17_111, because_IN_13_87); nsubj(abundant_JJ_17_111, they_PRP_14_95); cop(abundant_JJ_17_111, are_VBP_15_100); advmod(abundant_JJ_17_111, highly_RB_16_104); cc(abundant_JJ_17_111, or_CC_18_120); conj(abundant_JJ_17_111, play_VB_19_123); dobj(play_VB_19_123, role_NN_22_138); prep(play_VB_19_123, in_IN_23_143); det(role_NN_22_138, a_DT_20_128); amod(role_NN_22_138, pivotal_JJ_21_130); pobj(in_IN_23_143, dynamics_NNS_25_156); nn(dynamics_NNS_25_156, community_NN_24_146) Template {rel} {arg1} dobj> {arg2} 0.0416 Certain species ;;; Certain_JJ_0_0; species_NN_1_8 have ;;; have_VBP_2_16 an especially large impact ;;; an_DT_3_21; especially_RB_4_24; large_JJ_5_35; impact_NN_6_41 0.04160 because_they are highly abundant or play a pivotal role in community dynamics_13_25 None 1 amod(species_NNS_1_8, Certain_JJ_0_0); nsubj(have_VBP_2_16, species_NNS_1_8); dobj(have_VBP_2_16, impact_NN_6_41); advcl(have_VBP_2_16, abundant_JJ_17_111); punct(have_VBP_2_16, ._._26_165); advmod(large_JJ_5_35, especially_RB_4_24); det(impact_NN_6_41, an_DT_3_21); amod(impact_NN_6_41, large_JJ_5_35); prep(impact_NN_6_41, on_IN_7_48); pobj(on_IN_7_48, structure_NN_9_55); det(structure_NN_9_55, the_DT_8_51); prep(structure_NN_9_55, of_IN_10_65); pobj(of_IN_10_65, communities_NNS_12_75); amod(communities_NNS_12_75, entire_JJ_11_68); mark(abundant_JJ_17_111, because_IN_13_87); nsubj(abundant_JJ_17_111, they_PRP_14_95); cop(abundant_JJ_17_111, are_VBP_15_100); advmod(abundant_JJ_17_111, highly_RB_16_104); cc(abundant_JJ_17_111, or_CC_18_120); conj(abundant_JJ_17_111, play_VB_19_123); dobj(play_VB_19_123, role_NN_22_138); prep(play_VB_19_123, in_IN_23_143); det(role_NN_22_138, a_DT_20_128); amod(role_NN_22_138, pivotal_JJ_21_130); pobj(in_IN_23_143, dynamics_NNS_25_156); nn(dynamics_NNS_25_156, community_NN_24_146) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a pivotal role ;;; a_DT_20_128; pivotal_JJ_21_130; role_NN_22_138 be play in ;;; play_VB_19_123 community dynamics ;;; community_NN_24_146; dynamics_NN_25_156 0.01320 None None 1 nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Chesler ;;; Chesler_NNP_0_0 taught one of the first Women 's Studies classes at ;;; taught_VBD_1_8; one_CD_2_15; of_IN_3_19; the_DT_4_22; first_JJ_5_26; Women_NNP_6_32; 's_POS_7_38; Studies_NN_8_41; classes_NN_9_49 Richmond College ;;; Richmond_NNP_11_60; College_NNP_12_69 0.73450 None None 1 nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Chesler ;;; Chesler_NNP_0_0 taught one of the first Women 's Studies classes during ;;; taught_VBD_1_8; one_CD_2_15; of_IN_3_19; the_DT_4_22; first_JJ_5_26; Women_NNP_6_32; 's_POS_7_38; Studies_NN_8_41; classes_NN_9_49 the 1969-1970 school year ;;; the_DT_18_101; 1969-1970_CD_19_105; school_NN_20_115; year_NN_21_122 0.73450 None None 1 nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) Template {rel} {arg1} dobj> {arg2} 0.3797 Chesler ;;; Chesler_NNP_0_0 taught ;;; taught_VBD_1_8 one of the first Women 's Studies classes ;;; one_CD_2_15; of_IN_3_19; the_DT_4_22; first_JJ_5_26; Women_NNP_6_32; 's_POS_7_38; Studies_NN_8_41; classes_NN_9_49 0.37970 None None 1 nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 one of the first Women 's Studies classes ;;; one_CD_2_15; of_IN_3_19; the_DT_4_22; first_JJ_5_26; Women_NNP_6_32; 's_POS_7_38; Studies_NN_8_41; classes_NN_9_49 be taught at ;;; taught_VBD_1_8 Richmond College ;;; Richmond_NNP_11_60; College_NNP_12_69 0.01550 None None 1 nsubj(taught_VBD_1_8, Chesler_NNP_0_0); dobj(taught_VBD_1_8, one_CD_2_15); prep(taught_VBD_1_8, at_IN_10_57); prep(taught_VBD_1_8, during_IN_17_94); punct(taught_VBD_1_8, ._._22_127); prep(one_CD_2_15, of_IN_3_19); pobj(of_IN_3_19, classes_NNS_9_49); det(Women_NNP_6_32, the_DT_4_22); amod(Women_NNP_6_32, first_JJ_5_26); possessive(Women_NNP_6_32, 's_POS_7_38); poss(classes_NNS_9_49, Women_NNP_6_32); nn(classes_NNS_9_49, Studies_NNS_8_41); pobj(at_IN_10_57, College_NNP_12_69); nn(College_NNP_12_69, Richmond_NNP_11_60); prep(College_NNP_12_69, in_IN_13_77); pobj(in_IN_13_77, City_NNP_16_89); nn(City_NNP_16_89, New_NNP_14_80); nn(City_NNP_16_89, York_NNP_15_84); pobj(during_IN_17_94, year_NN_21_122); det(year_NN_21_122, the_DT_18_101); num(year_NN_21_122, 1969-1970_CD_19_105); nn(year_NN_21_122, school_NN_20_115) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 one of the first Women 's Studies classes ;;; one_CD_2_15; of_IN_3_19; the_DT_4_22; first_JJ_5_26; Women_NNP_6_32; 's_POS_7_38; Studies_NN_8_41; classes_NN_9_49 be taught during ;;; taught_VBD_1_8 the 1969-1970 school year ;;; the_DT_18_101; 1969-1970_CD_19_105; school_NN_20_115; year_NN_21_122 0.01550 None None 1 nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Christie ;;; Christie_NNP_0_0 made a splash with ;;; made_VBD_1_9; a_DT_2_14; splash_NN_3_16 her extraordinary performance ;;; her_PRP$_5_28; extraordinary_JJ_6_32; performance_NN_7_46 0.73450 None None 0 nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Jane Bennet ;;; Jane_NNP_9_61; Bennet_NNP_10_66 acclaimed miniseries Lost in ;;; acclaimed_VBD_15_94; miniseries_NN_16_104; Lost_NNP_17_115 Austen ;;; Austen_NNP_19_123 0.73450 None None 0 nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Austen ;;; Austen_NNP_19_123 be a modern twist on ;;; a_DT_21_132; modern_JJ_22_134; twist_NN_23_141 Austen 's Pride ;;; Austen_NNP_25_150; 's_POS_26_157; Pride_NNP_27_160 0.40310 None None 1 nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) Template {rel} {arg1} dobj> {arg2} 0.3797 Christie ;;; Christie_NNP_0_0 made ;;; made_VBD_1_9 a splash ;;; a_DT_2_14; splash_NN_3_16 0.37970 None None 0 nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) Template {rel} {arg1} dobj> {arg2} 0.3797 Jane Bennet ;;; Jane_NNP_9_61; Bennet_NNP_10_66 acclaimed ;;; acclaimed_VBD_15_94 miniseries Lost ;;; miniseries_NN_16_104; Lost_NNP_17_115 0.37970 None None 1 nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 a splash ;;; a_DT_2_14; splash_NN_3_16 be made with ;;; made_VBD_1_9 her extraordinary performance ;;; her_PRP$_5_28; extraordinary_JJ_6_32; performance_NN_7_46 0.01550 None None 0 nsubj(made_VBD_1_9, Christie_NNP_0_0); dobj(made_VBD_1_9, splash_NN_3_16); prep(made_VBD_1_9, with_IN_4_23); punct(made_VBD_1_9, ._._30_178); det(splash_NN_3_16, a_DT_2_14); pobj(with_IN_4_23, performance_NN_7_46); poss(performance_NN_7_46, her_PRP$_5_28); amod(performance_NN_7_46, extraordinary_JJ_6_32); dep(performance_NN_7_46, acclaimed_VBD_15_94); nn(Bennet_NNP_10_66, Jane_NNP_9_61); prep(Bennet_NNP_10_66, in_IN_11_73); pobj(in_IN_11_73, critically_NN_14_83); possessive(ITV_NNP_12_76, 's_POS_13_80); poss(critically_NN_14_83, ITV_NNP_12_76); mark(acclaimed_VBD_15_94, as_IN_8_58); nsubj(acclaimed_VBD_15_94, Bennet_NNP_10_66); dobj(acclaimed_VBD_15_94, Lost_NNP_17_115); prep(acclaimed_VBD_15_94, in_IN_18_120); nn(Lost_NNP_17_115, miniseries_NNS_16_104); pobj(in_IN_18_120, Austen_NNP_19_123); punct(Austen_NNP_19_123, ,_,_20_130); appos(Austen_NNP_19_123, twist_NN_23_141); det(twist_NN_23_141, a_DT_21_132); amod(twist_NN_23_141, modern_JJ_22_134); prep(twist_NN_23_141, on_IN_24_147); pobj(on_IN_24_147, Pride_NNP_27_160); possessive(Austen_NNP_25_150, 's_POS_26_157); poss(Pride_NNP_27_160, Austen_NNP_25_150); cc(Pride_NNP_27_160, &_CC_28_166); conj(Pride_NNP_27_160, Prejudice_NNP_29_168) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 miniseries Lost ;;; miniseries_NN_16_104; Lost_NNP_17_115 be acclaimed in ;;; acclaimed_VBD_15_94 Austen ;;; Austen_NNP_19_123 0.01550 None None 1 punct(Clarcor_NNP_0_0, ,_,_1_8); appos(Clarcor_NNP_0_0, maker_NN_3_12); punct(Clarcor_NNP_0_0, ,_,_9_55); det(maker_NN_3_12, a_DT_2_10); prep(maker_NN_3_12, of_IN_4_18); pobj(of_IN_4_18, products_NNS_8_46); cc(packaging_NN_5_21, and_CC_6_31); conj(packaging_NN_5_21, filtration_NN_7_35); nn(products_NNS_8_46, packaging_NN_5_21); nsubj(said_VBD_10_57, Clarcor_NNP_0_0); ccomp(said_VBD_10_57, agree_VB_16_90); punct(said_VBD_10_57, ._._23_131); det(companies_NNS_13_70, the_DT_11_62); num(companies_NNS_13_70, two_CD_12_66); nsubj(agree_VB_16_90, companies_NNS_13_70); aux(agree_VB_16_90, could_MD_14_80); neg(agree_VB_16_90, n't_RB_15_86); prep(agree_VB_16_90, on_IN_17_96); pobj(on_IN_17_96, terms_NNS_18_99); prep(terms_NNS_18_99, of_IN_19_105); pobj(of_IN_19_105, agreement_NN_22_121); det(agreement_NN_22_121, a_DT_20_108); amod(agreement_NN_22_121, definitive_JJ_21_110) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Clarcor ;;; Clarcor_NNP_0_0 be a maker of ;;; a_DT_2_10; maker_NN_3_12 packaging and filtration products ;;; packaging_NN_5_21; and_CC_6_31; filtration_NN_7_35; products_NN_8_46 0.40310 None None 1 punct(Clarcor_NNP_0_0, ,_,_1_8); appos(Clarcor_NNP_0_0, maker_NN_3_12); punct(Clarcor_NNP_0_0, ,_,_9_55); det(maker_NN_3_12, a_DT_2_10); prep(maker_NN_3_12, of_IN_4_18); pobj(of_IN_4_18, products_NNS_8_46); cc(packaging_NN_5_21, and_CC_6_31); conj(packaging_NN_5_21, filtration_NN_7_35); nn(products_NNS_8_46, packaging_NN_5_21); nsubj(said_VBD_10_57, Clarcor_NNP_0_0); ccomp(said_VBD_10_57, agree_VB_16_90); punct(said_VBD_10_57, ._._23_131); det(companies_NNS_13_70, the_DT_11_62); num(companies_NNS_13_70, two_CD_12_66); nsubj(agree_VB_16_90, companies_NNS_13_70); aux(agree_VB_16_90, could_MD_14_80); neg(agree_VB_16_90, n't_RB_15_86); prep(agree_VB_16_90, on_IN_17_96); pobj(on_IN_17_96, terms_NNS_18_99); prep(terms_NNS_18_99, of_IN_19_105); pobj(of_IN_19_105, agreement_NN_22_121); det(agreement_NN_22_121, a_DT_20_108); amod(agreement_NN_22_121, definitive_JJ_21_110) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 the two companies ;;; the_DT_11_62; two_CD_12_66; companies_NN_13_70 could n't agree on ;;; could_MD_14_80; n't_RB_15_86; agree_VB_16_90 terms of a definitive agreement ;;; terms_NN_18_99; of_IN_19_105; a_DT_20_108; definitive_JJ_21_110; agreement_NN_22_121 0.13490 None Clarcor_said_0_0_10_10 1 nn(Enterprises_NNPS_1_10, Coca-Cola_NNP_0_0); nsubj(blamed_VBD_2_22, Enterprises_NNPS_1_10); dobj(blamed_VBD_2_22, volume_NN_5_39); prep(blamed_VBD_2_22, on_IN_6_46); punct(blamed_VBD_2_22, ._._21_122); det(volume_NN_5_39, the_DT_3_29); amod(volume_NN_5_39, lower_JJR_4_33); pobj(on_IN_6_46, prices_NNS_9_64); poss(prices_NNS_9_64, its_PRP$_7_49); nn(prices_NNS_9_64, soft-drink_NN_8_53); punct(prices_NNS_9_64, ,_,_10_71); rcmod(prices_NNS_9_64, higher_JJR_16_94); quantmod(3_CD_14_90, about_IN_13_84); num(%_NN_15_92, 3_CD_14_90); nsubj(higher_JJR_16_94, which_WDT_11_73); cop(higher_JJR_16_94, were_VBD_12_79); measure(higher_JJR_16_94, %_NN_15_92); prep(higher_JJR_16_94, in_IN_17_101); pobj(in_IN_17_101, quarter_NN_20_114); det(quarter_NN_20_114, the_DT_18_104); amod(quarter_NN_20_114, third_JJ_19_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Coca-Cola Enterprises ;;; Coca-Cola_NNP_0_0; Enterprises_NNP_1_10 blamed the lower volume on ;;; blamed_VBD_2_22; the_DT_3_29; lower_JJR_4_33; volume_NN_5_39 its soft-drink prices which were about 3 % higher in the third quarter ;;; its_PRP$_7_49; soft-drink_NN_8_53; prices_NN_9_64; which_WDT_11_73; were_VBD_12_79; about_IN_13_84; 3_CD_14_90; %_NN_15_92; higher_JJR_16_94; in_IN_17_101; the_DT_18_104; third_JJ_19_108; quarter_NN_20_114 0.73450 None None 0 nn(Enterprises_NNPS_1_10, Coca-Cola_NNP_0_0); nsubj(blamed_VBD_2_22, Enterprises_NNPS_1_10); dobj(blamed_VBD_2_22, volume_NN_5_39); prep(blamed_VBD_2_22, on_IN_6_46); punct(blamed_VBD_2_22, ._._21_122); det(volume_NN_5_39, the_DT_3_29); amod(volume_NN_5_39, lower_JJR_4_33); pobj(on_IN_6_46, prices_NNS_9_64); poss(prices_NNS_9_64, its_PRP$_7_49); nn(prices_NNS_9_64, soft-drink_NN_8_53); punct(prices_NNS_9_64, ,_,_10_71); rcmod(prices_NNS_9_64, higher_JJR_16_94); quantmod(3_CD_14_90, about_IN_13_84); num(%_NN_15_92, 3_CD_14_90); nsubj(higher_JJR_16_94, which_WDT_11_73); cop(higher_JJR_16_94, were_VBD_12_79); measure(higher_JJR_16_94, %_NN_15_92); prep(higher_JJR_16_94, in_IN_17_101); pobj(in_IN_17_101, quarter_NN_20_114); det(quarter_NN_20_114, the_DT_18_104); amod(quarter_NN_20_114, third_JJ_19_108) Template {rel} {arg1} dobj> {arg2} 0.3797 Coca-Cola Enterprises ;;; Coca-Cola_NNP_0_0; Enterprises_NNP_1_10 blamed ;;; blamed_VBD_2_22 the lower volume ;;; the_DT_3_29; lower_JJR_4_33; volume_NN_5_39 0.37970 None None 1 nn(Enterprises_NNPS_1_10, Coca-Cola_NNP_0_0); nsubj(blamed_VBD_2_22, Enterprises_NNPS_1_10); dobj(blamed_VBD_2_22, volume_NN_5_39); prep(blamed_VBD_2_22, on_IN_6_46); punct(blamed_VBD_2_22, ._._21_122); det(volume_NN_5_39, the_DT_3_29); amod(volume_NN_5_39, lower_JJR_4_33); pobj(on_IN_6_46, prices_NNS_9_64); poss(prices_NNS_9_64, its_PRP$_7_49); nn(prices_NNS_9_64, soft-drink_NN_8_53); punct(prices_NNS_9_64, ,_,_10_71); rcmod(prices_NNS_9_64, higher_JJR_16_94); quantmod(3_CD_14_90, about_IN_13_84); num(%_NN_15_92, 3_CD_14_90); nsubj(higher_JJR_16_94, which_WDT_11_73); cop(higher_JJR_16_94, were_VBD_12_79); measure(higher_JJR_16_94, %_NN_15_92); prep(higher_JJR_16_94, in_IN_17_101); pobj(in_IN_17_101, quarter_NN_20_114); det(quarter_NN_20_114, the_DT_18_104); amod(quarter_NN_20_114, third_JJ_19_108) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the lower volume ;;; the_DT_3_29; lower_JJR_4_33; volume_NN_5_39 be blamed on ;;; blamed_VBD_2_22 its soft-drink prices which were about 3 % higher in the third quarter ;;; its_PRP$_7_49; soft-drink_NN_8_53; prices_NN_9_64; which_WDT_11_73; were_VBD_12_79; about_IN_13_84; 3_CD_14_90; %_NN_15_92; higher_JJR_16_94; in_IN_17_101; the_DT_18_104; third_JJ_19_108; quarter_NN_20_114 0.01550 None None 1 det(bonds_NNS_4_28, the_DT_2_15); nn(bonds_NNS_4_28, hydrogen_NN_3_19); advmod(hold_VBP_5_34, Collectively_RB_0_0); punct(hold_VBP_5_34, ,_,_1_13); nsubj(hold_VBP_5_34, bonds_NNS_4_28); dobj(hold_VBP_5_34, substance_NN_7_43); advmod(hold_VBP_5_34, together_RB_8_53); punct(hold_VBP_5_34, ,_,_9_62); dobj(hold_VBP_5_34, phenomenon_NN_11_66); punct(hold_VBP_5_34, ._._14_93); det(substance_NN_7_43, the_DT_6_39); det(phenomenon_NN_11_66, a_DT_10_64); partmod(phenomenon_NN_11_66, called_VBN_12_77); dep(called_VBN_12_77, cohesion_NN_13_84) Template {rel} {arg1} dobj> {arg2} 0.0416 the hydrogen bonds ;;; the_DT_2_15; hydrogen_NN_3_19; bonds_NN_4_28 Collectively hold the substance together ;;; Collectively_RB_0_0; hold_VBP_5_34; the_DT_6_39; substance_NN_7_43; together_RB_8_53 a phenomenon called cohesion ;;; a_DT_10_64; phenomenon_NN_11_66; called_VBN_12_77; cohesion_NN_13_84 0.04160 None None 1 det(bonds_NNS_4_28, the_DT_2_15); nn(bonds_NNS_4_28, hydrogen_NN_3_19); advmod(hold_VBP_5_34, Collectively_RB_0_0); punct(hold_VBP_5_34, ,_,_1_13); nsubj(hold_VBP_5_34, bonds_NNS_4_28); dobj(hold_VBP_5_34, substance_NN_7_43); advmod(hold_VBP_5_34, together_RB_8_53); punct(hold_VBP_5_34, ,_,_9_62); dobj(hold_VBP_5_34, phenomenon_NN_11_66); punct(hold_VBP_5_34, ._._14_93); det(substance_NN_7_43, the_DT_6_39); det(phenomenon_NN_11_66, a_DT_10_64); partmod(phenomenon_NN_11_66, called_VBN_12_77); dep(called_VBN_12_77, cohesion_NN_13_84) Template {rel} {arg1} dobj> {arg2} 0.0416 the hydrogen bonds ;;; the_DT_2_15; hydrogen_NN_3_19; bonds_NN_4_28 Collectively hold together a phenomenon called cohesion ;;; Collectively_RB_0_0; hold_VBP_5_34; together_RB_8_53; a_DT_10_64; phenomenon_NN_11_66; called_VBN_12_77; cohesion_NN_13_84 the substance ;;; the_DT_6_39; substance_NN_7_43 0.04160 None None 1 nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 the San Juan ;;; the_DT_20_106; San_NNP_21_110; Juan_NNP_22_114 be the capital of ;;; the_DT_24_121; capital_NN_25_125 Puerto Rico ;;; Puerto_NNP_27_136; Rico_NNP_28_143 0.40310 None None 1 nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) Template be {rel} {arg1} dobj> {arg2} 0.0191 Cordero ;;; Cordero_NNP_0_0 was born ;;; was_VBD_1_8; born_VBN_2_12 Federico Arturo Cordero Salguero ;;; Federico_NNP_3_17; Arturo_NNP_4_26; Cordero_NNP_5_33; Salguero_NNP_6_41 0.01910 None None 0 nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) Template be {rel} {prep} {arg1} dobj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0124 Cordero ;;; Cordero_NNP_0_0 be Federico Arturo Cordero Salguero in ;;; Federico_NNP_3_17; Arturo_NNP_4_26; Cordero_NNP_5_33; Salguero_NNP_6_41 Rio Piedras ;;; Rio_NNP_8_53; Piedras_NNP_9_57 0.01240 None None 1 nsubjpass(born_VBN_2_12, Cordero_NNP_0_0); auxpass(born_VBN_2_12, was_VBD_1_8); dobj(born_VBN_2_12, Salguero_NNP_6_41); punct(born_VBN_2_12, ._._29_148); nn(Salguero_NNP_6_41, Federico_NNP_3_17); nn(Salguero_NNP_6_41, Arturo_NNP_4_26); nn(Salguero_NNP_6_41, Cordero_NNP_5_33); prep(Salguero_NNP_6_41, in_IN_7_50); pobj(in_IN_7_50, Piedras_NNP_9_57); nn(Piedras_NNP_9_57, Rio_NNP_8_53); punct(Piedras_NNP_9_57, ,_,_10_65); appos(Piedras_NNP_9_57, Rico_NNP_12_74); punct(Piedras_NNP_9_57, ,_,_13_79); appos(Piedras_NNP_9_57, town_NN_15_83); nn(Rico_NNP_12_74, Puerto_NNP_11_67); det(town_NN_15_83, a_DT_14_81); rcmod(town_NN_15_83, part_NN_19_101); nsubj(part_NN_19_101, which_WDT_16_88); cop(part_NN_19_101, is_VBZ_17_94); advmod(part_NN_19_101, now_RB_18_97); dobj(part_NN_19_101, Juan_NNP_22_114); det(Juan_NNP_22_114, the_DT_20_106); nn(Juan_NNP_22_114, San_NNP_21_110); punct(Juan_NNP_22_114, ,_,_23_119); appos(Juan_NNP_22_114, capital_NN_25_125); det(capital_NN_25_125, the_DT_24_121); prep(capital_NN_25_125, of_IN_26_133); pobj(of_IN_26_133, Rico_NNP_28_143); nn(Rico_NNP_28_143, Puerto_NNP_27_136) Template be {rel} {prep} {rel:postag=VBN:regex=appoint|award|bear|call|elect|equip|find|hold|locate} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0083 Federico Arturo Cordero Salguero ;;; Federico_NNP_3_17; Arturo_NNP_4_26; Cordero_NNP_5_33; Salguero_NNP_6_41 was born in ;;; was_VBD_1_8; born_VBN_2_12 Rio Piedras ;;; Rio_NNP_8_53; Piedras_NNP_9_57 0.00830 None None 1 nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_TO_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); dep(ago_RB_7_47, years_NNS_6_41); pobj(to_TO_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Cordis ;;; Cordis_NNP_0_0 sold its pacemaker operations two years ago to ;;; sold_VBD_1_7; its_PRP$_2_12; pacemaker_NN_3_16; operations_NN_4_26; two_CD_5_37; years_NN_6_41; ago_RB_7_47 Telectronics Holding Ltd. of Australia ;;; Telectronics_NNP_9_54; Holding_NNP_10_67; Ltd._NNP_11_75; of_IN_12_80; Australia_NNP_13_83 0.73450 None None 1 nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_TO_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); dep(ago_RB_7_47, years_NNS_6_41); pobj(to_TO_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83) Template {rel} {arg1} dobj> {arg2} 0.3797 Cordis ;;; Cordis_NNP_0_0 sold two years ago ;;; sold_VBD_1_7; two_CD_5_37; years_NN_6_41; ago_RB_7_47 its pacemaker operations ;;; its_PRP$_2_12; pacemaker_NN_3_16; operations_NN_4_26 0.37970 None None 1 nsubj(sold_VBD_1_7, Cordis_NNP_0_0); dobj(sold_VBD_1_7, operations_NNS_4_26); advmod(sold_VBD_1_7, ago_RB_7_47); prep(sold_VBD_1_7, to_TO_8_51); punct(sold_VBD_1_7, ._._14_93); poss(operations_NNS_4_26, its_PRP$_2_12); nn(operations_NNS_4_26, pacemaker_NN_3_16); num(years_NNS_6_41, two_CD_5_37); dep(ago_RB_7_47, years_NNS_6_41); pobj(to_TO_8_51, Ltd._NNP_11_75); nn(Ltd._NNP_11_75, Telectronics_NNP_9_54); nn(Ltd._NNP_11_75, Holding_NNP_10_67); prep(Ltd._NNP_11_75, of_IN_12_80); pobj(of_IN_12_80, Australia_NNP_13_83) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 its pacemaker operations ;;; its_PRP$_2_12; pacemaker_NN_3_16; operations_NN_4_26 be sold two years ago to ;;; sold_VBD_1_7; two_CD_5_37; years_NN_6_41; ago_RB_7_47 Telectronics Holding Ltd. of Australia ;;; Telectronics_NNP_9_54; Holding_NNP_10_67; Ltd._NNP_11_75; of_IN_12_80; Australia_NNP_13_83 0.01550 None None 1 advmod(has_VBZ_3_22, Currently_RB_0_0); punct(has_VBZ_3_22, ,_,_1_10); nsubj(has_VBZ_3_22, ShareData_NNP_2_12); dobj(has_VBZ_3_22, shares_NNS_8_51); punct(has_VBZ_3_22, ._._10_70); quantmod(million_CD_6_36, about_RB_4_26); number(million_CD_6_36, 4.1_CD_5_32); num(shares_NNS_8_51, million_CD_6_36); amod(shares_NNS_8_51, common_JJ_7_44); amod(shares_NNS_8_51, outstanding_JJ_9_58) Template {rel} {arg1} dobj> {arg2} 0.1443 ShareData ;;; ShareData_NNP_2_12 Currently has ;;; Currently_RB_0_0; has_VBZ_3_22 about 4.1 million common shares outstanding ;;; about_RB_4_26; 4.1_CD_5_32; million_CD_6_36; common_JJ_7_44; shares_NN_8_51; outstanding_JJ_9_58 0.14430 None None 1 nn(Township_NNP_1_6, Dawes_NNP_0_0); nsubj(one_CD_3_18, Township_NNP_1_6); cop(one_CD_3_18, is_VBZ_2_15); prep(one_CD_3_18, of_IN_4_22); punct(one_CD_3_18, ._._15_88); pobj(of_IN_4_22, townships_NNS_6_32); num(townships_NNS_6_32, eleven_CD_5_25); prep(townships_NNS_6_32, in_IN_7_42); pobj(in_IN_7_42, County_NNP_9_54); nn(County_NNP_9_54, Thurston_NNP_8_45); punct(County_NNP_9_54, ,_,_10_61); conj(County_NNP_9_54, Nebraska_NNP_11_63); punct(County_NNP_9_54, ,_,_12_72); appos(County_NNP_9_54, States_NNP_14_81); nn(States_NNP_14_81, United_NNP_13_74) Template be {rel} {prep} {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locate|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109 Thurston County ;;; Thurston_NNP_8_45; County_NNP_9_54 be eleven townships in ;;; eleven_CD_5_25; townships_NN_6_32 United States ;;; United_NNP_13_74; States_NNP_14_81 0.01090 None None 0 nn(Township_NNP_1_6, Dawes_NNP_0_0); nsubj(one_CD_3_18, Township_NNP_1_6); cop(one_CD_3_18, is_VBZ_2_15); prep(one_CD_3_18, of_IN_4_22); punct(one_CD_3_18, ._._15_88); pobj(of_IN_4_22, townships_NNS_6_32); num(townships_NNS_6_32, eleven_CD_5_25); prep(townships_NNS_6_32, in_IN_7_42); pobj(in_IN_7_42, County_NNP_9_54); nn(County_NNP_9_54, Thurston_NNP_8_45); punct(County_NNP_9_54, ,_,_10_61); conj(County_NNP_9_54, Nebraska_NNP_11_63); punct(County_NNP_9_54, ,_,_12_72); appos(County_NNP_9_54, States_NNP_14_81); nn(States_NNP_14_81, United_NNP_13_74) Template be {rel} {prep} {arg1} prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0095 Dawes Township ;;; Dawes_NNP_0_0; Township_NNP_1_6 be eleven townships in ;;; eleven_CD_5_25; townships_NN_6_32 Thurston County ;;; Thurston_NNP_8_45; County_NNP_9_54 0.00950 None None 0 nn(Township_NNP_1_6, Dawes_NNP_0_0); nsubj(one_CD_3_18, Township_NNP_1_6); cop(one_CD_3_18, is_VBZ_2_15); prep(one_CD_3_18, of_IN_4_22); punct(one_CD_3_18, ._._15_88); pobj(of_IN_4_22, townships_NNS_6_32); num(townships_NNS_6_32, eleven_CD_5_25); prep(townships_NNS_6_32, in_IN_7_42); pobj(in_IN_7_42, County_NNP_9_54); nn(County_NNP_9_54, Thurston_NNP_8_45); punct(County_NNP_9_54, ,_,_10_61); conj(County_NNP_9_54, Nebraska_NNP_11_63); punct(County_NNP_9_54, ,_,_12_72); appos(County_NNP_9_54, States_NNP_14_81); nn(States_NNP_14_81, United_NNP_13_74) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Dawes Township ;;; Dawes_NNP_0_0; Township_NNP_1_6 is ;;; is_VBZ_2_15 one of eleven townships ;;; one_CD_3_18; of_IN_4_22; eleven_CD_5_25; townships_NN_6_32 0.00840 None None 1 nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 Dell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5 is the father of ;;; is_VBZ_2_11; the_DT_3_14; father_NN_4_18 Stephen Curry ;;; Stephen_NNP_6_28; Curry_NNP_7_36 0.95550 None None 1 nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) Template {rel} {arg1} dobj> {arg2} 0.0577 Dell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5 was chosen ;;; was_VBD_22_121; chosen_VBN_23_125 7th overall ;;; 7th_NNP_24_132; overall_NN_25_136 0.05770 None None 1 nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 Dell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5 was chosen 7th overall by ;;; was_VBD_22_121; chosen_VBN_23_125; 7th_NNP_24_132; overall_NN_25_136 the Golden State Warriors ;;; the_DT_27_147; Golden_NNP_28_151; State_NNP_29_158; Warriors_NNP_30_164 0.04440 None None 1 nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 Dell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5 was chosen 7th overall in ;;; was_VBD_22_121; chosen_VBN_23_125; 7th_NNP_24_132; overall_NN_25_136 the 2009 NBA Draft ;;; the_DT_32_176; 2009_CD_33_180; NBA_NNP_34_185; Draft_NNP_35_189 0.04440 None None 0 nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0282 North Carolina ;;; North_NNP_18_100; Carolina_NNP_19_106 be Davidson College in ;;; Davidson_NNP_13_69; College_NNP_14_78 Davidson ;;; Davidson_NNP_16_89 0.02820 None None 1 nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 Stephen Curry ;;; Stephen_NNP_6_28; Curry_NNP_7_36 played basketball at ;;; played_VBD_10_48; basketball_NN_11_55 Davidson College ;;; Davidson_NNP_13_69; College_NNP_14_78 0.02000 None None 1 nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 basketball ;;; basketball_NN_11_55 be played at ;;; played_VBD_10_48 Davidson College ;;; Davidson_NNP_13_69; College_NNP_14_78 0.01550 None None 1 nn(Curry_NNP_1_5, Dell_NNP_0_0); nsubj(father_NN_4_18, Curry_NNP_1_5); cop(father_NN_4_18, is_VBZ_2_11); det(father_NN_4_18, the_DT_3_14); prep(father_NN_4_18, of_IN_5_25); punct(father_NN_4_18, ,_,_20_115); cc(father_NN_4_18, and_CC_21_117); conj(father_NN_4_18, chosen_VBN_23_125); punct(father_NN_4_18, ._._36_195); pobj(of_IN_5_25, Curry_NNP_7_36); nn(Curry_NNP_7_36, Stephen_NNP_6_28); punct(Curry_NNP_7_36, ,_,_8_42); rcmod(Curry_NNP_7_36, played_VBD_10_48); nsubj(played_VBD_10_48, who_WP_9_44); dobj(played_VBD_10_48, basketball_NN_11_55); prep(played_VBD_10_48, at_IN_12_66); pobj(at_IN_12_66, College_NNP_14_78); nn(College_NNP_14_78, Davidson_NNP_13_69); prep(College_NNP_14_78, in_IN_15_86); punct(College_NNP_14_78, ,_,_17_98); appos(College_NNP_14_78, Carolina_NNP_19_106); pobj(in_IN_15_86, Davidson_NNP_16_89); nn(Carolina_NNP_19_106, North_NNP_18_100); auxpass(chosen_VBN_23_125, was_VBD_22_121); dobj(chosen_VBN_23_125, overall_NN_25_136); prep(chosen_VBN_23_125, by_IN_26_144); prep(chosen_VBN_23_125, in_IN_31_173); nn(overall_NN_25_136, 7th_NNP_24_132); pobj(by_IN_26_144, Warriors_NNP_30_164); det(Warriors_NNP_30_164, the_DT_27_147); nn(Warriors_NNP_30_164, Golden_NNP_28_151); nn(Warriors_NNP_30_164, State_NNP_29_158); pobj(in_IN_31_173, Draft_NNP_35_189); det(Draft_NNP_35_189, the_DT_32_176); num(Draft_NNP_35_189, 2009_CD_33_180); nn(Draft_NNP_35_189, NBA_NNP_34_185) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Dell Curry ;;; Dell_NNP_0_0; Curry_NNP_1_5 is ;;; is_VBZ_2_11 the father of Stephen Curry ;;; the_DT_3_14; father_NN_4_18; of_IN_5_25; Stephen_NNP_6_28; Curry_NNP_7_36 0.00840 None None 0 nn(Smith_NNP_2_9, Denis_NNP_0_0); nn(Smith_NNP_2_9, C._NNP_1_6); nsubjpass(named_VBN_4_19, Smith_NNP_2_9); auxpass(named_VBN_4_19, was_VBD_3_15); prep(named_VBN_4_19, to_TO_5_25); prep(named_VBN_4_19, for_IN_17_103); punct(named_VBN_4_19, ._._21_130); pobj(to_TO_5_25, post_NN_8_36); det(post_NN_8_36, the_DT_6_28); amod(post_NN_8_36, new_JJ_7_32); prep(post_NN_8_36, of_IN_9_41); pobj(of_IN_9_41, president_NN_11_49); nn(president_NN_11_49, vice_NN_10_44); prep(president_NN_11_49, of_IN_12_59); pobj(of_IN_12_59, operations_NNS_16_92); amod(operations_NNS_16_92, world-wide_JJ_13_62); amod(operations_NNS_16_92, advanced_JJ_14_73); nn(operations_NNS_16_92, materials_NNS_15_82); pobj(for_IN_17_103, concern_NN_20_122); det(concern_NN_20_122, this_DT_18_107); nn(concern_NN_20_122, chemicals_NNS_19_112) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Denis C. Smith ;;; Denis_NNP_0_0; C._NNP_1_6; Smith_NNP_2_9 was named for ;;; was_VBD_3_15; named_VBN_4_19 this chemicals concern ;;; this_DT_18_107; chemicals_NN_19_112; concern_NN_20_122 1.00000 None None 1 nn(Smith_NNP_2_9, Denis_NNP_0_0); nn(Smith_NNP_2_9, C._NNP_1_6); nsubjpass(named_VBN_4_19, Smith_NNP_2_9); auxpass(named_VBN_4_19, was_VBD_3_15); prep(named_VBN_4_19, to_TO_5_25); prep(named_VBN_4_19, for_IN_17_103); punct(named_VBN_4_19, ._._21_130); pobj(to_TO_5_25, post_NN_8_36); det(post_NN_8_36, the_DT_6_28); amod(post_NN_8_36, new_JJ_7_32); prep(post_NN_8_36, of_IN_9_41); pobj(of_IN_9_41, president_NN_11_49); nn(president_NN_11_49, vice_NN_10_44); prep(president_NN_11_49, of_IN_12_59); pobj(of_IN_12_59, operations_NNS_16_92); amod(operations_NNS_16_92, world-wide_JJ_13_62); amod(operations_NNS_16_92, advanced_JJ_14_73); nn(operations_NNS_16_92, materials_NNS_15_82); pobj(for_IN_17_103, concern_NN_20_122); det(concern_NN_20_122, this_DT_18_107); nn(concern_NN_20_122, chemicals_NNS_19_112) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Denis C. Smith ;;; Denis_NNP_0_0; C._NNP_1_6; Smith_NNP_2_9 was named to ;;; was_VBD_3_15; named_VBN_4_19 the new post of vice president of world-wide advanced materials operations ;;; the_DT_6_28; new_JJ_7_32; post_NN_8_36; of_IN_9_41; vice_NN_10_44; president_NN_11_49; of_IN_12_59; world-wide_JJ_13_62; advanced_JJ_14_73; materials_NN_15_82; operations_NN_16_92 1.00000 None None 0 nn(Smith_NNP_2_9, Denis_NNP_0_0); nn(Smith_NNP_2_9, C._NNP_1_6); nsubjpass(named_VBN_4_19, Smith_NNP_2_9); auxpass(named_VBN_4_19, was_VBD_3_15); prep(named_VBN_4_19, to_TO_5_25); prep(named_VBN_4_19, for_IN_17_103); punct(named_VBN_4_19, ._._21_130); pobj(to_TO_5_25, post_NN_8_36); det(post_NN_8_36, the_DT_6_28); amod(post_NN_8_36, new_JJ_7_32); prep(post_NN_8_36, of_IN_9_41); pobj(of_IN_9_41, president_NN_11_49); nn(president_NN_11_49, vice_NN_10_44); prep(president_NN_11_49, of_IN_12_59); pobj(of_IN_12_59, operations_NNS_16_92); amod(operations_NNS_16_92, world-wide_JJ_13_62); amod(operations_NNS_16_92, advanced_JJ_14_73); nn(operations_NNS_16_92, materials_NNS_15_82); pobj(for_IN_17_103, concern_NN_20_122); det(concern_NN_20_122, this_DT_18_107); nn(concern_NN_20_122, chemicals_NNS_19_112) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0101 new ;;; new_JJ_7_32 post of ;;; post_NN_8_36 vice president of world-wide advanced materials operations ;;; vice_NN_10_44; president_NN_11_49; of_IN_12_59; world-wide_JJ_13_62; advanced_JJ_14_73; materials_NN_15_82; operations_NN_16_92 0.01010 None None 1 punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_3_13 was at ;;; was_VBD_4_16 R.Premadasa Stadium ;;; R.Premadasa_NNP_16_71; Stadium_NNP_17_83 0.73450 None None 0 punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_3_13 was during ;;; was_VBD_4_16 his innings of 23 ;;; his_PRP$_8_32; innings_NN_9_36; of_IN_10_44; 23_CD_11_47 0.73450 None None 1 punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_3_13 was on ;;; was_VBD_4_16 4 ;;; 4_CD_6_23 0.73450 None None 1 punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) Template {rel} {arg1} dobj> {arg2} 0.3797 Dhoni ;;; Dhoni_NN_0_0 completed ;;; completed_VBD_23_115 his 4,000 runs ;;; his_PRP$_24_125; 4,000_CD_25_129; runs_NN_26_135 0.37970 None None 0 punct(Dhoni_NNS_0_0, ,_,_1_6); advmod(was_VBD_4_16, when_WRB_2_8); nsubj(was_VBD_4_16, he_PRP_3_13); prep(was_VBD_4_16, on_IN_5_20); prep(was_VBD_4_16, during_IN_7_25); prep(was_VBD_4_16, at_IN_15_68); pobj(on_IN_5_20, 4_CD_6_23); pobj(during_IN_7_25, innings_NN_9_36); poss(innings_NN_9_36, his_PRP$_8_32); prep(innings_NN_9_36, of_IN_10_44); prep(innings_NN_9_36, against_IN_12_50); pobj(of_IN_10_44, 23_CD_11_47); pobj(against_IN_12_50, Lanka_NNP_14_62); nn(Lanka_NNP_14_62, Sri_NNP_13_58); pobj(at_IN_15_68, Stadium_NNP_17_83); nn(Stadium_NNP_17_83, R.Premadasa_NNP_16_71); punct(Stadium_NNP_17_83, ,_,_18_91); appos(Stadium_NNP_17_83, Colombo_NNP_19_93); prep(Colombo_NNP_19_93, on_IN_20_101); pobj(on_IN_20_101, Saturday_NNP_21_104); nsubj(completed_VBD_23_115, Dhoni_NNS_0_0); dep(completed_VBD_23_115, was_VBD_4_16); punct(completed_VBD_23_115, ,_,_22_113); dobj(completed_VBD_23_115, runs_NNS_26_135); punct(completed_VBD_23_115, ._._29_148); poss(runs_NNS_26_135, his_PRP$_24_125); num(runs_NNS_26_135, 4,000_CD_25_129); prep(runs_NNS_26_135, in_IN_27_140); pobj(in_IN_27_140, ODIs_NNP_28_143) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 Dhoni ;;; Dhoni_NN_0_0 be his 4,000 runs in ;;; his_PRP$_24_125; 4,000_CD_25_129; runs_NN_26_135 ODIs ;;; ODIs_NNP_28_143 0.01190 None None 1 amod(cells_NNS_1_15, Differentiated_JJ_0_0); prep(cells_NNS_1_15, from_IN_2_21); pobj(from_IN_2_21, animals_NNS_3_26); nsubj(divide_VB_7_51, cells_NNS_1_15); advmod(divide_VB_7_51, generally_RB_4_34); aux(divide_VB_7_51, do_VBP_5_44); neg(divide_VB_7_51, not_RB_6_47); prep(divide_VB_7_51, in_IN_8_58); punct(divide_VB_7_51, ,_,_10_69); ccomp(divide_VB_7_51, develop_VB_13_81); punct(divide_VB_7_51, ._._23_136); pobj(in_IN_8_58, culture_NN_9_61); advmod(much_RB_11_71, less_RBR_12_76); advmod(develop_VB_13_81, much_RB_11_71); prep(develop_VB_13_81, into_IN_14_89); pobj(into_IN_14_89, types_NNS_18_112); det(types_NNS_18_112, the_DT_15_94); amod(types_NNS_18_112, multiple_JJ_16_98); nn(types_NNS_18_112, cell_NN_17_107); prep(types_NNS_18_112, of_IN_19_118); pobj(of_IN_19_118, organism_NN_22_127); det(organism_NN_22_127, a_DT_20_121); amod(organism_NN_22_127, new_JJ_21_123) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 Differentiated cells ;;; Differentiated_JJ_0_0; cells_NN_1_15 generally do not divide in ;;; generally_RB_4_34; do_VBP_5_44; not_RB_6_47; divide_VB_7_51 culture ;;; culture_NN_9_61 0.13490 None None 0 prep(Disappointment_NN_0_0, with_IN_1_15); pobj(with_IN_1_15, earnings_NNS_5_35); det(company_NN_3_24, the_DT_2_20); possessive(company_NN_3_24, 's_POS_4_32); poss(earnings_NNS_5_35, company_NN_3_24); prep(earnings_NNS_5_35, for_IN_6_44); pobj(for_IN_6_44, quarter_NN_8_52); det(quarter_NN_8_52, the_DT_7_48); nsubj(led_VBD_9_60, Disappointment_NN_0_0); xcomp(led_VBD_9_60, reduce_VB_13_95); punct(led_VBD_9_60, ,_,_20_139); prep(led_VBD_9_60, according_VBG_21_141); punct(led_VBD_9_60, ._._28_193); nn(Securities_NNPS_11_81, Prudential-Bache_NNP_10_64); nsubj(reduce_VB_13_95, Securities_NNPS_11_81); aux(reduce_VB_13_95, to_TO_12_92); dobj(reduce_VB_13_95, 1989_CD_15_106); poss(1989_CD_15_106, its_PRP$_14_102); cc(1989_CD_15_106, and_CC_16_111); conj(1989_CD_15_106, estimates_NNS_19_129); num(estimates_NNS_19_129, 1990_CD_17_115); nn(estimates_NNS_19_129, earnings_NNS_18_120); dep(according_VBG_21_141, to_TO_22_151); pobj(to_TO_22_151, Report_NNP_27_186); nn(Report_NNP_27_186, Dow_NNP_23_154); nn(Report_NNP_27_186, Jones_NNP_24_158); nn(Report_NNP_27_186, Professional_NNP_25_164); nn(Report_NNP_27_186, Investor_NNP_26_177) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 Disappointment ;;; Disappointment_NN_0_0 led to reduce ;;; led_VBD_9_60; to_TO_12_92; reduce_VB_13_95 its 1989 and 1990 earnings estimates ;;; its_PRP$_14_102; 1989_CD_15_106; and_CC_16_111; 1990_CD_17_115; earnings_NN_18_120; estimates_NN_19_129 0.37970 None None 1 prep(Disappointment_NN_0_0, with_IN_1_15); pobj(with_IN_1_15, earnings_NNS_5_35); det(company_NN_3_24, the_DT_2_20); possessive(company_NN_3_24, 's_POS_4_32); poss(earnings_NNS_5_35, company_NN_3_24); prep(earnings_NNS_5_35, for_IN_6_44); pobj(for_IN_6_44, quarter_NN_8_52); det(quarter_NN_8_52, the_DT_7_48); nsubj(led_VBD_9_60, Disappointment_NN_0_0); xcomp(led_VBD_9_60, reduce_VB_13_95); punct(led_VBD_9_60, ,_,_20_139); prep(led_VBD_9_60, according_VBG_21_141); punct(led_VBD_9_60, ._._28_193); nn(Securities_NNPS_11_81, Prudential-Bache_NNP_10_64); nsubj(reduce_VB_13_95, Securities_NNPS_11_81); aux(reduce_VB_13_95, to_TO_12_92); dobj(reduce_VB_13_95, 1989_CD_15_106); poss(1989_CD_15_106, its_PRP$_14_102); cc(1989_CD_15_106, and_CC_16_111); conj(1989_CD_15_106, estimates_NNS_19_129); num(estimates_NNS_19_129, 1990_CD_17_115); nn(estimates_NNS_19_129, earnings_NNS_18_120); dep(according_VBG_21_141, to_TO_22_151); pobj(to_TO_22_151, Report_NNP_27_186); nn(Report_NNP_27_186, Dow_NNP_23_154); nn(Report_NNP_27_186, Jones_NNP_24_158); nn(Report_NNP_27_186, Professional_NNP_25_164); nn(Report_NNP_27_186, Investor_NNP_26_177) Template {rel} {arg1} dobj> {arg2} 0.1473 Prudential-Bache Securities ;;; Prudential-Bache_NNP_10_64; Securities_NNP_11_81 to reduce ;;; to_TO_12_92; reduce_VB_13_95 its 1989 and 1990 earnings estimates ;;; its_PRP$_14_102; 1989_CD_15_106; and_CC_16_111; 1990_CD_17_115; earnings_NN_18_120; estimates_NN_19_129 0.14730 None None 1 nn(holders_NNS_3_22, Dominion_NNP_0_0); nn(holders_NNS_3_22, Textile_NNP_1_9); nn(holders_NNS_3_22, Inc._NNP_2_17); nsubj(adopted_VBD_4_30, holders_NNS_3_22); dobj(adopted_VBD_4_30, plan_NN_7_59); prep(adopted_VBD_4_30, at_IN_8_64); punct(adopted_VBD_4_30, ._._12_86); det(plan_NN_7_59, a_DT_5_38); nn(plan_NN_7_59, shareholder-rights_NNS_6_40); pobj(at_IN_8_64, meeting_NN_11_78); det(meeting_NN_11_78, the_DT_9_67); amod(meeting_NN_11_78, annual_JJ_10_71) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Dominion Textile Inc. holders ;;; Dominion_NNP_0_0; Textile_NNP_1_9; Inc._NNP_2_17; holders_NN_3_22 adopted a shareholder-rights plan at ;;; adopted_VBD_4_30; a_DT_5_38; shareholder-rights_NN_6_40; plan_NN_7_59 the annual meeting ;;; the_DT_9_67; annual_JJ_10_71; meeting_NN_11_78 0.73450 None None 1 nn(holders_NNS_3_22, Dominion_NNP_0_0); nn(holders_NNS_3_22, Textile_NNP_1_9); nn(holders_NNS_3_22, Inc._NNP_2_17); nsubj(adopted_VBD_4_30, holders_NNS_3_22); dobj(adopted_VBD_4_30, plan_NN_7_59); prep(adopted_VBD_4_30, at_IN_8_64); punct(adopted_VBD_4_30, ._._12_86); det(plan_NN_7_59, a_DT_5_38); nn(plan_NN_7_59, shareholder-rights_NNS_6_40); pobj(at_IN_8_64, meeting_NN_11_78); det(meeting_NN_11_78, the_DT_9_67); amod(meeting_NN_11_78, annual_JJ_10_71) Template {rel} {arg1} dobj> {arg2} 0.3797 Dominion Textile Inc. holders ;;; Dominion_NNP_0_0; Textile_NNP_1_9; Inc._NNP_2_17; holders_NN_3_22 adopted ;;; adopted_VBD_4_30 a shareholder-rights plan ;;; a_DT_5_38; shareholder-rights_NN_6_40; plan_NN_7_59 0.37970 None None 1 nn(holders_NNS_3_22, Dominion_NNP_0_0); nn(holders_NNS_3_22, Textile_NNP_1_9); nn(holders_NNS_3_22, Inc._NNP_2_17); nsubj(adopted_VBD_4_30, holders_NNS_3_22); dobj(adopted_VBD_4_30, plan_NN_7_59); prep(adopted_VBD_4_30, at_IN_8_64); punct(adopted_VBD_4_30, ._._12_86); det(plan_NN_7_59, a_DT_5_38); nn(plan_NN_7_59, shareholder-rights_NNS_6_40); pobj(at_IN_8_64, meeting_NN_11_78); det(meeting_NN_11_78, the_DT_9_67); amod(meeting_NN_11_78, annual_JJ_10_71) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 a shareholder-rights plan ;;; a_DT_5_38; shareholder-rights_NN_6_40; plan_NN_7_59 be adopted at ;;; adopted_VBD_4_30 the annual meeting ;;; the_DT_9_67; annual_JJ_10_71; meeting_NN_11_78 0.01550 None None 0 pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_9_52 had during ;;; had_VBD_10_55 his freshman year ;;; his_PRP$_1_7; freshman_NN_2_11; year_NN_3_20 0.73450 None None 1 pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_9_52 helped to lead the Buckeyes to ;;; helped_VBD_27_150; to_TO_28_157; lead_VB_29_160; the_DT_30_165; Buckeyes_NN_31_169 a national championship ;;; a_DT_33_181; national_JJ_34_183; championship_NN_35_192 0.73450 None None 1 pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 he ;;; he_PRP_9_52 helped to lead ;;; helped_VBD_27_150; to_TO_28_157; lead_VB_29_160 the Buckeyes ;;; the_DT_30_165; Buckeyes_NN_31_169 0.37970 None None 0 pobj(During_IN_0_0, year_NN_3_20); dep(During_IN_0_0, at_IN_4_25); poss(year_NN_3_20, his_PRP$_1_7); nn(year_NN_3_20, freshman_NN_2_11); pobj(at_IN_4_25, University_NNP_7_39); nn(University_NNP_7_39, Ohio_NNP_5_28); nn(University_NNP_7_39, State_NNP_6_33); prep(had_VBD_10_55, During_IN_0_0); punct(had_VBD_10_55, ,_,_8_50); nsubj(had_VBD_10_55, he_PRP_9_52); ccomp(had_VBD_10_55, considered_VBN_13_67); punct(had_VBD_10_55, ,_,_25_144); cc(had_VBD_10_55, and_CC_26_146); conj(had_VBD_10_55, helped_VBD_27_150); punct(had_VBD_10_55, ._._36_205); nsubjpass(considered_VBN_13_67, what_WP_11_59); auxpass(considered_VBN_13_67, is_VBZ_12_64); xcomp(considered_VBN_13_67, one_CD_14_78); prep(one_CD_14_78, of_IN_15_82); pobj(of_IN_15_82, seasons_NNS_19_107); det(seasons_NNS_19_107, the_DT_16_85); amod(seasons_NNS_19_107, greatest_JJS_17_89); nn(seasons_NNS_19_107, freshmen_NNS_18_98); prep(seasons_NNS_19_107, in_IN_20_115); pobj(in_IN_20_115, history_NN_24_136); nn(history_NN_24_136, NCAA_NNP_21_118); nn(history_NN_24_136, Division_NNP_22_123); nn(history_NN_24_136, I-A_NNP_23_132); xcomp(helped_VBD_27_150, lead_VB_29_160); aux(lead_VB_29_160, to_TO_28_157); dobj(lead_VB_29_160, Buckeyes_NNS_31_169); prep(lead_VB_29_160, to_TO_32_178); det(Buckeyes_NNS_31_169, the_DT_30_165); pobj(to_TO_32_178, championship_NN_35_192); det(championship_NN_35_192, a_DT_33_181); amod(championship_NN_35_192, national_JJ_34_183) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 the Buckeyes ;;; the_DT_30_165; Buckeyes_NN_31_169 to lead to be ;;; to_TO_28_157; lead_VB_29_160 a national championship ;;; a_DT_33_181; national_JJ_34_183; championship_NN_35_192 0.01320 None None 1 pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_9_41 was involved during ;;; was_VBD_10_44; involved_VBN_11_48 his time ;;; his_PRP$_1_7; time_NN_2_11 1.00000 None None 1 pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_9_41 was involved in ;;; was_VBD_10_44; involved_VBN_11_48 the building of the 145 m long ;;; the_DT_13_60; building_NN_14_64; of_IN_15_73; the_DT_16_76; 145_CD_17_80; m_NN_18_84; long_JJ_19_86 1.00000 None None 1 pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) Template be {rel} {prep} {arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0314 the Berlin Wall ;;; the_DT_25_111; Berlin_NNP_26_115; Wall_NNP_27_122 was the escape route of 57 people from ;;; was_VBD_30_135; the_DT_31_139; escape_NN_32_143; route_NN_33_150; of_IN_34_156; 57_CD_35_159; people_NN_36_162 East Berlin ;;; East_NNP_38_174; Berlin_NNP_39_179 0.03140 None None 1 pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) Template be {rel} {prep} {arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0314 the Berlin Wall ;;; the_DT_25_111; Berlin_NNP_26_115; Wall_NNP_27_122 was the escape route of 57 people to ;;; was_VBD_30_135; the_DT_31_139; escape_NN_32_143; route_NN_33_150; of_IN_34_156; 57_CD_35_159; people_NN_36_162 the West ;;; the_DT_41_189; West_NNP_42_193 0.03140 None None 0 pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) Template be {rel} {prep} {arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0314 the Berlin Wall ;;; the_DT_25_111; Berlin_NNP_26_115; Wall_NNP_27_122 was the escape route of ;;; was_VBD_30_135; the_DT_31_139; escape_NN_32_143; route_NN_33_150 57 people ;;; 57_CD_35_159; people_NN_36_162 0.03140 None None 1 pobj(During_IN_0_0, time_NN_2_11); dep(During_IN_0_0, as_IN_3_16); poss(time_NN_2_11, his_PRP$_1_7); pobj(as_IN_3_16, student_NN_5_21); det(student_NN_5_21, a_DT_4_19); prep(student_NN_5_21, in_IN_6_29); pobj(in_IN_6_29, Berlin_NNP_7_32); prep(involved_VBN_11_48, During_IN_0_0); punct(involved_VBN_11_48, ,_,_8_39); nsubjpass(involved_VBN_11_48, he_PRP_9_41); auxpass(involved_VBN_11_48, was_VBD_10_44); prep(involved_VBN_11_48, in_IN_12_57); punct(involved_VBN_11_48, ._._43_198); pobj(in_IN_12_57, building_NN_14_64); det(building_NN_14_64, the_DT_13_60); prep(building_NN_14_64, of_IN_15_73); pobj(of_IN_15_73, m_NN_18_84); det(m_NN_18_84, the_DT_16_76); num(m_NN_18_84, 145_CD_17_80); amod(m_NN_18_84, long_JJ_19_86); dep(long_JJ_19_86, "_``_23_103); num(Tunnel_NNP_21_93, 57_CD_22_100); punct("_``_23_103, "_``_20_91); nsubj("_``_23_103, Tunnel_NNP_21_93); prep("_``_23_103, below_IN_24_105); pobj(below_IN_24_105, Wall_NNP_27_122); det(Wall_NNP_27_122, the_DT_25_111); nn(Wall_NNP_27_122, Berlin_NNP_26_115); punct(Wall_NNP_27_122, ,_,_28_127); rcmod(Wall_NNP_27_122, route_NN_33_150); nsubj(route_NN_33_150, which_WDT_29_129); cop(route_NN_33_150, was_VBD_30_135); det(route_NN_33_150, the_DT_31_139); nn(route_NN_33_150, escape_NN_32_143); prep(route_NN_33_150, of_IN_34_156); prep(route_NN_33_150, from_IN_37_169); prep(route_NN_33_150, to_TO_40_186); pobj(of_IN_34_156, people_NNS_36_162); num(people_NNS_36_162, 57_CD_35_159); pobj(from_IN_37_169, Berlin_NNP_39_179); nn(Berlin_NNP_39_179, East_NNP_38_174); pobj(to_TO_40_186, West_NNP_42_193); det(West_NNP_42_193, the_DT_41_189) Template be {rel} {prep} {arg1} prep_in> {slot0:postag=NN:regex=ad|area|basin|bc|build|cabin|cave|center|century|city|community|cottage|country|county|datacenter|deer|district|elk|entirety|fall|family|farmhouse|heart|herd|home|hospital|house|human|island|location|manger|morn|neighborhood|oasis|office|position|poverty|province|rectory|region|section|set|shack|situation|spring|story|summer|town|valley|village|war|year} >{prep:regex=prep_(.*)}> {arg2} 0.0057 he ;;; he_PRP_9_41 was involved of ;;; was_VBD_10_44; involved_VBN_11_48 the 145 m long ;;; the_DT_16_76; 145_CD_17_80; m_NN_18_84; long_JJ_19_86 0.00570 None None 0 pobj(During_IN_0_0, period_NN_2_11); punct(During_IN_0_0, ._._22_123); det(period_NN_2_11, the_DT_1_7); prep(period_NN_2_11, between_IN_3_18); pobj(between_IN_3_18, division_NN_6_35); num(division_NN_6_35, one_CD_4_26); nn(division_NN_6_35, cell_NN_5_30); cc(division_NN_6_35, and_CC_7_44); conj(division_NN_6_35, next_JJ_9_52); det(next_JJ_9_52, the_DT_8_48); punct(next_JJ_9_52, ,_,_10_57); ccomp(next_JJ_9_52, appeared_VBD_12_62); nsubj(appeared_VBD_12_62, it_PRP_11_59); prep(appeared_VBD_12_62, to_TO_13_71); ccomp(appeared_VBD_12_62, growing_VBG_20_108); pobj(to_TO_13_71, Flemming_NNP_14_74); det(cell_NN_17_92, the_DT_16_88); complm(growing_VBG_20_108, that_IN_15_83); nsubj(growing_VBG_20_108, cell_NN_17_92); aux(growing_VBG_20_108, was_VBD_18_97); advmod(growing_VBG_20_108, simply_RB_19_101); acomp(growing_VBG_20_108, larger_JJR_21_116) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 it ;;; it_PRP_11_59 appeared to ;;; appeared_VBD_12_62 Flemming ;;; Flemming_NNP_14_74 0.73450 None None 0 det(note_NN_1_5, Each_DT_0_0); nsubjpass(offered_VBN_4_19, note_NN_1_5); aux(offered_VBN_4_19, is_VBZ_2_10); auxpass(offered_VBN_4_19, being_VBG_3_13); prep(offered_VBN_4_19, at_IN_5_27); prep(offered_VBN_4_19, at_IN_13_68); punct(offered_VBN_4_19, ,_,_15_80); xcomp(offered_VBN_4_19, representing_VBG_16_82); punct(offered_VBN_4_19, ._._23_120); pobj(at_IN_5_27, $_$_6_30); num($_$_6_30, 308.32_CD_7_32); prep($_$_6_30, per_IN_8_39); pobj(per_IN_8_39, amount_NN_12_61); dep($_$_9_43, 1,000_CD_10_45); amod(amount_NN_12_61, $_$_9_43); nn(amount_NN_12_61, principal_NN_11_51); pobj(at_IN_13_68, maturity_NN_14_71); dobj(representing_VBG_16_82, yield_NN_20_102); dep(%_NN_19_100, 8_CD_18_98); det(yield_NN_20_102, an_DT_17_95); amod(yield_NN_20_102, %_NN_19_100); prep(yield_NN_20_102, to_TO_21_108); pobj(to_TO_21_108, maturity_NN_22_111) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Each note ;;; Each_DT_0_0; note_NN_1_5 is being offered at ;;; is_VBZ_2_10; being_VBG_3_13; offered_VBN_4_19 maturity ;;; maturity_NN_14_71 1.00000 None None 1 advmod(year_NN_2_13, Earlier_RBR_0_0); det(year_NN_2_13, this_DT_1_8); punct(Cordis_NNP_4_20, ,_,_5_27); appos(Cordis_NNP_4_20, maker_NN_7_31); punct(Cordis_NNP_4_20, ,_,_11_56); det(maker_NN_7_31, a_DT_6_29); prep(maker_NN_7_31, of_IN_8_37); pobj(of_IN_8_37, devices_NNS_10_48); amod(devices_NNS_10_48, medical_JJ_9_40); tmod(agreed_VBD_12_58, year_NN_2_13); punct(agreed_VBD_12_58, ,_,_3_18); nsubj(agreed_VBD_12_58, Cordis_NNP_4_20); xcomp(agreed_VBD_12_58, plead_VB_14_68); punct(agreed_VBD_12_58, ._._39_212); aux(plead_VB_14_68, to_TO_13_65); acomp(plead_VB_14_68, guilty_JJ_15_74); cc(plead_VB_14_68, and_CC_25_141); conj(plead_VB_14_68, pay_VB_27_148); prep(guilty_JJ_15_74, to_TO_16_81); pobj(to_TO_16_81, charges_NNS_20_107); cc(felony_NN_17_84, and_CC_18_91); conj(felony_NN_17_84, misdemeanor_NN_19_95); nn(charges_NNS_20_107, felony_NN_17_84); amod(charges_NNS_20_107, related_VBN_21_115); prep(related_VBN_21_115, to_TO_22_123); pobj(to_TO_22_123, pacemakers_NNS_24_130); det(pacemakers_NNS_24_130, the_DT_23_126); aux(pay_VB_27_148, to_TO_26_145); iobj(pay_VB_27_148, government_NN_29_156); dobj(pay_VB_27_148, $_$_31_173); det(government_NN_29_156, the_DT_28_152); quantmod($_$_31_173, about_RB_30_167); number($_$_31_173, 5.7_CD_32_175); number($_$_31_173, million_CD_33_179); prep($_$_31_173, in_IN_34_187); pobj(in_IN_34_187, fines_NNS_35_190); cc(fines_NNS_35_190, and_CC_36_196); conj(fines_NNS_35_190, costs_NNS_38_206); amod(costs_NNS_38_206, other_JJ_37_200) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Cordis ;;; Cordis_NNP_4_20 be a maker of ;;; a_DT_6_29; maker_NN_7_31 medical devices ;;; medical_JJ_9_40; devices_NN_10_48 0.40310 None None 0 advmod(year_NN_2_13, Earlier_RBR_0_0); det(year_NN_2_13, this_DT_1_8); punct(Cordis_NNP_4_20, ,_,_5_27); appos(Cordis_NNP_4_20, maker_NN_7_31); punct(Cordis_NNP_4_20, ,_,_11_56); det(maker_NN_7_31, a_DT_6_29); prep(maker_NN_7_31, of_IN_8_37); pobj(of_IN_8_37, devices_NNS_10_48); amod(devices_NNS_10_48, medical_JJ_9_40); tmod(agreed_VBD_12_58, year_NN_2_13); punct(agreed_VBD_12_58, ,_,_3_18); nsubj(agreed_VBD_12_58, Cordis_NNP_4_20); xcomp(agreed_VBD_12_58, plead_VB_14_68); punct(agreed_VBD_12_58, ._._39_212); aux(plead_VB_14_68, to_TO_13_65); acomp(plead_VB_14_68, guilty_JJ_15_74); cc(plead_VB_14_68, and_CC_25_141); conj(plead_VB_14_68, pay_VB_27_148); prep(guilty_JJ_15_74, to_TO_16_81); pobj(to_TO_16_81, charges_NNS_20_107); cc(felony_NN_17_84, and_CC_18_91); conj(felony_NN_17_84, misdemeanor_NN_19_95); nn(charges_NNS_20_107, felony_NN_17_84); amod(charges_NNS_20_107, related_VBN_21_115); prep(related_VBN_21_115, to_TO_22_123); pobj(to_TO_22_123, pacemakers_NNS_24_130); det(pacemakers_NNS_24_130, the_DT_23_126); aux(pay_VB_27_148, to_TO_26_145); iobj(pay_VB_27_148, government_NN_29_156); dobj(pay_VB_27_148, $_$_31_173); det(government_NN_29_156, the_DT_28_152); quantmod($_$_31_173, about_RB_30_167); number($_$_31_173, 5.7_CD_32_175); number($_$_31_173, million_CD_33_179); prep($_$_31_173, in_IN_34_187); pobj(in_IN_34_187, fines_NNS_35_190); cc(fines_NNS_35_190, and_CC_36_196); conj(fines_NNS_35_190, costs_NNS_38_206); amod(costs_NNS_38_206, other_JJ_37_200) Template {rel} in {arg1} tmod> {arg2} 0.0151 Cordis ;;; Cordis_NNP_4_20 agreed in ;;; agreed_VBD_12_58 this year ;;; this_DT_1_8; year_NN_2_13 0.01510 None None 0 nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) Template {rel} {arg1} dobj> {arg2} 0.3797 A.P. Green ;;; A.P._NNP_17_84; Green_NNP_18_89 told ;;; told_VBD_25_127 the partnership ;;; the_DT_26_132; partnership_NN_27_136 0.37970 None East Rock Partners_said_0_2_16_16 1 nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 it ;;; it_PRP_28_148 is n't for ;;; is_VBZ_29_151; n't_RB_30_154 sale ;;; sale_NN_32_162 0.24440 None None 1 nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) Template {rel} {arg1} dobj> {arg2} 0.1473 it ;;; it_PRP_7_41 might make ;;; might_MD_8_44; make_VB_9_50 a bid ;;; a_DT_10_55; bid_NN_11_57 0.14730 None None 0 nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) Template {rel} {arg1} ccomp> {slot0:postag=VBD:regex=aka|announce|appear|approve|ask|attack|attempt|be|beat|beget|begin|blame|break|bring|buy|call|capture|carry|cause|celebrate|change|choose|circa|claim|come|command|control|create|crucify|cry|decide|declare|defeat|deliver|demand|deny|die|discover|do|draw|drop|emerge|enlist|enter|establish|estimate|fall|favor|fear|feel|find|flee|fly|follow|ft|get|give|go|greet|grow|have|help|hit|hold|inspire|intend|introduce|invade|invent|join|kill|know|launch|lead|leave|lift|live|look|lose|love|make|marry|mean|meet|name|opt|pass|pick|place|play|pledge|produce|prove|publish|put|raise|reach|read|realize|receive|refuse|release|replace|respond|rise|salt|sample|say|see|send|serve|set|show|sign|speak|spend|spring|stand|start|stay|stop|suffer|surprise|take|teach|tell|think|try|turn|use|veto|vote|wake|walk|want|win|write} >nsubj> {arg2} 0.0105 East Rock Partners ;;; East_NNP_0_0; Rock_NNP_1_5; Partners_NNP_2_10 said ;;; said_VBD_16_79 A.P. Green ;;; A.P._NNP_17_84; Green_NNP_18_89 0.01050 None None 0 nn(Partners_NNP_2_10, East_NNP_0_0); nn(Partners_NNP_2_10, Rock_NNP_1_5); punct(Partners_NNP_2_10, ,_,_3_19); rcmod(Partners_NNP_2_10, indicated_VBN_6_31); punct(Partners_NNP_2_10, ,_,_15_77); nsubj(indicated_VBN_6_31, which_WDT_4_21); aux(indicated_VBN_6_31, has_VBZ_5_27); ccomp(indicated_VBN_6_31, make_VB_9_50); nsubj(make_VB_9_50, it_PRP_7_41); aux(make_VB_9_50, might_MD_8_44); dobj(make_VB_9_50, bid_NN_11_57); det(bid_NN_11_57, a_DT_10_55); prep(bid_NN_11_57, for_IN_12_61); pobj(for_IN_12_61, company_NN_14_69); det(company_NN_14_69, the_DT_13_65); nsubj(said_VBD_16_79, Partners_NNP_2_10); ccomp(said_VBD_16_79, told_VBD_25_127); punct(said_VBD_16_79, ._._33_167); nn(Green_NNP_18_89, A.P._NNP_17_84); punct(Green_NNP_18_89, ,_,_19_95); appos(Green_NNP_18_89, maker_NN_23_119); punct(Green_NNP_18_89, ,_,_24_125); det(maker_NN_23_119, a_DT_20_97); amod(maker_NN_23_119, refractory_JJ_21_99); nn(maker_NN_23_119, products_NNS_22_110); nsubj(told_VBD_25_127, Green_NNP_18_89); dobj(told_VBD_25_127, partnership_NN_27_136); dep(told_VBD_25_127, is_VBZ_29_151); det(partnership_NN_27_136, the_DT_26_132); nsubj(is_VBZ_29_151, it_PRP_28_148); neg(is_VBZ_29_151, n't_RB_30_154); prep(is_VBZ_29_151, for_IN_31_158); pobj(for_IN_31_158, sale_NN_32_162) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0057 it ;;; it_PRP_7_41 be a bid for ;;; a_DT_10_55; bid_NN_11_57 the company ;;; the_DT_13_65; company_NN_14_69 0.00570 None None 1 amod(travels_NNS_2_23, Electromagnetic_JJ_0_0); nn(travels_NNS_2_23, energy_NN_1_16); prep(travels_NNS_2_23, in_IN_3_31); punct(travels_NNS_2_23, ._._17_109); pobj(in_IN_3_31, waves_NNS_5_43); amod(waves_NNS_5_43, rhythmic_JJ_4_34); amod(waves_NNS_5_43, analogous_JJ_6_49); prep(analogous_JJ_6_49, to_TO_7_59); pobj(to_TO_7_59, those_DT_8_62); partmod(those_DT_8_62, created_VBN_9_68); prep(created_VBN_9_68, by_IN_10_76); pcomp(by_IN_10_76, dropping_VBG_11_79); dobj(dropping_VBG_11_79, pebble_NN_13_90); prep(dropping_VBG_11_79, into_IN_14_97); det(pebble_NN_13_90, a_DT_12_88); pobj(into_IN_14_97, pond_NN_16_104); det(pond_NN_16_104, a_DT_15_102) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 a pebble ;;; a_DT_12_88; pebble_NN_13_90 be dropping into ;;; dropping_VBG_11_79 a pond ;;; a_DT_15_102; pond_NN_16_104 0.00790 None None 1 advmod(surged_VBD_3_19, Elsewhere_RB_0_0); punct(surged_VBD_3_19, ,_,_1_10); nsubj(surged_VBD_3_19, prices_NNS_2_12); prep(surged_VBD_3_19, for_IN_4_26); punct(surged_VBD_3_19, ,_,_10_56); conj(surged_VBD_3_19, closed_VBD_11_58); cc(surged_VBD_3_19, and_CC_19_108); conj(surged_VBD_3_19, lower_JJR_22_125); punct(surged_VBD_3_19, ._._29_161); pobj(for_IN_4_26, day_NN_7_39); det(day_NN_7_39, a_DT_5_30); amod(day_NN_7_39, second_JJ_6_32); prep(day_NN_7_39, in_IN_8_43); pobj(in_IN_8_43, Frankfurt_NNP_9_46); dep(closed_VBD_11_58, higher_JJR_12_65); prep(closed_VBD_11_58, in_IN_13_72); pobj(in_IN_13_72, Zurich_NNP_14_75); punct(Zurich_NNP_14_75, ,_,_15_82); conj(Zurich_NNP_14_75, Stockholm_NNP_16_84); cc(Zurich_NNP_14_75, and_CC_17_94); conj(Zurich_NNP_14_75, Amsterdam_NNP_18_98); cop(lower_JJR_22_125, were_VBD_20_112); advmod(lower_JJR_22_125, broadly_RB_21_117); prep(lower_JJR_22_125, in_IN_23_131); pobj(in_IN_23_131, Milan_NNP_24_134); punct(Milan_NNP_24_134, ,_,_25_140); conj(Milan_NNP_24_134, Paris_NNP_26_142); cc(Milan_NNP_24_134, and_CC_27_148); conj(Milan_NNP_24_134, Brussels_NNP_28_152) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 prices ;;; prices_NN_2_12 Elsewhere surged for ;;; Elsewhere_RB_0_0; surged_VBD_3_19 a second day ;;; a_DT_5_30; second_JJ_6_32; day_NN_7_39 0.73450 None None 0 advmod(surged_VBD_3_19, Elsewhere_RB_0_0); punct(surged_VBD_3_19, ,_,_1_10); nsubj(surged_VBD_3_19, prices_NNS_2_12); prep(surged_VBD_3_19, for_IN_4_26); punct(surged_VBD_3_19, ,_,_10_56); conj(surged_VBD_3_19, closed_VBD_11_58); cc(surged_VBD_3_19, and_CC_19_108); conj(surged_VBD_3_19, lower_JJR_22_125); punct(surged_VBD_3_19, ._._29_161); pobj(for_IN_4_26, day_NN_7_39); det(day_NN_7_39, a_DT_5_30); amod(day_NN_7_39, second_JJ_6_32); prep(day_NN_7_39, in_IN_8_43); pobj(in_IN_8_43, Frankfurt_NNP_9_46); dep(closed_VBD_11_58, higher_JJR_12_65); prep(closed_VBD_11_58, in_IN_13_72); pobj(in_IN_13_72, Zurich_NNP_14_75); punct(Zurich_NNP_14_75, ,_,_15_82); conj(Zurich_NNP_14_75, Stockholm_NNP_16_84); cc(Zurich_NNP_14_75, and_CC_17_94); conj(Zurich_NNP_14_75, Amsterdam_NNP_18_98); cop(lower_JJR_22_125, were_VBD_20_112); advmod(lower_JJR_22_125, broadly_RB_21_117); prep(lower_JJR_22_125, in_IN_23_131); pobj(in_IN_23_131, Milan_NNP_24_134); punct(Milan_NNP_24_134, ,_,_25_140); conj(Milan_NNP_24_134, Paris_NNP_26_142); cc(Milan_NNP_24_134, and_CC_27_148); conj(Milan_NNP_24_134, Brussels_NNP_28_152) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 prices ;;; prices_NN_2_12 closed in ;;; closed_VBD_11_58 Zurich , Stockholm and Amsterdam ;;; Zurich_NNP_14_75; ,_,_15_82; Stockholm_NNP_16_84; and_CC_17_94; Amsterdam_NNP_18_98 0.73450 None None 1 advmod(surged_VBD_3_19, Elsewhere_RB_0_0); punct(surged_VBD_3_19, ,_,_1_10); nsubj(surged_VBD_3_19, prices_NNS_2_12); prep(surged_VBD_3_19, for_IN_4_26); punct(surged_VBD_3_19, ,_,_10_56); conj(surged_VBD_3_19, closed_VBD_11_58); cc(surged_VBD_3_19, and_CC_19_108); conj(surged_VBD_3_19, lower_JJR_22_125); punct(surged_VBD_3_19, ._._29_161); pobj(for_IN_4_26, day_NN_7_39); det(day_NN_7_39, a_DT_5_30); amod(day_NN_7_39, second_JJ_6_32); prep(day_NN_7_39, in_IN_8_43); pobj(in_IN_8_43, Frankfurt_NNP_9_46); dep(closed_VBD_11_58, higher_JJR_12_65); prep(closed_VBD_11_58, in_IN_13_72); pobj(in_IN_13_72, Zurich_NNP_14_75); punct(Zurich_NNP_14_75, ,_,_15_82); conj(Zurich_NNP_14_75, Stockholm_NNP_16_84); cc(Zurich_NNP_14_75, and_CC_17_94); conj(Zurich_NNP_14_75, Amsterdam_NNP_18_98); cop(lower_JJR_22_125, were_VBD_20_112); advmod(lower_JJR_22_125, broadly_RB_21_117); prep(lower_JJR_22_125, in_IN_23_131); pobj(in_IN_23_131, Milan_NNP_24_134); punct(Milan_NNP_24_134, ,_,_25_140); conj(Milan_NNP_24_134, Paris_NNP_26_142); cc(Milan_NNP_24_134, and_CC_27_148); conj(Milan_NNP_24_134, Brussels_NNP_28_152) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0128 prices ;;; prices_NN_2_12 were broadly lower in ;;; were_VBD_20_112; broadly_RB_21_117; lower_JJR_22_125 Milan , Paris and Brussels ;;; Milan_NNP_24_134; ,_,_25_140; Paris_NNP_26_142; and_CC_27_148; Brussels_NNP_28_152 0.01280 None None 1 prep(Exclusive_JJ_0_0, of_IN_1_10); pobj(of_IN_1_10, gain_NN_3_17); det(gain_NN_3_17, the_DT_2_13); nn(profit_NN_6_34, operating_NN_5_24); ccomp(declined_VBD_7_41, Exclusive_JJ_0_0); punct(declined_VBD_7_41, ,_,_4_22); nsubj(declined_VBD_7_41, profit_NN_6_34); dobj(declined_VBD_7_41, %_NN_9_53); prep(declined_VBD_7_41, to_TO_10_55); prep(declined_VBD_7_41, from_IN_21_97); punct(declined_VBD_7_41, ._._31_139); num(%_NN_9_53, 35_CD_8_50); pobj(to_TO_10_55, $_$_11_58); number($_$_11_58, 16.4_CD_12_60); number($_$_11_58, million_CD_13_65); punct($_$_11_58, ,_,_14_73); cc($_$_11_58, or_CC_15_75); conj($_$_11_58, cents_NNS_17_81); punct($_$_11_58, ,_,_20_95); num(cents_NNS_17_81, 21_CD_16_78); dep(cents_NNS_17_81, share_NN_19_89); det(share_NN_19_89, a_DT_18_87); pobj(from_IN_21_97, $_$_22_102); number($_$_22_102, 25.2_CD_23_104); number($_$_22_102, million_CD_24_109); punct($_$_22_102, ,_,_25_117); cc($_$_22_102, or_CC_26_119); conj($_$_22_102, cents_NNS_28_125); num(cents_NNS_28_125, 31_CD_27_122); dep(cents_NNS_28_125, share_NN_30_133); det(share_NN_30_133, a_DT_29_131) Template {rel} {arg1} dobj> {arg2} 0.3797 operating profit ;;; operating_NN_5_24; profit_NN_6_34 declined ;;; declined_VBD_7_41 35 % ;;; 35_CD_8_50; %_NN_9_53 0.37970 None None 1 nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Imperial Cup Corp. ;;; Imperial_NNP_12_79; Cup_NNP_13_88; Corp._NNP_14_92 be a closely held maker of ;;; a_DT_16_100; closely_RB_17_102; held_VBN_18_110; maker_NN_19_115 paper cups based in Kenton , Ohio ;;; paper_NN_21_124; cups_NN_22_130; based_VBN_23_135; in_IN_24_141; Kenton_NNP_25_144; ,_,_26_151; Ohio_NNP_27_153 0.40310 None None 1 nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) Template {rel} {arg1} dobj> {arg2} 0.3797 it ;;; it_PRP_5_29 completed ;;; completed_VBD_6_32 the previously announced purchase of Imperial Cup Corp. ;;; the_DT_7_42; previously_RB_8_46; announced_VBN_9_57; purchase_NN_10_67; of_IN_11_76; Imperial_NNP_12_79; Cup_NNP_13_88; Corp._NNP_14_92 0.37970 None Federal Paper Board Co._said_0_3_4_4 1 nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 paper cups ;;; paper_NN_21_124; cups_NN_22_130 be based in ;;; based_VBN_23_135 Kenton ;;; Kenton_NNP_25_144 0.11100 None None 1 nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) Template be {rel} {prep} {rel:postag=VBN:regex=base|bear|border|compose|comprise|find|hold|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0901 Kenton ;;; Kenton_NNP_25_144 be based in ;;; based_VBN_23_135 Ohio ;;; Ohio_NNP_27_153 0.09010 None None 0 nn(Co._NNP_3_20, Federal_NNP_0_0); nn(Co._NNP_3_20, Paper_NNP_1_8); nn(Co._NNP_3_20, Board_NNP_2_14); nsubj(said_VBD_4_24, Co._NNP_3_20); ccomp(said_VBD_4_24, completed_VBD_6_32); punct(said_VBD_4_24, ._._28_158); nsubj(completed_VBD_6_32, it_PRP_5_29); dobj(completed_VBD_6_32, purchase_NN_10_67); advmod(announced_VBN_9_57, previously_RB_8_46); det(purchase_NN_10_67, the_DT_7_42); amod(purchase_NN_10_67, announced_VBN_9_57); prep(purchase_NN_10_67, of_IN_11_76); pobj(of_IN_11_76, Corp._NNP_14_92); nn(Corp._NNP_14_92, Imperial_NNP_12_79); nn(Corp._NNP_14_92, Cup_NNP_13_88); punct(Corp._NNP_14_92, ,_,_15_98); appos(Corp._NNP_14_92, maker_NN_19_115); advmod(held_VBN_18_110, closely_RB_17_102); det(maker_NN_19_115, a_DT_16_100); amod(maker_NN_19_115, held_VBN_18_110); prep(maker_NN_19_115, of_IN_20_121); pobj(of_IN_20_121, cups_NNS_22_130); nn(cups_NNS_22_130, paper_NN_21_124); partmod(cups_NNS_22_130, based_VBN_23_135); prep(based_VBN_23_135, in_IN_24_141); pobj(in_IN_24_141, Kenton_NNP_25_144); punct(Kenton_NNP_25_144, ,_,_26_151); appos(Kenton_NNP_25_144, Ohio_NNP_27_153) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 it ;;; it_PRP_5_29 be the previously announced purchase of ;;; the_DT_7_42; previously_RB_8_46; announced_VBN_9_57; purchase_NN_10_67 Imperial Cup Corp. ;;; Imperial_NNP_12_79; Cup_NNP_13_88; Corp._NNP_14_92 0.01190 None None 1 det(molecule_NN_4_18, a_DT_2_8); amod(molecule_NN_4_18, foreign_JJ_3_10); advmod(present_JJ_7_35, First_RB_0_0); punct(present_JJ_7_35, ,_,_1_6); nsubj(present_JJ_7_35, molecule_NN_4_18); aux(present_JJ_7_35, must_MD_5_27); cop(present_JJ_7_35, be_VB_6_32); ccomp(present_JJ_7_35, bind_NN_10_52); punct(present_JJ_7_35, ._._20_108); nsubj(bind_NN_10_52, that_WDT_8_43); aux(bind_NN_10_52, can_MD_9_48); prep(bind_NN_10_52, to_TO_12_70); dep(to_TO_12_70, specifically_RB_11_57); pobj(to_TO_12_70, receptor_NN_15_85); det(receptor_NN_15_85, the_DT_13_73); nn(receptor_NN_15_85, antigen_NN_14_77); prep(receptor_NN_15_85, of_IN_16_94); pobj(of_IN_16_94, cell_NN_19_103); det(cell_NN_19_103, the_DT_17_97); nn(cell_NN_19_103, T_NNP_18_101) Template {rel} {arg1} cop> {rel:postag=VB} 0.008 a foreign molecule ;;; a_DT_2_8; foreign_JJ_3_10; molecule_NN_4_18 First must be ;;; First_RB_0_0; must_MD_5_27; be_VB_6_32 present ;;; present_JJ_7_35 0.00800 None None 1 number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 3.4 million additional shares ;;; 3.4_CD_11_54; million_CD_12_58; additional_JJ_13_66; shares_NN_14_77 will be offered in ;;; will_MD_15_84; be_VB_16_89; offered_VBN_17_92 concurrent international offerings ;;; concurrent_JJ_19_103; international_JJ_20_114; offerings_NN_21_128 1.00000 None None 1 number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 3.4 million additional shares ;;; 3.4_CD_11_54; million_CD_12_58; additional_JJ_13_66; shares_NN_14_77 will be offered in ;;; will_MD_3_20; be_VB_4_25; offered_VBN_5_28 the U.S. ;;; the_DT_7_39; U.S._NNP_8_43 1.00000 None None 0 number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Five million shares ;;; Five_CD_0_0; million_CD_1_5; shares_NN_2_13 will be offered in ;;; will_MD_15_84; be_VB_16_89; offered_VBN_17_92 concurrent international offerings ;;; concurrent_JJ_19_103; international_JJ_20_114; offerings_NN_21_128 1.00000 None None 1 number(million_CD_1_5, Five_CD_0_0); num(shares_NNS_2_13, million_CD_1_5); nsubjpass(offered_VBN_5_28, shares_NNS_2_13); aux(offered_VBN_5_28, will_MD_3_20); auxpass(offered_VBN_5_28, be_VB_4_25); prep(offered_VBN_5_28, in_IN_6_36); punct(offered_VBN_5_28, ,_,_9_48); cc(offered_VBN_5_28, and_CC_10_50); conj(offered_VBN_5_28, offered_VBN_17_92); punct(offered_VBN_5_28, ._._25_155); pobj(in_IN_6_36, U.S._NNP_8_43); det(U.S._NNP_8_43, the_DT_7_39); number(million_CD_12_58, 3.4_CD_11_54); num(shares_NNS_14_77, million_CD_12_58); amod(shares_NNS_14_77, additional_JJ_13_66); nsubjpass(offered_VBN_17_92, shares_NNS_14_77); aux(offered_VBN_17_92, will_MD_15_84); auxpass(offered_VBN_17_92, be_VB_16_89); prep(offered_VBN_17_92, in_IN_18_100); pobj(in_IN_18_100, offerings_NNS_21_128); amod(offerings_NNS_21_128, concurrent_JJ_19_103); amod(offerings_NNS_21_128, international_JJ_20_114); prep(offerings_NNS_21_128, outside_IN_22_138); pobj(outside_IN_22_138, U.S._NNP_24_150); det(U.S._NNP_24_150, the_DT_23_146) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Five million shares ;;; Five_CD_0_0; million_CD_1_5; shares_NN_2_13 will be offered in ;;; will_MD_3_20; be_VB_4_25; offered_VBN_5_28 the U.S. ;;; the_DT_7_39; U.S._NNP_8_43 1.00000 None None 0 amod(swim_NN_2_18, Flagellated_VBN_0_0); nn(swim_NN_2_18, sperm_NN_1_12); prep(swim_NN_2_18, through_IN_3_23); punct(swim_NN_2_18, ,_,_10_59); partmod(swim_NN_2_18, entering_VBG_11_61); punct(swim_NN_2_18, ._._19_121); pobj(through_IN_3_23, film_NN_5_33); det(film_NN_5_33, a_DT_4_31); prep(film_NN_5_33, of_IN_6_38); pobj(of_IN_6_38, water_NN_7_41); prep(water_NN_7_41, toward_IN_8_47); pobj(toward_IN_8_47, eggs_NNS_9_54); dobj(entering_VBG_11_61, archegonia_NN_13_74); prep(entering_VBG_11_61, in_IN_14_85); det(archegonia_NN_13_74, the_DT_12_70); pobj(in_IN_14_85, response_NN_15_88); prep(response_NN_15_88, to_TO_16_97); pobj(to_TO_16_97, attractants_NNS_18_109); nn(attractants_NNS_18_109, chemical_NN_17_100) Template {rel} {prep} {arg1} >partmod> {rel:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.0192 Flagellated sperm swim ;;; Flagellated_VBN_0_0; sperm_NN_1_12; swim_NN_2_18 entering the archegonia in ;;; entering_VBG_11_61; the_DT_12_70; archegonia_NN_13_74 response ;;; response_NN_15_88 0.01920 None None 1 amod(swim_NN_2_18, Flagellated_VBN_0_0); nn(swim_NN_2_18, sperm_NN_1_12); prep(swim_NN_2_18, through_IN_3_23); punct(swim_NN_2_18, ,_,_10_59); partmod(swim_NN_2_18, entering_VBG_11_61); punct(swim_NN_2_18, ._._19_121); pobj(through_IN_3_23, film_NN_5_33); det(film_NN_5_33, a_DT_4_31); prep(film_NN_5_33, of_IN_6_38); pobj(of_IN_6_38, water_NN_7_41); prep(water_NN_7_41, toward_IN_8_47); pobj(toward_IN_8_47, eggs_NNS_9_54); dobj(entering_VBG_11_61, archegonia_NN_13_74); prep(entering_VBG_11_61, in_IN_14_85); det(archegonia_NN_13_74, the_DT_12_70); pobj(in_IN_14_85, response_NN_15_88); prep(response_NN_15_88, to_TO_16_97); pobj(to_TO_16_97, attractants_NNS_18_109); nn(attractants_NNS_18_109, chemical_NN_17_100) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 the archegonia ;;; the_DT_12_70; archegonia_NN_13_74 be entering in ;;; entering_VBG_11_61 response ;;; response_NN_15_88 0.00790 None None 1 nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Florio Fiorini ;;; Florio_NNP_0_0; Fiorini_NNP_1_7 be managing director of ;;; managing_VBG_3_17; director_NN_4_26 Geneva-based Sasea ;;; Geneva-based_JJ_6_38; Sasea_NNP_7_51 0.40310 None None 1 nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) Template {rel} {arg1} dobj> {arg2} 0.1473 the investors ;;; the_DT_10_64; investors_NN_11_68 would pay ;;; would_MD_12_78; pay_VB_13_84 a symbolic one lira ;;; a_DT_15_93; symbolic_JJ_16_95; one_CD_17_104; lira_NN_18_108 0.14730 None Florio Fiorini_said_0_1_9_9 1 nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 the investors ;;; the_DT_10_64; investors_NN_11_68 would pay only a symbolic one lira for ;;; would_MD_12_78; pay_VB_13_84; only_RB_14_88; a_DT_15_93; symbolic_JJ_16_95; one_CD_17_104; lira_NN_18_108 the station ;;; the_DT_20_117; station_NN_21_121 0.13490 None Florio Fiorini_said_0_1_9_9 1 nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.0577 we ;;; we_PRP_25_137 have agreed to raise ;;; have_VBP_26_140; agreed_VBN_27_145; to_TO_28_152; raise_VB_29_155 the capital that will enable the company to continue operating ;;; the_DT_30_161; capital_NN_31_165; that_WDT_32_173; will_MD_33_178; enable_VB_34_183; the_DT_35_190; company_NN_36_194; to_TO_37_202; continue_VB_38_205; operating_VBG_39_214 0.05770 None None 1 nn(Fiorini_NNP_1_7, Florio_NNP_0_0); punct(Fiorini_NNP_1_7, ,_,_2_15); appos(Fiorini_NNP_1_7, director_NN_4_26); punct(Fiorini_NNP_1_7, ,_,_8_57); amod(director_NN_4_26, managing_VBG_3_17); prep(director_NN_4_26, of_IN_5_35); pobj(of_IN_5_35, Sasea_NNP_7_51); amod(Sasea_NNP_7_51, Geneva-based_JJ_6_38); nsubj(said_VBD_9_59, Fiorini_NNP_1_7); ccomp(said_VBD_9_59, pay_VB_13_84); punct(said_VBD_9_59, ._._40_224); det(investors_NNS_11_68, the_DT_10_64); nsubj(pay_VB_13_84, investors_NNS_11_68); aux(pay_VB_13_84, would_MD_12_78); dobj(pay_VB_13_84, lira_NN_18_108); prep(pay_VB_13_84, for_IN_19_113); punct(pay_VB_13_84, ,_,_22_129); punct(pay_VB_13_84, "_``_23_131); cc(pay_VB_13_84, but_CC_24_133); conj(pay_VB_13_84, agreed_VBN_27_145); advmod(lira_NN_18_108, only_RB_14_88); det(lira_NN_18_108, a_DT_15_93); amod(lira_NN_18_108, symbolic_JJ_16_95); num(lira_NN_18_108, one_CD_17_104); pobj(for_IN_19_113, station_NN_21_121); det(station_NN_21_121, the_DT_20_117); nsubj(agreed_VBN_27_145, we_PRP_25_137); aux(agreed_VBN_27_145, have_VBP_26_140); xcomp(agreed_VBN_27_145, raise_VB_29_155); aux(raise_VB_29_155, to_TO_28_152); dobj(raise_VB_29_155, capital_NN_31_165); det(capital_NN_31_165, the_DT_30_161); rcmod(capital_NN_31_165, enable_VB_34_183); nsubj(enable_VB_34_183, that_WDT_32_173); aux(enable_VB_34_183, will_MD_33_178); xcomp(enable_VB_34_183, continue_VB_38_205); det(company_NN_36_194, the_DT_35_190); nsubj(continue_VB_38_205, company_NN_36_194); aux(continue_VB_38_205, to_TO_37_202); xcomp(continue_VB_38_205, operating_VBG_39_214) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a symbolic one lira ;;; a_DT_15_93; symbolic_JJ_16_95; one_CD_17_104; lira_NN_18_108 would be pay for ;;; would_MD_12_78; pay_VB_13_84 the station ;;; the_DT_20_117; station_NN_21_121 0.01320 None Florio Fiorini_said_0_1_9_9 1 pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the sunflower hybrid zone ;;; the_DT_28_183; sunflower_NN_29_187; hybrid_NN_30_197; zone_NN_31_204 discussed earlier is influenced by ;;; discussed_VBN_32_209; earlier_RB_33_219; is_VBZ_34_227; influenced_VBN_35_230 at least 26 chromosome segments ;;; at_IN_37_244; least_JJ_38_247; 26_CD_39_253; chromosome_NN_40_256; segments_NN_41_267 1.00000 None None 0 pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 hybrid sterility ;;; hybrid_JJ_3_14; sterility_NN_4_21 pseudoobscura results from gene interactions among ;;; pseudoobscura_VBD_13_82; results_NN_14_96; from_IN_15_104; gene_NN_16_109; interactions_NN_17_114 at least four loci ;;; at_IN_19_133; least_JJ_20_136; four_CD_21_142; loci_NN_22_147 0.73450 None None 0 pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) Template {rel} {arg1} dobj> {arg2} 0.3797 hybrid sterility ;;; hybrid_JJ_3_14; sterility_NN_4_21 pseudoobscura ;;; pseudoobscura_VBD_13_82 results ;;; results_NN_14_96 0.37970 None None 0 pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 postzygotic isolation ;;; postzygotic_JJ_25_158; isolation_NN_26_170 be hybrid sterility between ;;; hybrid_JJ_3_14; sterility_NN_4_21 two subspecies of the fruit fly Drosophila ;;; two_CD_6_39; subspecies_NN_7_43; of_IN_8_54; the_DT_9_57; fruit_NN_10_61; fly_NN_11_67; Drosophila_NNP_12_71 0.04770 None None 0 pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 postzygotic isolation ;;; postzygotic_JJ_25_158; isolation_NN_26_170 be hybrid sterility for ;;; hybrid_JJ_3_14; sterility_NN_4_21 example ;;; example_NN_1_4 0.04770 None None 0 pobj(For_IN_0_0, example_NN_1_4); prep(sterility_NN_4_21, For_IN_0_0); punct(sterility_NN_4_21, ,_,_2_12); amod(sterility_NN_4_21, hybrid_JJ_3_14); prep(sterility_NN_4_21, between_IN_5_31); pobj(between_IN_5_31, subspecies_NNS_7_43); num(subspecies_NNS_7_43, two_CD_6_39); prep(subspecies_NNS_7_43, of_IN_8_54); pobj(of_IN_8_54, Drosophila_NNP_12_71); det(Drosophila_NNP_12_71, the_DT_9_57); nn(Drosophila_NNP_12_71, fruit_NN_10_61); nn(Drosophila_NNP_12_71, fly_NN_11_67); nsubj(pseudoobscura_VBD_13_82, sterility_NN_4_21); dobj(pseudoobscura_VBD_13_82, results_NNS_14_96); prep(pseudoobscura_VBD_13_82, among_IN_18_127); punct(pseudoobscura_VBD_13_82, ,_,_23_152); cc(pseudoobscura_VBD_13_82, and_CC_24_154); conj(pseudoobscura_VBD_13_82, isolation_NN_26_170); punct(pseudoobscura_VBD_13_82, ._._42_276); prep(results_NNS_14_96, from_IN_15_104); pobj(from_IN_15_104, interactions_NNS_17_114); nn(interactions_NNS_17_114, gene_NN_16_109); pobj(among_IN_18_127, loci_NNS_22_147); dep(at_IN_19_133, least_JJS_20_136); quantmod(four_CD_21_142, at_IN_19_133); num(loci_NNS_22_147, four_CD_21_142); amod(isolation_NN_26_170, postzygotic_JJ_25_158); dep(isolation_NN_26_170, influenced_VBN_35_230); det(zone_NN_31_204, the_DT_28_183); nn(zone_NN_31_204, sunflower_NN_29_187); nn(zone_NN_31_204, hybrid_NN_30_197); mark(influenced_VBN_35_230, in_IN_27_180); nsubjpass(influenced_VBN_35_230, zone_NN_31_204); auxpass(influenced_VBN_35_230, discussed_VBN_32_209); advmod(influenced_VBN_35_230, earlier_RB_33_219); auxpass(influenced_VBN_35_230, is_VBZ_34_227); prep(influenced_VBN_35_230, by_IN_36_241); pobj(by_IN_36_241, segments_NNS_41_267); dep(at_IN_37_244, least_JJS_38_247); quantmod(26_CD_39_253, at_IN_37_244); num(segments_NNS_41_267, 26_CD_39_253); nn(segments_NNS_41_267, chromosome_NN_40_256) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 results ;;; results_NN_14_96 be pseudoobscura among ;;; pseudoobscura_VBD_13_82 at least four loci ;;; at_IN_19_133; least_JJ_20_136; four_CD_21_142; loci_NN_22_147 0.01550 None None 0 pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 you ;;; you_PRP_3_14 learned for ;;; learned_VBD_4_18 example ;;; example_NN_1_4 0.73450 None None 0 pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 you ;;; you_PRP_3_14 learned earlier stimulate ;;; learned_VBD_4_18; earlier_RB_5_26; stimulate_VB_9_56 the release of saliva ;;; the_DT_10_66; release_NN_11_70; of_IN_12_78; saliva_NN_13_81 0.37970 when_food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx_14_30 None 1 pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) Template {rel} {arg1} dobj> {arg2} 0.1473 that nervous reflexes ;;; that_DT_6_34; nervous_JJ_7_39; reflexes_NN_8_47 earlier stimulate ;;; earlier_RB_5_26; stimulate_VB_9_56 the release of saliva ;;; the_DT_10_66; release_NN_11_70; of_IN_12_78; saliva_NN_13_81 0.14730 when_food enters the oral cavity and orchestrate swallowing when a bolus of food reaches the pharynx_14_30 None 1 pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) Template {rel} {arg1} dobj> {arg2} 0.1443 a bolus of food ;;; a_DT_24_153; bolus_NN_25_155; of_IN_26_161; food_NN_27_164 reaches ;;; reaches_VBZ_28_169 the pharynx ;;; the_DT_29_177; pharynx_NN_30_181 0.14430 None None 1 pobj(For_IN_0_0, example_NN_1_4); prep(learned_VBD_4_18, For_IN_0_0); punct(learned_VBD_4_18, ,_,_2_12); nsubj(learned_VBD_4_18, you_PRP_3_14); xcomp(learned_VBD_4_18, stimulate_VB_9_56); punct(learned_VBD_4_18, ._._31_189); det(reflexes_NNS_8_47, that_DT_6_34); amod(reflexes_NNS_8_47, nervous_JJ_7_39); advmod(stimulate_VB_9_56, earlier_RB_5_26); nsubj(stimulate_VB_9_56, reflexes_NNS_8_47); dobj(stimulate_VB_9_56, release_NN_11_70); advcl(stimulate_VB_9_56, enters_VBZ_16_98); det(release_NN_11_70, the_DT_10_66); prep(release_NN_11_70, of_IN_12_78); pobj(of_IN_12_78, saliva_NN_13_81); advmod(enters_VBZ_16_98, when_WRB_14_88); nsubj(enters_VBZ_16_98, food_NN_15_93); dobj(enters_VBZ_16_98, cavity_NN_19_114); advcl(enters_VBZ_16_98, reaches_VBZ_28_169); det(cavity_NN_19_114, the_DT_17_105); amod(cavity_NN_19_114, oral_JJ_18_109); cc(cavity_NN_19_114, and_CC_20_121); conj(cavity_NN_19_114, swallowing_NN_22_137); nn(swallowing_NN_22_137, orchestrate_NN_21_125); det(bolus_NN_25_155, a_DT_24_153); prep(bolus_NN_25_155, of_IN_26_161); pobj(of_IN_26_161, food_NN_27_164); advmod(reaches_VBZ_28_169, when_WRB_23_148); nsubj(reaches_VBZ_28_169, bolus_NN_25_155); dobj(reaches_VBZ_28_169, pharynx_NN_30_181); det(pharynx_NN_30_181, the_DT_29_177) Template {rel} {arg1} dobj> {arg2} 0.1443 food ;;; food_NN_15_93 enters ;;; enters_VBZ_16_98 the oral cavity and orchestrate swallowing ;;; the_DT_17_105; oral_JJ_18_109; cavity_NN_19_114; and_CC_20_121; orchestrate_NN_21_125; swallowing_NN_22_137 0.14430 when_a bolus of food reaches the pharynx_23_30 None 1 pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Hatch ;;; Hatch_NNP_6_38 worked as ;;; worked_VBD_7_44 an Attorney ;;; an_DT_9_54; Attorney_NNP_10_57 0.73450 None None 0 pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Hatch ;;; Hatch_NNP_6_38 worked at ;;; worked_VBD_7_44 law ;;; law_NN_12_69 0.73450 None None 1 pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Hatch ;;; Hatch_NNP_6_38 worked for ;;; worked_VBD_7_44 fourteen years ;;; fourteen_CD_1_4; years_NN_2_13 0.73450 None None 1 pobj(For_IN_0_0, years_NNS_2_13); num(years_NNS_2_13, fourteen_CD_1_4); prep(years_NNS_2_13, after_IN_3_19); pobj(after_IN_3_19, graduating_NN_4_25); prep(worked_VBD_7_44, For_IN_0_0); punct(worked_VBD_7_44, ,_,_5_36); nsubj(worked_VBD_7_44, Hatch_NNP_6_38); prep(worked_VBD_7_44, as_IN_8_51); prep(worked_VBD_7_44, at_IN_11_66); punct(worked_VBD_7_44, ._._17_96); pobj(as_IN_8_51, Attorney_NNP_10_57); det(Attorney_NNP_10_57, an_DT_9_54); pobj(at_IN_11_66, law_NN_12_69); prep(law_NN_12_69, in_IN_13_73); pobj(in_IN_13_73, Pittsburgh_NNP_14_76); cc(Pittsburgh_NNP_14_76, and_CC_15_87); conj(Pittsburgh_NNP_14_76, Utah_NNP_16_91) Template {rel} in {arg1} prep_at> {arg2} 0.0083 Hatch ;;; Hatch_NNP_6_38 worked in ;;; worked_VBD_7_44 law ;;; law_NN_12_69 0.00830 None None 1 pobj(For_IN_0_0, animals_NNS_3_21); amod(animals_NNS_3_21, most_JJS_1_4); amod(animals_NNS_3_21, terrestrial_JJ_2_9); det(rate_NN_8_49, the_DT_5_31); amod(rate_NN_8_49, average_JJ_6_35); amod(rate_NN_8_49, daily_JJ_7_43); prep(rate_NN_8_49, of_IN_9_54); pobj(of_IN_9_54, consumption_NN_11_64); nn(consumption_NN_11_64, energy_NN_10_57); number(times_NNS_16_86, 2_CD_13_79); dep(times_NNS_16_86, to_TO_14_81); number(times_NNS_16_86, 4_CD_15_84); prep(BMR_NNP_17_92, For_IN_0_0); punct(BMR_NNP_17_92, ,_,_4_29); nsubj(BMR_NNP_17_92, rate_NN_8_49); cop(BMR_NNP_17_92, is_VBZ_12_76); num(BMR_NNP_17_92, times_NNS_16_86); punct(BMR_NNP_17_92, ._._18_96) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0724 the average daily rate of energy consumption ;;; the_DT_5_31; average_JJ_6_35; daily_JJ_7_43; rate_NN_8_49; of_IN_9_54; energy_NN_10_57; consumption_NN_11_64 is 2 to 4 times BMR for ;;; is_VBZ_12_76; 2_CD_13_79; to_TO_14_81; 4_CD_15_84; times_NN_16_86; BMR_NNP_17_92 most terrestrial animals ;;; most_JJ_1_4; terrestrial_JJ_2_9; animals_NN_3_21 0.07240 None None 1 pobj(For_IN_0_0, animals_NNS_3_21); amod(animals_NNS_3_21, most_JJS_1_4); amod(animals_NNS_3_21, terrestrial_JJ_2_9); det(rate_NN_8_49, the_DT_5_31); amod(rate_NN_8_49, average_JJ_6_35); amod(rate_NN_8_49, daily_JJ_7_43); prep(rate_NN_8_49, of_IN_9_54); pobj(of_IN_9_54, consumption_NN_11_64); nn(consumption_NN_11_64, energy_NN_10_57); number(times_NNS_16_86, 2_CD_13_79); dep(times_NNS_16_86, to_TO_14_81); number(times_NNS_16_86, 4_CD_15_84); prep(BMR_NNP_17_92, For_IN_0_0); punct(BMR_NNP_17_92, ,_,_4_29); nsubj(BMR_NNP_17_92, rate_NN_8_49); cop(BMR_NNP_17_92, is_VBZ_12_76); num(BMR_NNP_17_92, times_NNS_16_86); punct(BMR_NNP_17_92, ._._18_96) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 2 to 4 times BMR ;;; 2_CD_13_79; to_TO_14_81; 4_CD_15_84; times_NN_16_86; BMR_NNP_17_92 be the average daily rate of ;;; the_DT_5_31; average_JJ_6_35; daily_JJ_7_43; rate_NN_8_49 energy consumption ;;; energy_NN_10_57; consumption_NN_11_64 0.04770 None None 1 pobj(For_IN_0_0, animals_NNS_3_21); amod(animals_NNS_3_21, most_JJS_1_4); amod(animals_NNS_3_21, terrestrial_JJ_2_9); det(rate_NN_8_49, the_DT_5_31); amod(rate_NN_8_49, average_JJ_6_35); amod(rate_NN_8_49, daily_JJ_7_43); prep(rate_NN_8_49, of_IN_9_54); pobj(of_IN_9_54, consumption_NN_11_64); nn(consumption_NN_11_64, energy_NN_10_57); number(times_NNS_16_86, 2_CD_13_79); dep(times_NNS_16_86, to_TO_14_81); number(times_NNS_16_86, 4_CD_15_84); prep(BMR_NNP_17_92, For_IN_0_0); punct(BMR_NNP_17_92, ,_,_4_29); nsubj(BMR_NNP_17_92, rate_NN_8_49); cop(BMR_NNP_17_92, is_VBZ_12_76); num(BMR_NNP_17_92, times_NNS_16_86); punct(BMR_NNP_17_92, ._._18_96) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 the average daily rate of energy consumption ;;; the_DT_5_31; average_JJ_6_35; daily_JJ_7_43; rate_NN_8_49; of_IN_9_54; energy_NN_10_57; consumption_NN_11_64 is ;;; is_VBZ_12_76 2 to 4 times BMR ;;; 2_CD_13_79; to_TO_14_81; 4_CD_15_84; times_NN_16_86; BMR_NNP_17_92 0.00840 None None 1 pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the mining company ;;; the_DT_5_22; mining_NN_6_26; company_NN_7_33 posted a 40 % drop in profit for ;;; posted_VBD_8_41; a_DT_9_48; 40_CD_10_50; %_NN_11_53; drop_NN_12_55; in_IN_13_60; profit_NN_14_63 the nine months ;;; the_DT_1_4; nine_CD_2_8; months_NN_3_13 0.73450 None None 0 pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the mining company ;;; the_DT_5_22; mining_NN_6_26; company_NN_7_33 posted a 40 % drop in profit on ;;; posted_VBD_8_41; a_DT_9_48; 40_CD_10_50; %_NN_11_53; drop_NN_12_55; in_IN_13_60; profit_NN_14_63 a 6 % rise ;;; a_DT_38_159; 6_CD_39_161; %_NN_40_163; rise_NN_41_165 0.73450 None None 1 pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) Template {rel} {arg1} dobj> {arg2} 0.3797 the mining company ;;; the_DT_5_22; mining_NN_6_26; company_NN_7_33 posted ;;; posted_VBD_8_41 a 40 % drop ;;; a_DT_9_48; 40_CD_10_50; %_NN_11_53; drop_NN_12_55 0.37970 None None 0 pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) Template {rel} in {arg1} prep_on> {arg2} 0.0371 the mining company ;;; the_DT_5_22; mining_NN_6_26; company_NN_7_33 posted a 40 % drop in profit in ;;; posted_VBD_8_41; a_DT_9_48; 40_CD_10_50; %_NN_11_53; drop_NN_12_55; in_IN_13_60; profit_NN_14_63 a 6 % rise ;;; a_DT_38_159; 6_CD_39_161; %_NN_40_163; rise_NN_41_165 0.03710 None None 1 pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 a 40 % drop ;;; a_DT_9_48; 40_CD_10_50; %_NN_11_53; drop_NN_12_55 be posted for ;;; posted_VBD_8_41 the nine months ;;; the_DT_1_4; nine_CD_2_8; months_NN_3_13 0.01550 None None 0 pobj(For_IN_0_0, months_NNS_3_13); det(months_NNS_3_13, the_DT_1_4); num(months_NNS_3_13, nine_CD_2_8); det(company_NN_7_33, the_DT_5_22); nn(company_NN_7_33, mining_NN_6_26); prep(posted_VBD_8_41, For_IN_0_0); punct(posted_VBD_8_41, ,_,_4_20); nsubj(posted_VBD_8_41, company_NN_7_33); dobj(posted_VBD_8_41, drop_NN_12_55); prep(posted_VBD_8_41, to_TO_15_70); prep(posted_VBD_8_41, from_IN_26_112); punct(posted_VBD_8_41, ,_,_36_154); prep(posted_VBD_8_41, on_IN_37_156); punct(posted_VBD_8_41, ._._52_221); dep(%_NN_11_53, 40_CD_10_50); det(drop_NN_12_55, a_DT_9_48); amod(drop_NN_12_55, %_NN_11_53); prep(drop_NN_12_55, in_IN_13_60); pobj(in_IN_13_60, profit_NN_14_63); pobj(to_TO_15_70, $_$_16_73); number($_$_16_73, 30.1_CD_17_75); number($_$_16_73, million_CD_18_80); punct($_$_16_73, ,_,_19_88); cc($_$_16_73, or_CC_20_90); conj($_$_16_73, cents_NNS_22_96); punct($_$_16_73, ,_,_25_110); num(cents_NNS_22_96, 31_CD_21_93); dep(cents_NNS_22_96, share_NN_24_104); det(share_NN_24_104, a_DT_23_102); pobj(from_IN_26_112, $_$_27_117); number($_$_27_117, 50.6_CD_28_119); number($_$_27_117, million_CD_29_124); punct($_$_27_117, ,_,_30_132); cc($_$_27_117, or_CC_31_134); conj($_$_27_117, cents_NNS_33_140); num(cents_NNS_33_140, 52_CD_32_137); dep(cents_NNS_33_140, share_NN_35_148); det(share_NN_35_148, a_DT_34_146); pobj(on_IN_37_156, rise_NN_41_165); dep(%_NN_40_163, 6_CD_39_161); det(rise_NN_41_165, a_DT_38_159); amod(rise_NN_41_165, %_NN_40_163); prep(rise_NN_41_165, in_IN_42_170); prep(rise_NN_41_165, to_TO_44_181); prep(rise_NN_41_165, from_IN_48_200); pobj(in_IN_42_170, revenue_NN_43_173); pobj(to_TO_44_181, $_$_45_184); number($_$_45_184, 323.2_CD_46_186); number($_$_45_184, million_CD_47_192); pobj(from_IN_48_200, $_$_49_205); number($_$_49_205, 305.7_CD_50_207); number($_$_49_205, million_CD_51_213) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 a 40 % drop ;;; a_DT_9_48; 40_CD_10_50; %_NN_11_53; drop_NN_12_55 be posted on ;;; posted_VBD_8_41 a 6 % rise ;;; a_DT_38_159; 6_CD_39_161; %_NN_40_163; rise_NN_41_165 0.01550 None None 1 nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) Template {rel} {arg1} dobj> {arg2} 0.1473 owners ;;; owners_NN_2_10 should return ;;; should_MD_3_17; return_VB_4_24 the cars ;;; the_DT_5_31; cars_NN_6_35 0.14730 None Ford_said_0_0_1_1 1 nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 owners ;;; owners_NN_2_10 should return the cars to ;;; should_MD_3_17; return_VB_4_24; the_DT_5_31; cars_NN_6_35 dealers ;;; dealers_NN_8_43 0.13490 None Ford_said_0_0_1_1 1 nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 the cars ;;; the_DT_5_31; cars_NN_6_35 should be return to ;;; should_MD_3_17; return_VB_4_24 dealers ;;; dealers_NN_8_43 0.01320 None Ford_said_0_0_1_1 0 nsubj(said_VBD_1_5, Ford_NNP_0_0); ccomp(said_VBD_1_5, return_VB_4_24); punct(said_VBD_1_5, ._._18_110); nsubj(return_VB_4_24, owners_NNS_2_10); aux(return_VB_4_24, should_MD_3_17); dobj(return_VB_4_24, cars_NNS_6_35); prep(return_VB_4_24, to_TO_7_40); dep(return_VB_4_24, so_IN_9_51); dep(return_VB_4_24, removed_VBN_14_77); det(cars_NNS_6_35, the_DT_5_31); pobj(to_TO_7_40, dealers_NNS_8_43); det(windshields_NNS_11_58, the_DT_10_54); nsubjpass(removed_VBN_14_77, windshields_NNS_11_58); aux(removed_VBN_14_77, can_MD_12_70); auxpass(removed_VBN_14_77, be_VB_13_74); cc(removed_VBN_14_77, and_CC_15_85); conj(removed_VBN_14_77, reinstalled_VBN_17_98); advmod(reinstalled_VBN_17_98, securely_RB_16_89) Template {rel} of {arg1} ccomp> {slot0:postag=VB:regex=abide|accept|apologize|appoint|attend|be|betray|bring|cease|come|consider|continue|convict|count|damage|damn|decide|deliver|die|disarm|discuss|do|emerge|end|face|fit|get|give|go|guide|have|head|help|hold|issue|judge|know|lead|learn|leave|let|like|live|lose|make|meet|miss|need|place|play|pose|provide|pursue|put|receive|reign|remain|remind|return|review|say|see|sign|sit|speak|spend|stand|start|stay|stop|support|take|talk|teach|tell|try|turn|understand|veto|wait|want|win|withdraw} >nsubj> {arg2} 0.006 Ford ;;; Ford_NNP_0_0 said of ;;; said_VBD_1_5 owners ;;; owners_NN_2_10 0.00600 None None 1 amod(imaging_NN_2_17, Functional_JJ_0_0); nn(imaging_NN_2_17, brain_NN_1_11); nsubj(applied_VBN_5_34, imaging_NN_2_17); aux(applied_VBN_5_34, has_VBZ_3_25); auxpass(applied_VBN_5_34, been_VBN_4_29); prep(applied_VBN_5_34, to_TO_6_42); punct(applied_VBN_5_34, ,_,_14_90); cc(applied_VBN_5_34, and_CC_15_92); conj(applied_VBN_5_34, emotion_NN_16_96); punct(applied_VBN_5_34, ._._17_104); pobj(to_TO_6_42, study_NN_8_49); det(study_NN_8_49, the_DT_7_45); prep(study_NN_8_49, of_IN_9_55); pobj(of_IN_9_55, cognition_NN_11_64); amod(cognition_NN_11_64, human_JJ_10_58); punct(cognition_NN_11_64, ,_,_12_74); conj(cognition_NN_11_64, consciousness_NN_13_76) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 Functional brain imaging ;;; Functional_JJ_0_0; brain_NN_1_11; imaging_NN_2_17 has been applied to ;;; has_VBZ_3_25; been_VBN_4_29; applied_VBN_5_34 the study of human cognition ;;; the_DT_7_45; study_NN_8_49; of_IN_9_55; human_JJ_10_58; cognition_NN_11_64 0.04440 None None 0 amod(imaging_NN_2_17, Functional_JJ_0_0); nn(imaging_NN_2_17, brain_NN_1_11); nsubj(applied_VBN_5_34, imaging_NN_2_17); aux(applied_VBN_5_34, has_VBZ_3_25); auxpass(applied_VBN_5_34, been_VBN_4_29); prep(applied_VBN_5_34, to_TO_6_42); punct(applied_VBN_5_34, ,_,_14_90); cc(applied_VBN_5_34, and_CC_15_92); conj(applied_VBN_5_34, emotion_NN_16_96); punct(applied_VBN_5_34, ._._17_104); pobj(to_TO_6_42, study_NN_8_49); det(study_NN_8_49, the_DT_7_45); prep(study_NN_8_49, of_IN_9_55); pobj(of_IN_9_55, cognition_NN_11_64); amod(cognition_NN_11_64, human_JJ_10_58); punct(cognition_NN_11_64, ,_,_12_74); conj(cognition_NN_11_64, consciousness_NN_13_76) Template be {rel} {prep} {arg1} dobj> {arg2} 0.3797 small dinosaurs ;;; small_JJ_36_211; dinosaurs_NN_37_217 may have had ;;; may_MD_38_227; have_VB_39_231; had_VBD_40_236 difficulty ;;; difficulty_NN_41_240 0.37970 None None 1 advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) Template {rel} {arg1} dobj> {arg2} 0.0577 paleontologists ;;; paleontologists_NN_2_14 Furthermore have found ;;; Furthermore_RB_0_0; have_VBP_3_30; found_VBN_4_35 fossils of dinosaurs ;;; fossils_NN_5_41; of_IN_6_49; dinosaurs_NN_7_52 0.05770 although_the climate in these areas was milder when dinosaurs existed than it is today , it was cool enough that small dinosaurs may have had difficulty maintaining a high body temperature through ectothermy_15_48 None 1 advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 milder when dinosaurs existed than it is today , it was cool ;;; milder_NN_22_138; when_WRB_23_145; dinosaurs_NN_24_150; existed_VBD_25_160; than_IN_26_168; it_PRP_27_173; is_VBZ_28_176; today_NN_29_179; ,_,_30_185; it_PRP_31_187; was_VBD_32_190; cool_JJ_33_194 be the climate in ;;; the_DT_16_107; climate_NN_17_111 these areas ;;; these_DT_19_122; areas_NN_20_128 0.04770 None None 1 advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 it ;;; it_PRP_31_187 was enough ;;; was_VBD_32_190; enough_RB_34_199 cool ;;; cool_JJ_33_194 0.02160 None None 1 advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 the climate ;;; the_DT_16_107; climate_NN_17_111 was ;;; was_VBD_21_134 milder when dinosaurs existed than it is today , it was cool ;;; milder_NN_22_138; when_WRB_23_145; dinosaurs_NN_24_150; existed_VBD_25_160; than_IN_26_168; it_PRP_27_173; is_VBZ_28_176; today_NN_29_179; ,_,_30_185; it_PRP_31_187; was_VBD_32_190; cool_JJ_33_194 0.02160 None None 0 advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 it ;;; it_PRP_27_173 is ;;; is_VBZ_28_176 today ;;; today_NN_29_179 0.00840 None None 0 advmod(found_VBN_4_35, Furthermore_RB_0_0); punct(found_VBN_4_35, ,_,_1_12); nsubj(found_VBN_4_35, paleontologists_NNS_2_14); aux(found_VBN_4_35, have_VBP_3_30); dobj(found_VBN_4_35, fossils_NNS_5_41); punct(found_VBN_4_35, :_:_14_96); advcl(found_VBN_4_35, milder_NN_22_138); punct(found_VBN_4_35, ._._49_306); prep(fossils_NNS_5_41, of_IN_6_49); pobj(of_IN_6_49, dinosaurs_NNS_7_52); prep(dinosaurs_NNS_7_52, in_IN_8_62); pobj(in_IN_8_62, Antarctica_NNP_10_70); preconj(Antarctica_NNP_10_70, both_DT_9_65); cc(Antarctica_NNP_10_70, and_CC_11_81); conj(Antarctica_NNP_10_70, Arctic_NNP_13_89); det(Arctic_NNP_13_89, the_DT_12_85); det(climate_NN_17_111, the_DT_16_107); prep(climate_NN_17_111, in_IN_18_119); pobj(in_IN_18_119, areas_NNS_20_128); det(areas_NNS_20_128, these_DT_19_122); mark(milder_NN_22_138, although_IN_15_98); nsubj(milder_NN_22_138, climate_NN_17_111); cop(milder_NN_22_138, was_VBD_21_134); amod(milder_NN_22_138, cool_JJ_33_194); advmod(existed_VBD_25_160, when_WRB_23_145); nsubj(existed_VBD_25_160, dinosaurs_NNS_24_150); dep(existed_VBD_25_160, today_NN_29_179); mark(today_NN_29_179, than_IN_26_168); nsubj(today_NN_29_179, it_PRP_27_173); cop(today_NN_29_179, is_VBZ_28_176); dep(cool_JJ_33_194, existed_VBD_25_160); punct(cool_JJ_33_194, ,_,_30_185); nsubj(cool_JJ_33_194, it_PRP_31_187); cop(cool_JJ_33_194, was_VBD_32_190); advmod(cool_JJ_33_194, enough_RB_34_199); ccomp(cool_JJ_33_194, had_VBD_40_236); amod(dinosaurs_NNS_37_217, small_JJ_36_211); complm(had_VBD_40_236, that_IN_35_206); nsubj(had_VBD_40_236, dinosaurs_NNS_37_217); aux(had_VBD_40_236, may_MD_38_227); aux(had_VBD_40_236, have_VB_39_231); dobj(had_VBD_40_236, difficulty_NN_41_240); dep(difficulty_NN_41_240, maintaining_VBG_42_251); dobj(maintaining_VBG_42_251, temperature_NN_46_275); prep(maintaining_VBG_42_251, through_IN_47_287); det(temperature_NN_46_275, a_DT_43_263); amod(temperature_NN_46_275, high_JJ_44_265); nn(temperature_NN_46_275, body_NN_45_270); pobj(through_IN_47_287, ectothermy_NN_48_295) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 a high body temperature ;;; a_DT_43_263; high_JJ_44_265; body_NN_45_270; temperature_NN_46_275 be maintaining through ;;; maintaining_VBG_42_251 ectothermy ;;; ectothermy_NN_48_295 0.00790 None None 1 nn(Vogel_NNP_1_3, G._NNP_0_0); cc(Vogel_NNP_1_3, and_CC_2_9); conj(Vogel_NNP_1_3, Holden_NNP_4_16); punct(Vogel_NNP_1_3, ,_,_5_23); appos(Vogel_NNP_1_3, Field_NNP_6_25); nn(Holden_NNP_4_16, C._NNP_3_13); nsubj(leaps_VBZ_7_31, Vogel_NNP_1_3); advmod(leaps_VBZ_7_31, forward_RB_8_37); prep(leaps_VBZ_7_31, with_IN_9_45); punct(leaps_VBZ_7_31, ._._17_97); pobj(with_IN_9_45, advances_NNS_13_64); amod(advances_NNS_13_64, new_JJ_10_50); nn(advances_NNS_13_64, stem_NN_11_54); nn(advances_NNS_13_64, cell_NN_12_59); punct(advances_NNS_13_64, ,_,_14_73); appos(advances_NNS_13_64, Science_NNP_15_75); num(Science_NNP_15_75, 318:1224-1225_CD_16_83) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 G. Vogel and C. Holden ;;; G._NNP_0_0; Vogel_NNP_1_3; and_CC_2_9; C._NNP_3_13; Holden_NNP_4_16 leaps forward with ;;; leaps_VBZ_7_31; forward_RB_8_37 new stem cell advances ;;; new_JJ_10_50; stem_NN_11_54; cell_NN_12_59; advances_NN_13_64 0.24440 None None 1 nsubj(value_NN_4_17, GDP_NNP_0_0); cop(value_NN_4_17, is_VBZ_1_4); det(value_NN_4_17, the_DT_2_7); amod(value_NN_4_17, total_JJ_3_11); prep(value_NN_4_17, of_IN_5_23); punct(value_NN_4_17, ._._14_67); pobj(of_IN_5_23, output_NN_9_38); det(nation_NN_7_28, a_DT_6_26); possessive(nation_NN_7_28, 's_POS_8_35); poss(output_NN_9_38, nation_NN_7_28); prep(output_NN_9_38, of_IN_10_45); pobj(of_IN_10_45, goods_NNS_11_48); cc(goods_NNS_11_48, and_CC_12_54); conj(goods_NNS_11_48, services_NNS_13_58) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 GDP ;;; GDP_NNP_0_0 is the total value of ;;; is_VBZ_1_4; the_DT_2_7; total_JJ_3_11; value_NN_4_17 a nation 's output of goods ;;; a_DT_6_26; nation_NN_7_28; 's_POS_8_35; output_NN_9_38; of_IN_10_45; goods_NN_11_48 0.95550 None None 1 nsubj(value_NN_4_17, GDP_NNP_0_0); cop(value_NN_4_17, is_VBZ_1_4); det(value_NN_4_17, the_DT_2_7); amod(value_NN_4_17, total_JJ_3_11); prep(value_NN_4_17, of_IN_5_23); punct(value_NN_4_17, ._._14_67); pobj(of_IN_5_23, output_NN_9_38); det(nation_NN_7_28, a_DT_6_26); possessive(nation_NN_7_28, 's_POS_8_35); poss(output_NN_9_38, nation_NN_7_28); prep(output_NN_9_38, of_IN_10_45); pobj(of_IN_10_45, goods_NNS_11_48); cc(goods_NNS_11_48, and_CC_12_54); conj(goods_NNS_11_48, services_NNS_13_58) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 GDP ;;; GDP_NNP_0_0 is ;;; is_VBZ_1_4 the total value of a nation 's output of goods ;;; the_DT_2_7; total_JJ_3_11; value_NN_4_17; of_IN_5_23; a_DT_6_26; nation_NN_7_28; 's_POS_8_35; output_NN_9_38; of_IN_10_45; goods_NN_11_48 0.00840 None None 1 nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 a Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39 released in ;;; released_VBD_11_59 January 2002 ;;; January_NNP_13_71; 2002_CD_14_79 0.73450 None None 1 nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 a Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39 released on ;;; released_VBD_11_59 Columbia Records ;;; Columbia_NNP_16_87; Records_NNP_17_96 0.73450 None None 1 nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0724 Greatest Hits ;;; Greatest_NNP_0_0; Hits_NN_1_9 is a Best of compilation album by ;;; is_VBZ_2_14; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39 Will Smith ;;; Will_NNP_9_48; Smith_NNP_10_53 0.07240 None None 0 nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0724 Greatest Hits ;;; Greatest_NNP_0_0; Hits_NN_1_9 is a Best of ;;; is_VBZ_2_14; a_DT_3_17; Best_NNP_4_19 compilation album ;;; compilation_NN_6_27; album_NN_7_39 0.07240 None None 1 nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Greatest Hits ;;; Greatest_NNP_0_0; Hits_NN_1_9 is ;;; is_VBZ_2_14 a Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39 0.00840 None None 1 nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) Template {rel} {arg1} prep_in> {arg2} 0.0079 a Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39 released ;;; released_VBD_11_59 January 2002 ;;; January_NNP_13_71; 2002_CD_14_79 0.00790 None None 1 nn(Hits_NNS_1_9, Greatest_NNP_0_0); nsubj(Best_NNP_4_19, Hits_NNS_1_9); cop(Best_NNP_4_19, is_VBZ_2_14); det(Best_NNP_4_19, a_DT_3_17); prep(Best_NNP_4_19, of_IN_5_24); prep(Best_NNP_4_19, by_IN_8_45); pobj(of_IN_5_24, album_NN_7_39); nn(album_NN_7_39, compilation_NN_6_27); pobj(by_IN_8_45, Smith_NNP_10_53); nn(Smith_NNP_10_53, Will_NNP_9_48); nsubj(released_VBD_11_59, Best_NNP_4_19); prep(released_VBD_11_59, in_IN_12_68); prep(released_VBD_11_59, on_IN_15_84); punct(released_VBD_11_59, ._._18_104); pobj(in_IN_12_68, January_NNP_13_71); num(January_NNP_13_71, 2002_CD_14_79); pobj(on_IN_15_84, Records_NNPS_17_96); nn(Records_NNPS_17_96, Columbia_NNP_16_87) Template be {rel} in {arg1} prep_on> {arg2} 0.0058 a Best of compilation album ;;; a_DT_3_17; Best_NNP_4_19; of_IN_5_24; compilation_NN_6_27; album_NN_7_39 be released in ;;; released_VBD_11_59 Columbia Records ;;; Columbia_NNP_16_87; Records_NNP_17_96 0.00580 None None 1 nn(Billinghurst_NNP_1_10, Guillermo_NNP_0_0); nsubjpass(overthrown_VBN_3_27, Billinghurst_NNP_1_10); auxpass(overthrown_VBN_3_27, was_VBD_2_23); prep(overthrown_VBN_3_27, on_IN_4_38); punct(overthrown_VBN_3_27, ,_,_9_59); prep(overthrown_VBN_3_27, in_IN_10_61); punct(overthrown_VBN_3_27, ,_,_25_143); cc(overthrown_VBN_3_27, and_CC_26_145); conj(overthrown_VBN_3_27, members_NNS_28_163); punct(overthrown_VBN_3_27, ._._33_194); pobj(on_IN_4_38, February_NNP_5_41); num(February_NNP_5_41, 4_CD_6_50); punct(February_NNP_5_41, ,_,_7_52); num(February_NNP_5_41, 1914_CD_8_54); pobj(in_IN_10_61, coup_NN_13_75); det(coup_NN_13_75, a_DT_11_64); amod(coup_NN_13_75, military_JJ_12_66); partmod(coup_NN_13_75, headed_VBN_14_80); prep(headed_VBN_14_80, by_IN_15_87); pobj(by_IN_15_87, Benavides_NNP_19_107); nn(Benavides_NNP_19_107, colonel_NN_16_90); nn(Benavides_NNP_19_107, Oscar_NNP_17_98); nn(Benavides_NNP_19_107, R._NNP_18_104); punct(Benavides_NNP_19_107, ,_,_20_117); conj(Benavides_NNP_19_107, Javier_NNP_21_119); cc(Benavides_NNP_19_107, and_CC_22_126); conj(Benavides_NNP_19_107, Prado_NNP_24_137); nn(Prado_NNP_24_137, Manuel_NNP_23_130); nn(members_NNS_28_163, conservatives_NNS_27_149); prep(members_NNS_28_163, of_IN_29_171); pobj(of_IN_29_171, Party_NNP_32_188); det(Party_NNP_32_188, the_DT_30_174); nn(Party_NNP_32_188, Civilista_NNP_31_178) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Guillermo Billinghurst ;;; Guillermo_NNP_0_0; Billinghurst_NNP_1_10 was overthrown in ;;; was_VBD_2_23; overthrown_VBN_3_27 a military coup headed by colonel Oscar R. Benavides , Javier and Manuel Prado ;;; a_DT_11_64; military_JJ_12_66; coup_NN_13_75; headed_VBN_14_80; by_IN_15_87; colonel_NN_16_90; Oscar_NNP_17_98; R._NNP_18_104; Benavides_NNP_19_107; ,_,_20_117; Javier_NNP_21_119; and_CC_22_126; Manuel_NNP_23_130; Prado_NNP_24_137 1.00000 None None 1 nn(Billinghurst_NNP_1_10, Guillermo_NNP_0_0); nsubjpass(overthrown_VBN_3_27, Billinghurst_NNP_1_10); auxpass(overthrown_VBN_3_27, was_VBD_2_23); prep(overthrown_VBN_3_27, on_IN_4_38); punct(overthrown_VBN_3_27, ,_,_9_59); prep(overthrown_VBN_3_27, in_IN_10_61); punct(overthrown_VBN_3_27, ,_,_25_143); cc(overthrown_VBN_3_27, and_CC_26_145); conj(overthrown_VBN_3_27, members_NNS_28_163); punct(overthrown_VBN_3_27, ._._33_194); pobj(on_IN_4_38, February_NNP_5_41); num(February_NNP_5_41, 4_CD_6_50); punct(February_NNP_5_41, ,_,_7_52); num(February_NNP_5_41, 1914_CD_8_54); pobj(in_IN_10_61, coup_NN_13_75); det(coup_NN_13_75, a_DT_11_64); amod(coup_NN_13_75, military_JJ_12_66); partmod(coup_NN_13_75, headed_VBN_14_80); prep(headed_VBN_14_80, by_IN_15_87); pobj(by_IN_15_87, Benavides_NNP_19_107); nn(Benavides_NNP_19_107, colonel_NN_16_90); nn(Benavides_NNP_19_107, Oscar_NNP_17_98); nn(Benavides_NNP_19_107, R._NNP_18_104); punct(Benavides_NNP_19_107, ,_,_20_117); conj(Benavides_NNP_19_107, Javier_NNP_21_119); cc(Benavides_NNP_19_107, and_CC_22_126); conj(Benavides_NNP_19_107, Prado_NNP_24_137); nn(Prado_NNP_24_137, Manuel_NNP_23_130); nn(members_NNS_28_163, conservatives_NNS_27_149); prep(members_NNS_28_163, of_IN_29_171); pobj(of_IN_29_171, Party_NNP_32_188); det(Party_NNP_32_188, the_DT_30_174); nn(Party_NNP_32_188, Civilista_NNP_31_178) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Guillermo Billinghurst ;;; Guillermo_NNP_0_0; Billinghurst_NNP_1_10 was overthrown on ;;; was_VBD_2_23; overthrown_VBN_3_27 February 4 , 1914 ;;; February_NNP_5_41; 4_CD_6_50; ,_,_7_52; 1914_CD_8_54 1.00000 None None 1 nn(Billinghurst_NNP_1_10, Guillermo_NNP_0_0); nsubjpass(overthrown_VBN_3_27, Billinghurst_NNP_1_10); auxpass(overthrown_VBN_3_27, was_VBD_2_23); prep(overthrown_VBN_3_27, on_IN_4_38); punct(overthrown_VBN_3_27, ,_,_9_59); prep(overthrown_VBN_3_27, in_IN_10_61); punct(overthrown_VBN_3_27, ,_,_25_143); cc(overthrown_VBN_3_27, and_CC_26_145); conj(overthrown_VBN_3_27, members_NNS_28_163); punct(overthrown_VBN_3_27, ._._33_194); pobj(on_IN_4_38, February_NNP_5_41); num(February_NNP_5_41, 4_CD_6_50); punct(February_NNP_5_41, ,_,_7_52); num(February_NNP_5_41, 1914_CD_8_54); pobj(in_IN_10_61, coup_NN_13_75); det(coup_NN_13_75, a_DT_11_64); amod(coup_NN_13_75, military_JJ_12_66); partmod(coup_NN_13_75, headed_VBN_14_80); prep(headed_VBN_14_80, by_IN_15_87); pobj(by_IN_15_87, Benavides_NNP_19_107); nn(Benavides_NNP_19_107, colonel_NN_16_90); nn(Benavides_NNP_19_107, Oscar_NNP_17_98); nn(Benavides_NNP_19_107, R._NNP_18_104); punct(Benavides_NNP_19_107, ,_,_20_117); conj(Benavides_NNP_19_107, Javier_NNP_21_119); cc(Benavides_NNP_19_107, and_CC_22_126); conj(Benavides_NNP_19_107, Prado_NNP_24_137); nn(Prado_NNP_24_137, Manuel_NNP_23_130); nn(members_NNS_28_163, conservatives_NNS_27_149); prep(members_NNS_28_163, of_IN_29_171); pobj(of_IN_29_171, Party_NNP_32_188); det(Party_NNP_32_188, the_DT_30_174); nn(Party_NNP_32_188, Civilista_NNP_31_178) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 a military coup ;;; a_DT_11_64; military_JJ_12_66; coup_NN_13_75 be headed by ;;; headed_VBN_14_80 colonel Oscar R. Benavides , Javier and Manuel Prado ;;; colonel_NN_16_90; Oscar_NNP_17_98; R._NNP_18_104; Benavides_NNP_19_107; ,_,_20_117; Javier_NNP_21_119; and_CC_22_126; Manuel_NNP_23_130; Prado_NNP_24_137 0.11100 None None 1 punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) Template {rel} {arg1} dobj> {arg2} 0.1473 it ;;; it_PRP_21_121 would fill ;;; would_MD_22_124; fill_VB_23_130 a gap ;;; a_DT_24_135; gap_NN_25_137 0.14730 None None 1 punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 it ;;; it_PRP_12_61 is particularly interested in ;;; is_VBZ_13_64; particularly_RB_14_67; interested_JJ_15_80 Tesoro 's refinery ;;; Tesoro_NNP_17_94; 's_POS_18_101; refinery_NN_19_104 0.04780 because_it would fill a gap in its business_20_28 None 0 punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 it ;;; it_PRP_12_61 is particularly ;;; is_VBZ_13_64; particularly_RB_14_67 interested ;;; interested_JJ_15_80 0.00840 None None 1 punct(Harken_NNP_0_0, ,_,_1_7); rcmod(Harken_NNP_0_0, owns_VBZ_3_15); punct(Harken_NNP_0_0, ,_,_9_50); nsubj(owns_VBZ_3_15, which_WDT_2_9); dobj(owns_VBZ_3_15, stations_NNS_8_41); quantmod(800_CD_5_26, about_IN_4_20); num(stations_NNS_8_41, 800_CD_5_26); amod(stations_NNS_8_41, retail_JJ_6_30); nn(stations_NNS_8_41, gas_NN_7_37); nsubj(said_VBD_11_56, Harken_NNP_0_0); aux(said_VBD_11_56, has_VBZ_10_52); ccomp(said_VBD_11_56, interested_JJ_15_80); punct(said_VBD_11_56, ._._29_157); nsubj(interested_JJ_15_80, it_PRP_12_61); cop(interested_JJ_15_80, is_VBZ_13_64); advmod(interested_JJ_15_80, particularly_RB_14_67); prep(interested_JJ_15_80, in_IN_16_91); advcl(interested_JJ_15_80, fill_VB_23_130); pobj(in_IN_16_91, refinery_NN_19_104); possessive(Tesoro_NNP_17_94, 's_POS_18_101); poss(refinery_NN_19_104, Tesoro_NNP_17_94); mark(fill_VB_23_130, because_IN_20_113); nsubj(fill_VB_23_130, it_PRP_21_121); aux(fill_VB_23_130, would_MD_22_124); dobj(fill_VB_23_130, gap_NN_25_137); det(gap_NN_25_137, a_DT_24_135); prep(gap_NN_25_137, in_IN_26_141); pobj(in_IN_26_141, business_NN_28_148); poss(business_NN_28_148, its_PRP$_27_144) Template be {rel} by {arg1} nn> {arg2:postag=NNP} 0.1492 Rexford Tugwell ;;; Rexford_NNP_7_40; Tugwell_NNP_8_48 be planner of ;;; planner_NN_6_32 New Deal brain trust ;;; New_NNP_2_11; Deal_NNP_3_15; brain_NN_4_20; trust_NN_5_26 0.14920 None None 1 aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) Template be {rel} of {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|book|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceo|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|co-author|co-chair|co-creator|co-editor|co-founder|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editor-at-large|editor-in-chief|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|goddess|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|home|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|island|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journal|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|mascot|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moon|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaper|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|president-elect|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publication|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|secretary-general|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburb|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unit|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nn> {arg2:postag=NNP} 0.1492 trust planner Rexford Tugwell ;;; trust_NN_5_26; planner_NN_6_32; Rexford_NNP_7_40; Tugwell_NNP_8_48 be brain of ;;; brain_NN_4_20 New Deal ;;; New_NNP_2_11; Deal_NNP_3_15 0.14920 None None 1 aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) Template be {rel} for {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|baseman|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choice|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|extension|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|framework|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nn> {arg2:postag=NNP} 0.0162 Rexford Tugwell ;;; Rexford_NNP_7_40; Tugwell_NNP_8_48 be planner for ;;; planner_NN_6_32 New Deal brain trust ;;; New_NNP_2_11; Deal_NNP_3_15; brain_NN_4_20; trust_NN_5_26 0.01620 None None 0 aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) Template be {rel} for {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|baseman|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choice|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|extension|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|framework|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nn> {arg2:postag=NNP} 0.0162 trust planner Rexford Tugwell ;;; trust_NN_5_26; planner_NN_6_32; Rexford_NNP_7_40; Tugwell_NNP_8_48 be brain for ;;; brain_NN_4_20 New Deal ;;; New_NNP_2_11; Deal_NNP_3_15 0.01620 None None 1 aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0104 he ;;; he_PRP_14_76 collaborate in ;;; collaborate_VB_25_126 the design of post-war modern Puerto Rico ;;; the_DT_27_141; design_NN_28_145; of_IN_29_152; post-war_JJ_30_155; modern_JJ_31_164; Puerto_NNP_32_171; Rico_NNP_33_178 0.01040 None None 0 aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0104 he ;;; he_PRP_14_76 to move in ;;; to_TO_17_91; move_VB_18_94 1944 ;;; 1944_CD_23_117 0.01040 None None 1 aux(met_VBN_1_7, Having_VBG_0_0); dobj(met_VBN_1_7, Tugwell_NNP_8_48); prep(met_VBN_1_7, in_IN_9_56); nn(Tugwell_NNP_8_48, New_NNP_2_11); nn(Tugwell_NNP_8_48, Deal_NNP_3_15); nn(Tugwell_NNP_8_48, brain_NN_4_20); nn(Tugwell_NNP_8_48, trust_NN_5_26); nn(Tugwell_NNP_8_48, planner_NN_6_32); nn(Tugwell_NNP_8_48, Rexford_NNP_7_40); pobj(in_IN_9_56, 1930s_NNS_12_68); det(1930s_NNS_12_68, the_DT_10_59); amod(1930s_NNS_12_68, late_JJ_11_63); dep(invited_VBN_16_83, met_VBN_1_7); punct(invited_VBN_16_83, ,_,_13_74); nsubjpass(invited_VBN_16_83, he_PRP_14_76); auxpass(invited_VBN_16_83, was_VBD_15_79); xcomp(invited_VBN_16_83, move_VB_18_94); punct(invited_VBN_16_83, ._._34_183); aux(move_VB_18_94, to_TO_17_91); prep(move_VB_18_94, to_TO_19_99); prep(move_VB_18_94, in_IN_22_114); cc(move_VB_18_94, and_CC_24_122); conj(move_VB_18_94, collaborate_VB_25_126); pobj(to_TO_19_99, Rico_NNP_21_109); nn(Rico_NNP_21_109, Puerto_NNP_20_102); pobj(in_IN_22_114, 1944_CD_23_117); prep(collaborate_VB_25_126, in_IN_26_138); pobj(in_IN_26_138, design_NN_28_145); det(design_NN_28_145, the_DT_27_141); prep(design_NN_28_145, of_IN_29_152); pobj(of_IN_29_152, Rico_NNP_33_178); amod(Rico_NNP_33_178, post-war_JJ_30_155); amod(Rico_NNP_33_178, modern_JJ_31_164); nn(Rico_NNP_33_178, Puerto_NNP_32_171) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0104 he ;;; he_PRP_14_76 to move to ;;; to_TO_17_91; move_VB_18_94 Puerto Rico ;;; Puerto_NNP_20_102; Rico_NNP_21_109 0.01040 None None 1 nsubj(scored_VBD_2_8, He_PRP_0_0); advmod(scored_VBD_2_8, also_RB_1_3); dobj(scored_VBD_2_8, try_NN_7_39); punct(scored_VBD_2_8, ._._18_107); cc(second_JJ_4_19, and_CC_5_26); conj(second_JJ_4_19, decisive_JJ_6_30); det(try_NN_7_39, the_DT_3_15); amod(try_NN_7_39, second_JJ_4_19); prep(try_NN_7_39, against_IN_8_43); pobj(against_IN_8_43, Munster_NNP_9_51); dep(Munster_NNP_9_51, retained_VBD_12_71); advmod(retained_VBD_12_71, when_WRB_10_59); nsubj(retained_VBD_12_71, Tigers_NNP_11_64); dobj(retained_VBD_12_71, cup_NN_14_84); det(cup_NN_14_84, the_DT_13_80); dep(cup_NN_14_84, year_NN_17_102); det(year_NN_17_102, the_DT_15_88); amod(year_NN_17_102, following_JJ_16_92) Template {rel} {arg1} dobj> {arg2} 0.3797 He ;;; He_PRP_0_0 also scored ;;; also_RB_1_3; scored_VBD_2_8 the second and decisive try ;;; the_DT_3_15; second_JJ_4_19; and_CC_5_26; decisive_JJ_6_30; try_NN_7_39 0.37970 None None 1 nsubj(scored_VBD_2_8, He_PRP_0_0); advmod(scored_VBD_2_8, also_RB_1_3); dobj(scored_VBD_2_8, try_NN_7_39); punct(scored_VBD_2_8, ._._18_107); cc(second_JJ_4_19, and_CC_5_26); conj(second_JJ_4_19, decisive_JJ_6_30); det(try_NN_7_39, the_DT_3_15); amod(try_NN_7_39, second_JJ_4_19); prep(try_NN_7_39, against_IN_8_43); pobj(against_IN_8_43, Munster_NNP_9_51); dep(Munster_NNP_9_51, retained_VBD_12_71); advmod(retained_VBD_12_71, when_WRB_10_59); nsubj(retained_VBD_12_71, Tigers_NNP_11_64); dobj(retained_VBD_12_71, cup_NN_14_84); det(cup_NN_14_84, the_DT_13_80); dep(cup_NN_14_84, year_NN_17_102); det(year_NN_17_102, the_DT_15_88); amod(year_NN_17_102, following_JJ_16_92) Template {rel} {arg1} dobj> {arg2} 0.3797 Tigers ;;; Tigers_NNP_11_64 retained ;;; retained_VBD_12_71 the cup ;;; the_DT_13_80; cup_NN_14_84 0.37970 None None 1 nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 began to practice law in ;;; began_VBD_1_3; to_TO_2_9; practice_VB_3_12; law_NN_4_21 Montgomery ;;; Montgomery_NNP_6_28 0.73450 None None 1 nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 He ;;; He_PRP_0_0 began to practice ;;; began_VBD_1_3; to_TO_2_9; practice_VB_3_12 law ;;; law_NN_4_21 0.37970 None None 1 nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) Template {rel} {arg1} dobj> {arg2} 0.0577 He ;;; He_PRP_0_0 was elected ;;; was_VBD_8_43; elected_VBN_9_47 a member of the Alabama House of Representatives ;;; a_DT_10_55; member_NN_11_57; of_IN_12_64; the_DT_13_67; Alabama_NNP_14_71; House_NNP_15_79; of_IN_16_85; Representatives_NNP_17_88 0.05770 None None 1 nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 He ;;; He_PRP_0_0 was elected a member of the Alabama House of Representatives in ;;; was_VBD_8_43; elected_VBN_9_47; a_DT_10_55; member_NN_11_57; of_IN_12_64; the_DT_13_67; Alabama_NNP_14_71; House_NNP_15_79; of_IN_16_85; Representatives_NNP_17_88 1826 ;;; 1826_CD_19_107 0.04440 None None 1 nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 He ;;; He_PRP_0_0 was elected a member of the Alabama House of Representatives until ;;; was_VBD_8_43; elected_VBN_9_47; a_DT_10_55; member_NN_11_57; of_IN_12_64; the_DT_13_67; Alabama_NNP_14_71; House_NNP_15_79; of_IN_16_85; Representatives_NNP_17_88 1828 ;;; 1828_CD_23_128 0.04440 None None 1 nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0195 He ;;; He_PRP_0_0 to practice ;;; to_TO_2_9; practice_VB_3_12 law ;;; law_NN_4_21 0.01950 None None 1 nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0181 He ;;; He_PRP_0_0 to practice law in ;;; to_TO_2_9; practice_VB_3_12; law_NN_4_21 Montgomery ;;; Montgomery_NNP_6_28 0.01810 None None 1 nsubj(began_VBD_1_3, He_PRP_0_0); xcomp(began_VBD_1_3, practice_VB_3_12); cc(began_VBD_1_3, and_CC_7_39); conj(began_VBD_1_3, elected_VBN_9_47); punct(began_VBD_1_3, ._._24_133); aux(practice_VB_3_12, to_TO_2_9); dobj(practice_VB_3_12, law_NN_4_21); prep(practice_VB_3_12, in_IN_5_25); pobj(in_IN_5_25, Montgomery_NNP_6_28); auxpass(elected_VBN_9_47, was_VBD_8_43); dobj(elected_VBN_9_47, member_NN_11_57); prep(elected_VBN_9_47, in_IN_18_104); punct(elected_VBN_9_47, ,_,_20_112); xcomp(elected_VBN_9_47, serving_VBG_21_114); prep(elected_VBN_9_47, until_IN_22_122); det(member_NN_11_57, a_DT_10_55); prep(member_NN_11_57, of_IN_12_64); pobj(of_IN_12_64, House_NNP_15_79); det(House_NNP_15_79, the_DT_13_67); nn(House_NNP_15_79, Alabama_NNP_14_71); prep(House_NNP_15_79, of_IN_16_85); pobj(of_IN_16_85, Representatives_NNPS_17_88); pobj(in_IN_18_104, 1826_CD_19_107); pobj(until_IN_22_122, 1828_CD_23_128) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 law ;;; law_NN_4_21 to be practice in ;;; to_TO_2_9; practice_VB_3_12 Montgomery ;;; Montgomery_NNP_6_28 0.01320 None None 1 nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 came in ;;; came_VBD_1_3 1980 ;;; 1980_CD_5_21 0.73450 None None 1 nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 came to ;;; came_VBD_1_3 Tehran ;;; Tehran_NNP_3_11 0.73450 None None 1 nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393 He ;;; He_PRP_0_0 continued studying traditional arrangements under ;;; continued_VBD_7_30; studying_VBG_8_40; traditional_JJ_9_49; arrangements_NN_10_61 Mohammad Reza Lotfi and his brother Pashang ;;; Mohammad_NNP_12_80; Reza_NNP_13_89; Lotfi_NNP_14_94; and_CC_15_100; his_PRP$_16_104; brother_NN_17_108; Pashang_NNP_18_116 0.03930 None None 1 nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) Template {rel} {arg1} dobj> {arg2} 0.0292 He ;;; He_PRP_0_0 continued studying ;;; continued_VBD_7_30; studying_VBG_8_40 traditional arrangements ;;; traditional_JJ_9_49; arrangements_NN_10_61 0.02920 None None 0 nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 traditional arrangements ;;; traditional_JJ_9_49; arrangements_NN_10_61 continued studying under ;;; continued_VBD_7_30; studying_VBG_8_40 Mohammad Reza Lotfi and his brother Pashang ;;; Mohammad_NNP_12_80; Reza_NNP_13_89; Lotfi_NNP_14_94; and_CC_15_100; his_PRP$_16_104; brother_NN_17_108; Pashang_NNP_18_116 0.00790 None None 0 nsubj(came_VBD_1_3, He_PRP_0_0); prep(came_VBD_1_3, to_TO_2_8); prep(came_VBD_1_3, in_IN_4_18); cc(came_VBD_1_3, and_CC_6_26); conj(came_VBD_1_3, studying_VBG_8_40); punct(came_VBD_1_3, ._._19_124); pobj(to_TO_2_8, Tehran_NNP_3_11); pobj(in_IN_4_18, 1980_CD_5_21); aux(studying_VBG_8_40, continued_VBD_7_30); dobj(studying_VBG_8_40, arrangements_NNS_10_61); prep(studying_VBG_8_40, under_IN_11_74); amod(arrangements_NNS_10_61, traditional_JJ_9_49); pobj(under_IN_11_74, Lotfi_NNP_14_94); nn(Lotfi_NNP_14_94, Mohammad_NNP_12_80); nn(Lotfi_NNP_14_94, Reza_NNP_13_89); cc(Lotfi_NNP_14_94, and_CC_15_100); conj(Lotfi_NNP_14_94, Pashang_NNP_18_116); poss(Pashang_NNP_18_116, his_PRP$_16_104); nn(Pashang_NNP_18_116, brother_NN_17_108) Template {rel} to {arg1} nsubj> {arg2} 0.0071 1980 ;;; 1980_CD_5_21 came to ;;; came_VBD_1_3 He ;;; He_PRP_0_0 0.00710 None None 1 nsubj(captured_VBD_1_3, He_PRP_0_0); dobj(captured_VBD_1_3, capital_NN_4_25); punct(captured_VBD_1_3, ,_,_7_45); prep(captured_VBD_1_3, before_IN_8_47); punct(captured_VBD_1_3, ._._15_92); det(capital_NN_4_25, the_DT_2_12); amod(capital_NN_4_25, Parthian_JJ_3_16); punct(capital_NN_4_25, ,_,_5_33); appos(capital_NN_4_25, Ctesiphon_NNP_6_35); pcomp(before_IN_8_47, sailing_VBG_9_54); dobj(sailing_VBG_9_54, downriver_NN_10_62); prep(sailing_VBG_9_54, to_TO_11_72); pobj(to_TO_11_72, Gulf_NNP_14_87); det(Gulf_NNP_14_87, the_DT_12_75); nn(Gulf_NNP_14_87, Persian_NNP_13_79) Template {rel} {arg1} dobj> {arg2} 0.3797 He ;;; He_PRP_0_0 captured ;;; captured_VBD_1_3 the Parthian capital ;;; the_DT_2_12; Parthian_JJ_3_16; capital_NN_4_25 0.37970 None None 0 nsubj(captured_VBD_1_3, He_PRP_0_0); dobj(captured_VBD_1_3, capital_NN_4_25); punct(captured_VBD_1_3, ,_,_7_45); prep(captured_VBD_1_3, before_IN_8_47); punct(captured_VBD_1_3, ._._15_92); det(capital_NN_4_25, the_DT_2_12); amod(capital_NN_4_25, Parthian_JJ_3_16); punct(capital_NN_4_25, ,_,_5_33); appos(capital_NN_4_25, Ctesiphon_NNP_6_35); pcomp(before_IN_8_47, sailing_VBG_9_54); dobj(sailing_VBG_9_54, downriver_NN_10_62); prep(sailing_VBG_9_54, to_TO_11_72); pobj(to_TO_11_72, Gulf_NNP_14_87); det(Gulf_NNP_14_87, the_DT_12_75); nn(Gulf_NNP_14_87, Persian_NNP_13_79) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 downriver ;;; downriver_NN_10_62 be sailing to ;;; sailing_VBG_9_54 the Persian Gulf ;;; the_DT_12_75; Persian_NNP_13_79; Gulf_NNP_14_87 0.00790 None None 1 nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 completed his move to Premier League side Fulham on 4 June 2008 for ;;; completed_VBD_1_3; his_PRP$_2_13; move_NN_3_17; to_TO_4_22; Premier_NNP_5_25; League_NNP_6_33; side_NN_7_40; Fulham_NNP_8_45; on_IN_9_52; 4_CD_10_55; June_NNP_11_57; 2008_CD_12_62 an undisclosed fee ;;; an_DT_20_94; undisclosed_JJ_21_97; fee_NN_22_109 0.73450 None None 1 nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 completed his move to Premier League side Fulham on 4 June 2008 on ;;; completed_VBD_1_3; his_PRP$_2_13; move_NN_3_17; to_TO_4_22; Premier_NNP_5_25; League_NNP_6_33; side_NN_7_40; Fulham_NNP_8_45; on_IN_9_52; 4_CD_10_55; June_NNP_11_57; 2008_CD_12_62 a two-year deal ;;; a_DT_15_72; two-year_JJ_16_74; deal_NN_17_83 0.73450 None None 1 nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) Template {rel} {arg1} dobj> {arg2} 0.3797 He ;;; He_PRP_0_0 completed ;;; completed_VBD_1_3 his move ;;; his_PRP$_2_13; move_NN_3_17 0.37970 None None 1 nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 his move ;;; his_PRP$_2_13; move_NN_3_17 be completed for ;;; completed_VBD_1_3 an undisclosed fee ;;; an_DT_20_94; undisclosed_JJ_21_97; fee_NN_22_109 0.01550 None None 1 nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 his move ;;; his_PRP$_2_13; move_NN_3_17 be completed on ;;; completed_VBD_1_3 a two-year deal ;;; a_DT_15_72; two-year_JJ_16_74; deal_NN_17_83 0.01550 None None 0 nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 He ;;; He_PRP_0_0 be his move on ;;; his_PRP$_2_13; move_NN_3_17 4 June 2008 ;;; 4_CD_10_55; June_NNP_11_57; 2008_CD_12_62 0.01190 None None 0 nsubj(completed_VBD_1_3, He_PRP_0_0); dobj(completed_VBD_1_3, move_NN_3_17); punct(completed_VBD_1_3, ,_,_13_67); prep(completed_VBD_1_3, on_IN_14_69); punct(completed_VBD_1_3, ,_,_18_88); prep(completed_VBD_1_3, for_IN_19_90); punct(completed_VBD_1_3, ._._23_113); poss(move_NN_3_17, his_PRP$_2_13); prep(move_NN_3_17, to_TO_4_22); prep(move_NN_3_17, on_IN_9_52); pobj(to_TO_4_22, Fulham_NNP_8_45); nn(Fulham_NNP_8_45, Premier_NNP_5_25); nn(Fulham_NNP_8_45, League_NNP_6_33); nn(Fulham_NNP_8_45, side_NN_7_40); pobj(on_IN_9_52, June_NNP_11_57); num(June_NNP_11_57, 4_CD_10_55); num(June_NNP_11_57, 2008_CD_12_62); pobj(on_IN_14_69, deal_NN_17_83); det(deal_NN_17_83, a_DT_15_72); amod(deal_NN_17_83, two-year_JJ_16_74); pobj(for_IN_19_90, fee_NN_22_109); det(fee_NN_22_109, an_DT_20_94); amod(fee_NN_22_109, undisclosed_JJ_21_97) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 He ;;; He_PRP_0_0 be his move to ;;; his_PRP$_2_13; move_NN_3_17 Premier League side Fulham ;;; Premier_NNP_5_25; League_NNP_6_33; side_NN_7_40; Fulham_NNP_8_45 0.01190 None None 1 nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 died in ;;; died_VBD_1_3 Washington ;;; Washington_NNP_3_11 0.73450 None None 1 nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 died on ;;; died_VBD_1_3 April 10 , 1907 ;;; April_NNP_7_31; 10_CD_8_37; ,_,_9_40; 1907_CD_10_42 0.73450 None None 1 nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 He ;;; He_PRP_0_0 was interred in ;;; was_VBD_12_51; interred_VBN_13_55 Lakeside Cemetery ;;; Lakeside_NNP_15_67; Cemetery_NNP_16_76 0.04440 None None 0 nsubj(died_VBD_1_3, He_PRP_0_0); prep(died_VBD_1_3, in_IN_2_8); prep(died_VBD_1_3, on_IN_6_28); cc(died_VBD_1_3, and_CC_11_47); conj(died_VBD_1_3, interred_VBN_13_55); punct(died_VBD_1_3, ._._22_107); pobj(in_IN_2_8, Washington_NNP_3_11); punct(Washington_NNP_3_11, ,_,_4_21); dep(Washington_NNP_3_11, D.C._NNP_5_23); pobj(on_IN_6_28, April_NNP_7_31); num(April_NNP_7_31, 10_CD_8_37); punct(April_NNP_7_31, ,_,_9_40); num(April_NNP_7_31, 1907_CD_10_42); auxpass(interred_VBN_13_55, was_VBD_12_51); prep(interred_VBN_13_55, in_IN_14_64); pobj(in_IN_14_64, Cemetery_NNP_16_76); nn(Cemetery_NNP_16_76, Lakeside_NNP_15_67); prep(Cemetery_NNP_16_76, in_IN_17_85); pobj(in_IN_17_85, Pond_NNP_19_95); nn(Pond_NNP_19_95, Bryant_NNP_18_88); punct(Pond_NNP_19_95, ,_,_20_99); appos(Pond_NNP_19_95, Maine_NNP_21_101) Template {rel} {arg1} prep_in> {arg2} 0.0079 He ;;; He_PRP_0_0 died ;;; died_VBD_1_3 Washington ;;; Washington_NNP_3_11 0.00790 None None 1 nsubj(made_VBN_2_7, He_PRP_0_0); aux(made_VBN_2_7, has_VBZ_1_3); dobj(made_VBN_2_7, trips_NNS_4_21); cc(made_VBN_2_7, and_CC_9_47); conj(made_VBN_2_7, met_VBD_11_56); punct(made_VBN_2_7, ,_,_19_101); amod(trips_NNS_4_21, frequent_JJ_3_12); prep(trips_NNS_4_21, to_TO_5_27); pobj(to_TO_5_27, Laos_NNP_6_30); cc(Laos_NNP_6_30, and_CC_7_35); conj(Laos_NNP_6_30, Vietnam_NNP_8_39); advmod(met_VBD_11_56, also_RB_10_51); prep(met_VBD_11_56, with_IN_12_60); pobj(with_IN_12_60, Lao_NNP_13_65); cc(Lao_NNP_13_65, and_CC_14_69); conj(Lao_NNP_13_65, leaders_NNS_16_84); prep(Lao_NNP_13_65, in_IN_17_92); amod(leaders_NNS_16_84, Vietnamese_JJ_15_73); pobj(in_IN_17_92, Hanoi_NNP_18_95); null(,_,_19_101, City_NNP_23_115); nn(City_NNP_23_115, Ho_NNP_20_103); nn(City_NNP_23_115, Chi_NNP_21_106); nn(City_NNP_23_115, Minh_NNP_22_110); punct(City_NNP_23_115, ,_,_24_120); conj(City_NNP_23_115, Jakarta_NNP_25_122); punct(City_NNP_23_115, ,_,_26_130); conj(City_NNP_23_115, York_NNP_28_136); punct(City_NNP_23_115, ,_,_31_153); cc(City_NNP_23_115, and_CC_32_155); conj(City_NNP_23_115, Paris_NNP_33_159); punct(City_NNP_23_115, ._._34_165); nn(York_NNP_28_136, New_NNP_27_132); punct(York_NNP_28_136, ,_,_29_141); conj(York_NNP_28_136, Vientiane_NNP_30_143) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 also met with ;;; also_RB_10_51; met_VBD_11_56 Lao and Vietnamese leaders ;;; Lao_NNP_13_65; and_CC_14_69; Vietnamese_JJ_15_73; leaders_NN_16_84 0.73450 None None 1 nsubj(made_VBN_2_7, He_PRP_0_0); aux(made_VBN_2_7, has_VBZ_1_3); dobj(made_VBN_2_7, trips_NNS_4_21); cc(made_VBN_2_7, and_CC_9_47); conj(made_VBN_2_7, met_VBD_11_56); punct(made_VBN_2_7, ,_,_19_101); amod(trips_NNS_4_21, frequent_JJ_3_12); prep(trips_NNS_4_21, to_TO_5_27); pobj(to_TO_5_27, Laos_NNP_6_30); cc(Laos_NNP_6_30, and_CC_7_35); conj(Laos_NNP_6_30, Vietnam_NNP_8_39); advmod(met_VBD_11_56, also_RB_10_51); prep(met_VBD_11_56, with_IN_12_60); pobj(with_IN_12_60, Lao_NNP_13_65); cc(Lao_NNP_13_65, and_CC_14_69); conj(Lao_NNP_13_65, leaders_NNS_16_84); prep(Lao_NNP_13_65, in_IN_17_92); amod(leaders_NNS_16_84, Vietnamese_JJ_15_73); pobj(in_IN_17_92, Hanoi_NNP_18_95); null(,_,_19_101, City_NNP_23_115); nn(City_NNP_23_115, Ho_NNP_20_103); nn(City_NNP_23_115, Chi_NNP_21_106); nn(City_NNP_23_115, Minh_NNP_22_110); punct(City_NNP_23_115, ,_,_24_120); conj(City_NNP_23_115, Jakarta_NNP_25_122); punct(City_NNP_23_115, ,_,_26_130); conj(City_NNP_23_115, York_NNP_28_136); punct(City_NNP_23_115, ,_,_31_153); cc(City_NNP_23_115, and_CC_32_155); conj(City_NNP_23_115, Paris_NNP_33_159); punct(City_NNP_23_115, ._._34_165); nn(York_NNP_28_136, New_NNP_27_132); punct(York_NNP_28_136, ,_,_29_141); conj(York_NNP_28_136, Vientiane_NNP_30_143) Template {rel} {arg1} dobj> {arg2} 0.0577 He ;;; He_PRP_0_0 has made ;;; has_VBZ_1_3; made_VBN_2_7 frequent trips ;;; frequent_JJ_3_12; trips_NN_4_21 0.05770 None None 1 nsubj(increases_VBZ_1_3, He_PRP_0_0); dobj(increases_VBZ_1_3, board_NN_3_17); prep(increases_VBZ_1_3, to_TO_4_23); punct(increases_VBZ_1_3, ._._6_32); det(board_NN_3_17, the_DT_2_13); pobj(to_TO_4_23, seven_CD_5_26) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 He ;;; He_PRP_0_0 increases the board to ;;; increases_VBZ_1_3; the_DT_2_13; board_NN_3_17 seven ;;; seven_CD_5_26 0.24440 None None 1 nsubj(increases_VBZ_1_3, He_PRP_0_0); dobj(increases_VBZ_1_3, board_NN_3_17); prep(increases_VBZ_1_3, to_TO_4_23); punct(increases_VBZ_1_3, ._._6_32); det(board_NN_3_17, the_DT_2_13); pobj(to_TO_4_23, seven_CD_5_26) Template {rel} {arg1} dobj> {arg2} 0.1443 He ;;; He_PRP_0_0 increases ;;; increases_VBZ_1_3 the board ;;; the_DT_2_13; board_NN_3_17 0.14430 None None 1 nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 played eleven seasons as ;;; played_VBD_1_3; eleven_CD_2_10; seasons_NN_3_17 an outfielder ;;; an_DT_8_42; outfielder_NN_9_45 0.73450 None None 1 nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 played eleven seasons in ;;; played_VBD_1_3; eleven_CD_2_10; seasons_NN_3_17 the majors ;;; the_DT_5_28; majors_NN_6_32 0.73450 None None 1 nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) Template {rel} {arg1} dobj> {arg2} 0.3797 He ;;; He_PRP_0_0 played ;;; played_VBD_1_3 eleven seasons ;;; eleven_CD_2_10; seasons_NN_3_17 0.37970 None None 1 nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 eleven seasons ;;; eleven_CD_2_10; seasons_NN_3_17 be played as ;;; played_VBD_1_3 an outfielder ;;; an_DT_8_42; outfielder_NN_9_45 0.01550 None None 1 nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 eleven seasons ;;; eleven_CD_2_10; seasons_NN_3_17 be played in ;;; played_VBD_1_3 the majors ;;; the_DT_5_28; majors_NN_6_32 0.01550 None None 1 nsubj(played_VBD_1_3, He_PRP_0_0); dobj(played_VBD_1_3, seasons_NNS_3_17); prep(played_VBD_1_3, in_IN_4_25); prep(played_VBD_1_3, as_IN_7_39); punct(played_VBD_1_3, ,_,_23_140); cc(played_VBD_1_3, and_CC_24_142); conj(played_VBD_1_3, Sox_NNPS_27_160); punct(played_VBD_1_3, ._._28_164); num(seasons_NNS_3_17, eleven_CD_2_10); pobj(in_IN_4_25, majors_NNS_6_32); det(majors_NNS_6_32, the_DT_5_28); pobj(as_IN_7_39, outfielder_NN_9_45); det(outfielder_NN_9_45, an_DT_8_42); prep(outfielder_NN_9_45, for_IN_10_56); pobj(for_IN_10_56, Braves_NNP_13_74); det(Braves_NNP_13_74, the_DT_11_60); nn(Braves_NNP_13_74, Milwaukee_NNP_12_64); punct(Braves_NNP_13_74, ,_,_14_81); conj(Braves_NNP_13_74, Astros_NNPS_16_91); punct(Braves_NNP_13_74, ,_,_17_98); conj(Braves_NNP_13_74, Indians_NNPS_19_110); punct(Braves_NNP_13_74, ,_,_20_118); conj(Braves_NNP_13_74, Senators_NNPS_22_131); nn(Astros_NNPS_16_91, Houston_NNP_15_83); nn(Indians_NNPS_19_110, Cleveland_NNP_18_100); nn(Senators_NNPS_22_131, Washington_NNP_21_120); nn(Sox_NNPS_27_160, Chicago_NNP_25_146); nn(Sox_NNPS_27_160, White_NNP_26_154) Template be {rel} {prep} {arg1} dobj> {arg2} 0.3797 He ;;; He_PRP_0_0 reached ;;; reached_VBD_1_3 the third round ;;; the_DT_2_11; third_JJ_3_15; round_NN_4_21 0.37970 None None 1 nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 he ;;; he_PRP_11_52 lost to Thai ;;; lost_VBD_12_55; to_TO_13_60; Thai_VB_14_63 Paradorn Srichaphan ;;; Paradorn_NNP_15_68; Srichaphan_NNP_16_77 0.37970 None None 0 nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0195 he ;;; he_PRP_11_52 to Thai ;;; to_TO_13_60; Thai_VB_14_63 Paradorn Srichaphan ;;; Paradorn_NNP_15_68; Srichaphan_NNP_16_77 0.01950 None None 0 nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 countryman Tommy Robredo ;;; countryman_NN_19_104; Tommy_NNP_20_115; Robredo_NNP_21_121 be defeating in ;;; defeating_VBG_18_94 the first round and Italian Davide Sanguinetti ;;; the_DT_23_132; first_JJ_24_136; round_JJ_25_142; and_CC_26_148; Italian_JJ_27_152; Davide_NNP_28_160; Sanguinetti_NNP_29_167 0.00790 None None 0 nsubj(reached_VBD_1_3, He_PRP_0_0); dobj(reached_VBD_1_3, round_NN_4_21); punct(reached_VBD_1_3, ._._34_199); det(round_NN_4_21, the_DT_2_11); amod(round_NN_4_21, third_JJ_3_15); prep(round_NN_4_21, at_IN_5_27); pobj(at_IN_5_27, Open_NNP_8_39); det(Open_NNP_8_39, the_DT_6_30); nn(Open_NNP_8_39, U.S._NNP_7_34); punct(Open_NNP_8_39, ,_,_9_44); rcmod(Open_NNP_8_39, lost_VBD_12_55); advmod(lost_VBD_12_55, where_WRB_10_46); nsubj(lost_VBD_12_55, he_PRP_11_52); xcomp(lost_VBD_12_55, Thai_VB_14_63); prep(lost_VBD_12_55, after_IN_17_88); aux(Thai_VB_14_63, to_TO_13_60); dobj(Thai_VB_14_63, Srichaphan_NNP_16_77); nn(Srichaphan_NNP_16_77, Paradorn_NNP_15_68); pcomp(after_IN_17_88, defeating_VBG_18_94); dobj(defeating_VBG_18_94, Robredo_NNP_21_121); prep(defeating_VBG_18_94, in_IN_22_129); prep(defeating_VBG_18_94, in_IN_30_179); nn(Robredo_NNP_21_121, countryman_NN_19_104); nn(Robredo_NNP_21_121, Tommy_NNP_20_115); pobj(in_IN_22_129, Sanguinetti_NNP_29_167); cc(round_JJ_25_142, and_CC_26_148); conj(round_JJ_25_142, Italian_JJ_27_152); det(Sanguinetti_NNP_29_167, the_DT_23_132); amod(Sanguinetti_NNP_29_167, first_JJ_24_136); amod(Sanguinetti_NNP_29_167, round_JJ_25_142); nn(Sanguinetti_NNP_29_167, Davide_NNP_28_160); pobj(in_IN_30_179, round_NN_33_193); det(round_NN_33_193, the_DT_31_182); amod(round_NN_33_193, second_JJ_32_186) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 countryman Tommy Robredo ;;; countryman_NN_19_104; Tommy_NNP_20_115; Robredo_NNP_21_121 be defeating in ;;; defeating_VBG_18_94 the second round ;;; the_DT_31_182; second_JJ_32_186; round_NN_33_193 0.00790 None None 1 nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 replaced Jonathan Groff in ;;; replaced_VBD_1_3; Jonathan_NNP_2_12; Groff_NNP_3_21 the Broadway production of the musical Spring Awakening ;;; the_DT_5_30; Broadway_NNP_6_34; production_NN_7_43; of_IN_8_54; the_DT_9_57; musical_JJ_10_61; Spring_NNP_11_69; Awakening_NN_12_76 0.73450 None None 1 nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 He ;;; He_PRP_0_0 replaced Jonathan Groff in ;;; replaced_VBD_1_3; Jonathan_NNP_2_12; Groff_NNP_3_21 the lead role of Melchior Gabor ;;; the_DT_15_91; lead_JJ_16_95; role_NN_17_100; of_IN_18_105; Melchior_NNP_19_108; Gabor_NNP_20_117 0.73450 None None 1 nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) Template {rel} {arg1} dobj> {arg2} 0.3797 He ;;; He_PRP_0_0 replaced ;;; replaced_VBD_1_3 Jonathan Groff ;;; Jonathan_NNP_2_12; Groff_NNP_3_21 0.37970 None None 1 nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Jonathan Groff ;;; Jonathan_NNP_2_12; Groff_NNP_3_21 be replaced in ;;; replaced_VBD_1_3 the Broadway production of the musical Spring Awakening ;;; the_DT_5_30; Broadway_NNP_6_34; production_NN_7_43; of_IN_8_54; the_DT_9_57; musical_JJ_10_61; Spring_NNP_11_69; Awakening_NN_12_76 0.01550 None None 1 nsubj(replaced_VBD_1_3, He_PRP_0_0); dobj(replaced_VBD_1_3, Groff_NNP_3_21); prep(replaced_VBD_1_3, in_IN_4_27); punct(replaced_VBD_1_3, ,_,_13_86); prep(replaced_VBD_1_3, in_IN_14_88); punct(replaced_VBD_1_3, ._._26_140); nn(Groff_NNP_3_21, Jonathan_NNP_2_12); pobj(in_IN_4_27, production_NN_7_43); det(production_NN_7_43, the_DT_5_30); nn(production_NN_7_43, Broadway_NNP_6_34); prep(production_NN_7_43, of_IN_8_54); pobj(of_IN_8_54, Awakening_NN_12_76); det(Awakening_NN_12_76, the_DT_9_57); amod(Awakening_NN_12_76, musical_JJ_10_61); nn(Awakening_NN_12_76, Spring_NNP_11_69); pobj(in_IN_14_88, role_NN_17_100); det(role_NN_17_100, the_DT_15_91); amod(role_NN_17_100, lead_JJ_16_95); prep(role_NN_17_100, of_IN_18_105); punct(role_NN_17_100, ,_,_21_123); prep(role_NN_17_100, on_IN_22_125); pobj(of_IN_18_105, Gabor_NNP_20_117); nn(Gabor_NNP_20_117, Melchior_NNP_19_108); pobj(on_IN_22_125, May_NNP_23_128); num(May_NNP_23_128, 2008_CD_25_135); number(2008_CD_25_135, 23_CD_24_132) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Jonathan Groff ;;; Jonathan_NNP_2_12; Groff_NNP_3_21 be replaced in ;;; replaced_VBD_1_3 the lead role of Melchior Gabor ;;; the_DT_15_91; lead_JJ_16_95; role_NN_17_100; of_IN_18_105; Melchior_NNP_19_108; Gabor_NNP_20_117 0.01550 None None 0 nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_17_79 appointed as ;;; appointed_VBD_18_82 governors ;;; governors_NN_20_95 0.73450 None None 1 nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 the rare Japanese ;;; the_DT_37_189; rare_JJ_38_193; Japanese_NNP_39_198 were his friends like ;;; were_VBD_26_127; his_PRP$_27_132; friends_NN_28_136 Matsukata Masayoshi ;;; Matsukata_NNP_31_151; Masayoshi_NNP_32_161 0.04770 None None 0 nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 He ;;; He_PRP_0_0 then was ;;; then_RB_1_3; was_VBD_2_8 able ;;; able_JJ_3_12 0.02160 None None 1 nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 his friends , like Matsukata Masayoshi , and others ;;; his_PRP$_27_132; friends_NN_28_136; ,_,_29_144; like_IN_30_146; Matsukata_NNP_31_151; Masayoshi_NNP_32_161; ,_,_33_171; and_CC_34_173; others_NN_35_177 were ;;; were_VBD_36_184 the rare Japanese ;;; the_DT_37_189; rare_JJ_38_193; Japanese_NNP_39_198 0.02160 None None 1 nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 most of the people ;;; most_JJ_13_60; of_IN_14_65; the_DT_15_68; people_NN_16_72 were ;;; were_VBD_21_105 young men ;;; young_JJ_22_110; men_NN_23_116 0.02160 None None 0 nsubj(able_JJ_3_12, He_PRP_0_0); advmod(able_JJ_3_12, then_RB_1_3); cop(able_JJ_3_12, was_VBD_2_8); xcomp(able_JJ_3_12, appoint_VB_5_20); aux(appoint_VB_5_20, to_TO_4_17); dobj(appoint_VB_5_20, leaders_NNS_8_36); det(leaders_NNS_8_36, all_DT_6_28); amod(leaders_NNS_8_36, new_JJ_7_32); prep(leaders_NNS_8_36, for_IN_9_44); punct(leaders_NNS_8_36, ,_,_12_58); rcmod(leaders_NNS_8_36, men_NNS_23_116); pobj(for_IN_9_44, land_NN_11_53); det(land_NN_11_53, this_DT_10_48); prep(most_JJS_13_60, of_IN_14_65); pobj(of_IN_14_65, people_NNS_16_72); det(people_NNS_16_72, the_DT_15_68); rcmod(people_NNS_16_72, appointed_VBD_18_82); nsubj(appointed_VBD_18_82, he_PRP_17_79); prep(appointed_VBD_18_82, as_IN_19_92); pobj(as_IN_19_92, governors_NNS_20_95); nsubj(men_NNS_23_116, most_JJS_13_60); cop(men_NNS_23_116, were_VBD_21_105); amod(men_NNS_23_116, young_JJ_22_110); ccomp(friends_NNS_28_136, able_JJ_3_12); punct(friends_NNS_28_136, ,_,_24_120); nsubj(friends_NNS_28_136, some_DT_25_122); cop(friends_NNS_28_136, were_VBD_26_127); poss(friends_NNS_28_136, his_PRP$_27_132); punct(friends_NNS_28_136, ,_,_29_144); prep(friends_NNS_28_136, like_IN_30_146); punct(friends_NNS_28_136, ,_,_33_171); cc(friends_NNS_28_136, and_CC_34_173); conj(friends_NNS_28_136, others_NNS_35_177); pobj(like_IN_30_146, Masayoshi_NNP_32_161); nn(Masayoshi_NNP_32_161, Matsukata_NNP_31_151); nsubj(Japanese_NNP_39_198, friends_NNS_28_136); cop(Japanese_NNP_39_198, were_VBD_36_184); det(Japanese_NNP_39_198, the_DT_37_189); amod(Japanese_NNP_39_198, rare_JJ_38_193); rcmod(Japanese_NNP_39_198, gained_VBN_42_215); punct(Japanese_NNP_39_198, ._._49_258); nsubj(gained_VBN_42_215, who_WP_40_207); aux(gained_VBN_42_215, had_VBD_41_211); dobj(gained_VBN_42_215, education_NN_44_227); det(education_NN_44_227, some_DT_43_222); prep(education_NN_44_227, in_IN_45_237); pobj(in_IN_45_237, Europe_NNP_46_240); cc(Europe_NNP_46_240, or_CC_47_247); conj(Europe_NNP_46_240, America_NNP_48_250) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0054 He ;;; He_PRP_0_0 to appoint ;;; to_TO_4_17; appoint_VB_5_20 all new leaders most of the people he appointed as governors were young men ;;; all_DT_6_28; new_JJ_7_32; leaders_NN_8_36; most_JJ_13_60; of_IN_14_65; the_DT_15_68; people_NN_16_72; he_PRP_17_79; appointed_VBD_18_82; as_IN_19_92; governors_NN_20_95; were_VBD_21_105; young_JJ_22_110; men_NN_23_116 0.00540 None None 1 nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) Template {rel} {arg1} dobj> {arg2} 0.1443 He ;;; He_PRP_0_0 threatens ;;; threatens_VBZ_1_3 us ;;; us_PRP_2_13 0.14430 None None 1 nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) Template {rel} {arg1} dobj> {arg2} 0.1443 he ;;; he_PRP_11_49 threatens ;;; threatens_VBZ_1_3 us ;;; us_PRP_2_13 0.14430 None None 1 nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) Template {rel} {arg1} dobj> {arg2} 0.1443 we ;;; we_PRP_4_20 threatens ;;; threatens_VBZ_1_3 us ;;; us_PRP_2_13 0.14430 None None 1 nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 He ;;; He_PRP_0_0 does n't believe in ;;; does_VBZ_12_52; n't_RB_13_57; believe_VB_14_61 the religion of Islam ;;; the_DT_16_72; religion_NN_17_76; of_IN_18_85; Islam_NNP_19_88 0.13490 None None 1 nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 he ;;; he_PRP_11_49 does n't believe in ;;; does_VBZ_12_52; n't_RB_13_57; believe_VB_14_61 the religion of Islam ;;; the_DT_16_72; religion_NN_17_76; of_IN_18_85; Islam_NNP_19_88 0.13490 None None 0 nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 we ;;; we_PRP_4_20 does n't believe in ;;; does_VBZ_12_52; n't_RB_13_57; believe_VB_14_61 the religion of Islam ;;; the_DT_16_72; religion_NN_17_76; of_IN_18_85; Islam_NNP_19_88 0.13490 None None 0 nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 He ;;; He_PRP_0_0 are afraid of ;;; are_VBP_5_23; afraid_JJ_7_31 him ;;; him_PRP_9_41 0.04780 None None 0 nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 he ;;; he_PRP_11_49 are afraid of ;;; are_VBP_5_23; afraid_JJ_7_31 him ;;; him_PRP_9_41 0.04780 None None 1 nsubj(threatens_VBZ_1_3, He_PRP_0_0); dobj(threatens_VBZ_1_3, us_PRP_2_13); cc(threatens_VBZ_1_3, and_CC_3_16); conj(threatens_VBZ_1_3, afraid_JJ_7_31); cc(threatens_VBZ_1_3, and_CC_10_45); conj(threatens_VBZ_1_3, believe_VB_14_61); punct(threatens_VBZ_1_3, ._._20_94); nsubj(afraid_JJ_7_31, we_PRP_4_20); cop(afraid_JJ_7_31, are_VBP_5_23); dep(afraid_JJ_7_31, all_DT_6_27); prep(afraid_JJ_7_31, of_IN_8_38); pobj(of_IN_8_38, him_PRP_9_41); nsubj(believe_VB_14_61, he_PRP_11_49); aux(believe_VB_14_61, does_VBZ_12_52); neg(believe_VB_14_61, n't_RB_13_57); prep(believe_VB_14_61, in_IN_15_69); pobj(in_IN_15_69, religion_NN_17_76); det(religion_NN_17_76, the_DT_16_72); prep(religion_NN_17_76, of_IN_18_85); pobj(of_IN_18_85, Islam_NNP_19_88) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 we ;;; we_PRP_4_20 are afraid of ;;; are_VBP_5_23; afraid_JJ_7_31 him ;;; him_PRP_9_41 0.04780 None None 1 nsubj(producer_NN_3_9, He_PRP_0_0); cop(producer_NN_3_9, was_VBD_1_3); det(producer_NN_3_9, a_DT_2_7); prep(producer_NN_3_9, on_IN_4_18); punct(producer_NN_3_9, ._._28_179); pobj(on_IN_4_18, series_NN_8_51); amod(series_NN_8_51, several_JJ_5_21); amod(series_NN_8_51, Australian_JJ_6_29); nn(series_NN_8_51, television_NN_7_40); prep(series_NN_8_51, for_IN_9_58); pobj(for_IN_9_58, Productions_NNPS_11_71); nn(Productions_NNPS_11_71, Crawford_NNP_10_62); prep(Productions_NNPS_11_71, including_VBG_12_83); punct(Productions_NNPS_11_71, ,_,_19_123); cc(Productions_NNPS_11_71, and_CC_20_125); conj(Productions_NNPS_11_71, Bluey_NNP_25_160); cc(Productions_NNPS_11_71, and_CC_26_166); conj(Productions_NNPS_11_71, Homicide_NNP_27_170); pobj(including_VBG_12_83, opera_NN_14_98); nn(opera_NN_14_98, soap_NN_13_93); dep(opera_NN_14_98, Box_NNP_16_108); prep(opera_NN_14_98, in_IN_17_112); det(Box_NNP_16_108, The_DT_15_104); pobj(in_IN_17_112, 1976-77_CD_18_115); nn(Bluey_NNP_25_160, police_NN_21_129); amod(Bluey_NNP_25_160, procedural_JJ_22_136); nn(Bluey_NNP_25_160, drama_NN_23_147); nn(Bluey_NNP_25_160, series_NN_24_153) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 He ;;; He_PRP_0_0 was a producer on ;;; was_VBD_1_3; a_DT_2_7; producer_NN_3_9 several Australian television series ;;; several_JJ_5_21; Australian_JJ_6_29; television_NN_7_40; series_NN_8_51 0.95550 None None 1 nsubj(producer_NN_3_9, He_PRP_0_0); cop(producer_NN_3_9, was_VBD_1_3); det(producer_NN_3_9, a_DT_2_7); prep(producer_NN_3_9, on_IN_4_18); punct(producer_NN_3_9, ._._28_179); pobj(on_IN_4_18, series_NN_8_51); amod(series_NN_8_51, several_JJ_5_21); amod(series_NN_8_51, Australian_JJ_6_29); nn(series_NN_8_51, television_NN_7_40); prep(series_NN_8_51, for_IN_9_58); pobj(for_IN_9_58, Productions_NNPS_11_71); nn(Productions_NNPS_11_71, Crawford_NNP_10_62); prep(Productions_NNPS_11_71, including_VBG_12_83); punct(Productions_NNPS_11_71, ,_,_19_123); cc(Productions_NNPS_11_71, and_CC_20_125); conj(Productions_NNPS_11_71, Bluey_NNP_25_160); cc(Productions_NNPS_11_71, and_CC_26_166); conj(Productions_NNPS_11_71, Homicide_NNP_27_170); pobj(including_VBG_12_83, opera_NN_14_98); nn(opera_NN_14_98, soap_NN_13_93); dep(opera_NN_14_98, Box_NNP_16_108); prep(opera_NN_14_98, in_IN_17_112); det(Box_NNP_16_108, The_DT_15_104); pobj(in_IN_17_112, 1976-77_CD_18_115); nn(Bluey_NNP_25_160, police_NN_21_129); amod(Bluey_NNP_25_160, procedural_JJ_22_136); nn(Bluey_NNP_25_160, drama_NN_23_147); nn(Bluey_NNP_25_160, series_NN_24_153) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 He ;;; He_PRP_0_0 was ;;; was_VBD_1_3 a producer ;;; a_DT_2_7; producer_NN_3_9 0.02160 None None 1 nsubjpass(featured_VBN_3_12, He_PRP_0_0); auxpass(featured_VBN_3_12, was_VBD_1_3); advmod(featured_VBN_3_12, also_RB_2_7); prep(featured_VBN_3_12, in_IN_4_21); punct(featured_VBN_3_12, ._._12_65); pobj(in_IN_4_21, articles_NNS_6_30); nn(articles_NNS_6_30, cover_NN_5_24); prep(articles_NNS_6_30, for_IN_7_39); pobj(for_IN_7_39, Guide_NNP_9_46); nn(Guide_NNP_9_46, TV_NN_8_43); cc(Guide_NNP_9_46, and_CC_10_52); conj(Guide_NNP_9_46, Instinct_NNP_11_56) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 He ;;; He_PRP_0_0 was also featured in ;;; was_VBD_1_3; also_RB_2_7; featured_VBN_3_12 cover articles ;;; cover_NN_5_24; articles_NN_6_30 1.00000 None None 0 nsubjpass(descended_VBN_2_7, He_PRP_0_0); auxpass(descended_VBN_2_7, was_VBD_1_3); prep(descended_VBN_2_7, from_IN_3_17); punct(descended_VBN_2_7, ,_,_8_39); dobj(descended_VBN_2_7, family_NN_12_61); punct(descended_VBN_2_7, ._._15_85); pobj(from_IN_3_17, family_NN_7_32); det(family_NN_7_32, the_DT_4_22); nn(family_NN_7_32, B_NNP_5_26); amod(family_NN_7_32, low_JJ_6_28); det(family_NN_12_61, an_DT_9_41); amod(family_NN_12_61, old_JJ_10_44); amod(family_NN_12_61, aristocratic_JJ_11_48); prep(family_NN_12_61, from_IN_13_68); pobj(from_IN_13_68, Mecklenburg_NNP_14_73) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 He ;;; He_PRP_0_0 was descended an old aristocratic family from Mecklenburg from ;;; was_VBD_1_3; descended_VBN_2_7; an_DT_9_41; old_JJ_10_44; aristocratic_JJ_11_48; family_NN_12_61; from_IN_13_68; Mecklenburg_NNP_14_73 the B low family ;;; the_DT_4_22; B_NNP_5_26; low_JJ_6_28; family_NN_7_32 1.00000 None None 0 nsubjpass(descended_VBN_2_7, He_PRP_0_0); auxpass(descended_VBN_2_7, was_VBD_1_3); prep(descended_VBN_2_7, from_IN_3_17); punct(descended_VBN_2_7, ,_,_8_39); dobj(descended_VBN_2_7, family_NN_12_61); punct(descended_VBN_2_7, ._._15_85); pobj(from_IN_3_17, family_NN_7_32); det(family_NN_7_32, the_DT_4_22); nn(family_NN_7_32, B_NNP_5_26); amod(family_NN_7_32, low_JJ_6_28); det(family_NN_12_61, an_DT_9_41); amod(family_NN_12_61, old_JJ_10_44); amod(family_NN_12_61, aristocratic_JJ_11_48); prep(family_NN_12_61, from_IN_13_68); pobj(from_IN_13_68, Mecklenburg_NNP_14_73) Template be {rel} {arg1} dobj> {arg2} 0.0191 He ;;; He_PRP_0_0 was descended ;;; was_VBD_1_3; descended_VBN_2_7 an old aristocratic family ;;; an_DT_9_41; old_JJ_10_44; aristocratic_JJ_11_48; family_NN_12_61 0.01910 None None 1 nsubj(chairman_NN_3_15, He_PRP_0_0); aux(chairman_NN_3_15, will_MD_1_3); cop(chairman_NN_3_15, remain_VB_2_8); punct(chairman_NN_3_15, ._._4_24) Template {rel} {arg1} cop> {rel:postag=VB} 0.008 He ;;; He_PRP_0_0 will remain ;;; will_MD_1_3; remain_VB_2_8 chairman ;;; chairman_NN_3_15 0.00800 None None 1 nsubj(succeed_VB_2_8, He_PRP_0_0); aux(succeed_VB_2_8, will_MD_1_3); dobj(succeed_VB_2_8, Himebaugh_NNP_5_26); prep(succeed_VB_2_8, as_IN_6_36); punct(succeed_VB_2_8, ._._16_91); nn(Himebaugh_NNP_5_26, Arthur_NNP_3_16); nn(Himebaugh_NNP_5_26, E._NNP_4_23); pobj(as_IN_6_36, manager_NN_8_47); amod(manager_NN_8_47, general_JJ_7_39); dep(manager_NN_8_47, Feb._NNP_9_55); num(Feb._NNP_9_55, 1_CD_10_60); punct(Feb._NNP_9_55, ,_,_11_62); dep(Feb._NNP_9_55, retires_VBZ_15_83); nn(Himebaugh_NNP_14_73, Mr._NNP_13_69); advmod(retires_VBZ_15_83, when_WRB_12_64); nsubj(retires_VBZ_15_83, Himebaugh_NNP_14_73) Template {rel} {arg1} dobj> {arg2} 0.1473 He ;;; He_PRP_0_0 will succeed ;;; will_MD_1_3; succeed_VB_2_8 Arthur E. Himebaugh ;;; Arthur_NNP_3_16; E._NNP_4_23; Himebaugh_NNP_5_26 0.14730 None None 1 nsubj(succeed_VB_2_8, He_PRP_0_0); aux(succeed_VB_2_8, will_MD_1_3); dobj(succeed_VB_2_8, Himebaugh_NNP_5_26); prep(succeed_VB_2_8, as_IN_6_36); punct(succeed_VB_2_8, ._._16_91); nn(Himebaugh_NNP_5_26, Arthur_NNP_3_16); nn(Himebaugh_NNP_5_26, E._NNP_4_23); pobj(as_IN_6_36, manager_NN_8_47); amod(manager_NN_8_47, general_JJ_7_39); dep(manager_NN_8_47, Feb._NNP_9_55); num(Feb._NNP_9_55, 1_CD_10_60); punct(Feb._NNP_9_55, ,_,_11_62); dep(Feb._NNP_9_55, retires_VBZ_15_83); nn(Himebaugh_NNP_14_73, Mr._NNP_13_69); advmod(retires_VBZ_15_83, when_WRB_12_64); nsubj(retires_VBZ_15_83, Himebaugh_NNP_14_73) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 He ;;; He_PRP_0_0 will succeed Arthur E. Himebaugh as ;;; will_MD_1_3; succeed_VB_2_8; Arthur_NNP_3_16; E._NNP_4_23; Himebaugh_NNP_5_26 general manager ;;; general_JJ_7_39; manager_NN_8_47 0.13490 None None 1 nsubj(succeed_VB_2_8, He_PRP_0_0); aux(succeed_VB_2_8, will_MD_1_3); dobj(succeed_VB_2_8, Himebaugh_NNP_5_26); prep(succeed_VB_2_8, as_IN_6_36); punct(succeed_VB_2_8, ._._16_91); nn(Himebaugh_NNP_5_26, Arthur_NNP_3_16); nn(Himebaugh_NNP_5_26, E._NNP_4_23); pobj(as_IN_6_36, manager_NN_8_47); amod(manager_NN_8_47, general_JJ_7_39); dep(manager_NN_8_47, Feb._NNP_9_55); num(Feb._NNP_9_55, 1_CD_10_60); punct(Feb._NNP_9_55, ,_,_11_62); dep(Feb._NNP_9_55, retires_VBZ_15_83); nn(Himebaugh_NNP_14_73, Mr._NNP_13_69); advmod(retires_VBZ_15_83, when_WRB_12_64); nsubj(retires_VBZ_15_83, Himebaugh_NNP_14_73) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 Arthur E. Himebaugh ;;; Arthur_NNP_3_16; E._NNP_4_23; Himebaugh_NNP_5_26 will be succeed as ;;; will_MD_1_3; succeed_VB_2_8 general manager ;;; general_JJ_7_39; manager_NN_8_47 0.01320 None None 1 poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.0577 tank-killer teams ;;; tank-killer_NN_13_79; teams_NN_14_91 armed to destroy ;;; armed_VBN_15_97; to_TO_22_152; destroy_VB_23_155 the attacking North Korean T ;;; the_DT_24_163; attacking_VBG_25_167; North_JJ_26_177; Korean_JJ_27_183; T_NNP_28_190 0.05770 None None 1 poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 His regiments ;;; His_PRP$_0_0; regiments_NN_1_4 had been decimated in ;;; had_VBD_2_14; been_VBN_3_18; decimated_VBN_4_23 earlier fighting ;;; earlier_JJR_6_36; fighting_NN_7_44 0.04440 None None 1 poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 tank-killer teams ;;; tank-killer_NN_13_79; teams_NN_14_91 armed with ;;; armed_VBN_15_97 the newly-arrived 3.5-inch rocket launchers ;;; the_DT_17_108; newly-arrived_JJ_18_112; 3.5-inch_JJ_19_126; rocket_NN_20_135; launchers_NN_21_142 0.04440 None None 1 poss(regiments_NNS_1_4, His_PRP$_0_0); nsubj(decimated_VBN_4_23, regiments_NNS_1_4); aux(decimated_VBN_4_23, had_VBD_2_14); auxpass(decimated_VBN_4_23, been_VBN_3_18); prep(decimated_VBN_4_23, in_IN_5_33); punct(decimated_VBN_4_23, ,_,_8_53); cc(decimated_VBN_4_23, but_CC_9_55); conj(decimated_VBN_4_23, led_VBD_12_75); punct(decimated_VBN_4_23, ._._32_203); pobj(in_IN_5_33, fighting_NN_7_44); amod(fighting_NN_7_44, earlier_JJR_6_36); nsubj(led_VBD_12_75, Dean_NNP_10_59); advmod(led_VBD_12_75, personally_RB_11_64); ccomp(led_VBD_12_75, armed_VBN_15_97); nn(teams_NNS_14_91, tank-killer_NN_13_79); nsubj(armed_VBN_15_97, teams_NNS_14_91); prep(armed_VBN_15_97, with_IN_16_103); xcomp(armed_VBN_15_97, destroy_VB_23_155); pobj(with_IN_16_103, launchers_NNS_21_142); det(launchers_NNS_21_142, the_DT_17_108); amod(launchers_NNS_21_142, newly-arrived_JJ_18_112); amod(launchers_NNS_21_142, 3.5-inch_JJ_19_126); nn(launchers_NNS_21_142, rocket_NN_20_135); aux(destroy_VB_23_155, to_TO_22_152); dobj(destroy_VB_23_155, T_NNP_28_190); dep(North_JJ_26_177, Korean_JJ_27_183); det(T_NNP_28_190, the_DT_24_163); amod(T_NNP_28_190, attacking_VBG_25_167); amod(T_NNP_28_190, North_JJ_26_177); punct(T_NNP_28_190, -_:_29_192); dep(T_NNP_28_190, tanks_NNS_31_197); num(tanks_NNS_31_197, 34_CD_30_194) Template be {rel} {prep} {arg1} ccomp> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.0227 Dean ;;; Dean_NNP_10_59 be armed with ;;; armed_VBN_15_97 the newly-arrived 3.5-inch rocket launchers ;;; the_DT_17_108; newly-arrived_JJ_18_112; 3.5-inch_JJ_19_126; rocket_NN_20_135; launchers_NN_21_142 0.02270 None None 1 poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_10_47 was hit by ;;; was_VBD_11_50; hit_VBN_12_54 Texas Rangers pitcher C.J. Wilson ;;; Texas_NNP_17_73; Rangers_NNP_18_79; pitcher_NN_19_87; C.J._NNP_20_95; Wilson_NNP_21_100 1.00000 None None 1 poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_10_47 was hit on ;;; was_VBD_11_50; hit_VBN_12_54 September 1 ;;; September_NNP_7_33; 1_CD_8_43 1.00000 None None 1 poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_10_47 was hit on ;;; was_VBD_11_50; hit_VBN_12_54 the hand ;;; the_DT_14_61; hand_NN_15_65 1.00000 None None 1 poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) Template be {rel} of {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airline|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|book|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capital|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceo|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|co-author|co-chair|co-creator|co-editor|co-founder|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editor-at-large|editor-in-chief|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|goddess|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|home|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|island|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journal|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|mascot|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moon|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaper|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|people|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|president-elect|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publication|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|secretary-general|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburb|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unit|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nn> {arg2:postag=NNP} 0.1492 C.J. Wilson ;;; C.J._NNP_20_95; Wilson_NNP_21_100 be pitcher of ;;; pitcher_NN_19_87 Texas Rangers ;;; Texas_NNP_17_73; Rangers_NNP_18_79 0.14920 None None 1 poss(season_NN_1_4, His_PRP$_0_0); nsubjpass(cut_VBN_3_15, season_NN_1_4); auxpass(cut_VBN_3_15, was_VBD_2_11); dep(cut_VBN_3_15, short_JJ_4_19); punct(cut_VBN_3_15, ._._22_107); advcl(short_JJ_4_19, hit_VBN_12_54); pobj(on_IN_6_30, September_NNP_7_33); num(September_NNP_7_33, 1_CD_8_43); advmod(hit_VBN_12_54, when_WRB_5_25); prep(hit_VBN_12_54, on_IN_6_30); punct(hit_VBN_12_54, ,_,_9_45); nsubjpass(hit_VBN_12_54, he_PRP_10_47); auxpass(hit_VBN_12_54, was_VBD_11_50); prep(hit_VBN_12_54, on_IN_13_58); prep(hit_VBN_12_54, by_IN_16_70); pobj(on_IN_13_58, hand_NN_15_65); det(hand_NN_15_65, the_DT_14_61); pobj(by_IN_16_70, Wilson_NNP_21_100); nn(Wilson_NNP_21_100, Texas_NNP_17_73); nn(Wilson_NNP_21_100, Rangers_NNPS_18_79); nn(Wilson_NNP_21_100, pitcher_NN_19_87); nn(Wilson_NNP_21_100, C.J._NNP_20_95) Template be {rel} for {rel:postag=NN:regex=abator|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutter|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addlehead|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aeronaut|aerophile|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aircraftman|aircraftsman|aircrewman|airhead|airman|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinomian|antipope|antiquarian|antiquary|antique|apache|ape|aper|aphakic|aphasic|aphorist|apiarist|apiculturist|apologist|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|appropriator|approver|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archdeacon|archduchess|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atheist|athlete|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|ayah|ayatollah|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backslapper|backslider|backstop|backstroker|backup|backwoodsman|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailor|bairn|baker|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barrater|barrator|barrister|bartender|barterer|barytone|baseman|basileus|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battler|baulker|bawd|bawler|beachcomber|beadle|beadsman|bear|beard|bearer|beast|beat|beater|beatnik|beau|beautician|beauty|bedesman|bedfellow|bedlamite|bedwetter|beefeater|beekeeper|begetter|beggar|beggarman|beggarwoman|beginner|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|bellyacher|beloved|benedick|benedict|benefactor|benefactress|beneficiary|bereaved|berk|berserk|berserker|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bigot|bigwig|bilingual|bilingualist|billionaire|bimbo|bimetallist|binger|biochemist|biographer|biologist|biophysicist|bird|birdbrain|birder|birth|bisexual|bishop|bitch|biter|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|borderer|bore|borrower|boss|bosun|botanist|botcher|boulevardier|bouncer|bounder|bourgeois|bowdleriser|bowdlerizer|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breadwinner|breaker|breaststroker|breeder|brewer|briber|brick|bricklayer|bride|bridegroom|bridesmaid|brigadier|brigand|broad|broadcaster|broker|broncobuster|brother|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caller|calligrapher|calligraphist|cameraman|campaigner|camper|campmate|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|cantor|canvasser|capitalist|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|caviler|caviller|celebrant|celebrater|celebrator|celebrity|celibate|cellist|cenobite|censor|centenarian|center|centerfielder|centrist|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|chartist|charwoman|chased|chaser|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choice|choirboy|choirmaster|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chronicler|chum|chump|churchgoer|churchman|churchwarden|churl|chutzpanik|cicerone|cinematographer|cipher|citizen|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|clown|coach|coachbuilder|coachman|coadjutor|coalman|coaster|coastguardsman|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colonel|colonial|colonialist|coloniser|colonist|colonizer|coloratura|colored|colorist|colossus|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|commoner|communicant|communicator|communist|commuter|companion|company|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|coreligionist|corespondent|cornerback|cornetist|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|countryman|countrywoman|courier|courser|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cox|coxcomb|coxswain|coyote|crab|cracker|crackerjack|crackpot|cracksman|crafter|craftsman|cragsman|crammer|craniologist|crank|crapshooter|crasher|craven|crawler|crazy|creator|creature|creditor|creep|creeper|cretin|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|criollo|cripple|critic|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crossover|crosspatch|croupier|cruiserweight|crumb|crusader|crybaby|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubist|cuckold|cuckoo|cuirassier|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|cuss|custodian|customer|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danseur|danseuse|daredevil|darkey|darkie|darky|darling|darner|dastard|date|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|denier|denizen|dentist|denturist|departed|departer|dependant|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|deputy|derelict|dermatologist|dervish|descendant|descendent|descender|deserter|designer|deskman|desperado|desperate|despoiler|despot|destroyer|detainee|detective|determinist|detractor|developer|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diarist|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|dip|diplomat|diplomate|diplomatist|dipsomaniac|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distiller|distortionist|distributer|distributor|disturber|diva|diver|diversionist|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockworker|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogmatist|dogsbody|dolichocephalic|doll|dolt|domestic|dominatrix|domine|dominee|dominie|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dulcinea|dullard|dumbass|dumbbell|dummy|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earner|earthling|earthman|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edger|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emissary|emperor|empiricist|employable|employee|employer|empress|emptor|emulator|enate|enchanter|enchantress|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepreneur|enumerator|environmentalist|envoy|enzymologist|eparch|epicene|epicure|epicurean|epidemiologist|epigon|epigone|epileptic|epistemologist|equal|equalitarian|equerry|equestrian|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|examinee|examiner|exarch|excavator|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|extension|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extremist|extrovert|eyeful|eyewitness|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farmer|farmerette|farmhand|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatso|fatty|faultfinder|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|finisher|fink|fireball|firebrand|firebug|firefighter|fireman|firstborn|fisher|fisherman|fishmonger|fishwife|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flirt|floater|flogger|floorwalker|floozie|floozy|flop|florist|flouter|flunkey|flunky|flutist|flyer|flyweight|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|footman|footpad|footslogger|fop|forager|forbear|forebear|forecaster|forefather|foreigner|forelady|foreman|foremother|foreperson|forerunner|forester|forewoman|forger|forgiver|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fowler|fox|framer|framework|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|frog|frogman|front|frontbencher|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|garbageman|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasman|gastroenterologist|gastronome|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geriatrician|gerontologist|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|gladiator|glassblower|glassmaker|glassworker|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|gravedigger|graverobber|gravida|graybeard|grazier|greaseball|greaser|great|greengrocer|greenhorn|greenskeeper|greeter|grenadier|greyback|greybeard|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|groundbreaker|groundkeeper|groundling|groundskeeper|groundsman|groupie|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangover|haranguer|harasser|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatemonger|hater|hatmaker|hatter|hauler|haulier|have|hawk|hawker|hawkshaw|hayseed|hazan|head|headcounter|headhunter|headliner|headman|headmaster|headmistress|headsman|headwaiter|healer|hearer|heartbreaker|heartthrob|heathen|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heir|heiress|hellcat|heller|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hematologist|hemiplegic|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|heretic|heritor|hermaphrodite|hermit|hero|heroine|herpetologist|hesitater|hesitator|heterosexual|hewer|hick|hierarch|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|holidaymaker|hombre|homebody|homeboy|homebuilder|homegirl|homeless|homemaker|homeopath|homeowner|homesteader|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspur|hound|houri|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydrologist|hydromancer|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|infidel|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|insider|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ironist|ironman|ironmonger|ironside|ironworker|irredentist|irregular|irreligionist|irridentist|islander|isolationist|issue|itinerant|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junior|junkie|junky|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|keeper|keyboardist|khalif|khalifah|khan|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knower|knucklehead|kolkhoznik|kook|kvetch|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|landgrave|landholder|landlady|landlord|landlubber|landman|landowner|landscaper|landscapist|landsman|langlaufer|language|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitudinarian|laudator|lauder|laugher|laughingstock|laundress|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawyer|layabout|layman|layperson|lazar|lazybones|lead|leader|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|leech|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limey|limner|limnologist|limper|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locater|locator|lockkeeper|lockman|lockmaster|locksmith|locum|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loyalist|lubber|luger|lulu|lumberjack|lumberman|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|manslayer|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|marcher|marchioness|margrave|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|master|mastermind|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matron|mauler|maven|maverick|mavin|mayor|mayoress|meanie|meany|measurer|meatman|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|mediocrity|medium|meeter|megalomaniac|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|meteorologist|metic|metropolitan|mezzo|microbiologist|microeconomist|microscopist|middlebrow|middleman|middleweight|midget|midinette|midshipman|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|miner|mineralogist|mineworker|miniaturist|minimalist|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|mooch|moocher|moonlighter|moonshiner|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motile|motorcyclist|motormouth|moujik|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighbour|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nibbler|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|nomad|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|normaliser|normalizer|nosher|notability|notable|notary|noticer|novelist|novice|novillero|novitiate|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|onanist|oncologist|oneiromancer|onlooker|onomancer|opener|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orientalist|originator|ornamentalist|ornithologist|orphan|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outcast|outcaste|outdoorsman|outdoorswoman|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outpatient|outrider|outsider|overachiever|overcomer|overlord|overnighter|overseer|owner|oyabun|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|painter|pal|paladin|palaeontologist|palatine|paleface|paleographer|paleographist|paleontologist|pallbearer|palmist|palmister|palooka|palsgrave|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paragon|paragrapher|paralegal|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|pardner|pardoner|parent|parer|paretic|pariah|parishioner|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|partaker|participant|partisan|partitionist|partizan|partner|party|partygoer|parvenu|pasha|passenger|passer|passerby|paster|pastor|patentee|pater|paterfamilias|pathfinder|pathologist|patient|patrial|patriarch|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|percher|percipient|percussionist|perfecter|perfectionist|performer|perfumer|peri|perinatologist|periodontist|peripatetic|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigman|pigmy|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pioneer|piper|piranha|pirate|pisser|pistoleer|pitcher|pitchman|pitman|pivot|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|planter|plantsman|plasterer|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playmaker|playmate|playwright|pleader|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|podiatrist|poet|poetess|poetiser|poetizer|poilu|pointillist|pointsman|poisoner|poke|pol|polack|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pornographer|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|positivist|posseman|possessor|possible|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prelate|premie|premier|prentice|presbyope|presbyter|preschooler|presenter|presentist|preservationist|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princeling|princess|principal|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protege|protegee|protester|protozoologist|provider|provincial|provisioner|provocateur|provoker|provost|prowler|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddler|pudge|puerpera|pugilist|puke|puller|puncher|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|quack|quad|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railroader|railwayman|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|rancher|ranee|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reactionary|reader|realist|reaper|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refugee|refuter|regent|regicide|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|renegade|renovator|renter|rentier|rep|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reserve|reservist|resident|resister|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rigger|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roamer|roarer|roaster|robber|rock|rocker|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rookie|roomer|roomie|roommate|roomy|root|rooter|ropedancer|ropemaker|roper|ropewalker|rosebud|rotter|roue|roughneck|roughrider|rounder|roundhead|roundsman|rouser|roustabout|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sachem|sacrificer|sacristan|saddhu|saddler|sadhu|sadist|sadomasochist|safebreaker|safecracker|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sandbagger|sandboy|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenarist|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|scientist|sciolist|scion|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|sealer|seaman|seamster|seamstress|searcher|seasonal|seasoner|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|secular|secularist|secundigravida|securer|seducer|seductress|seed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|semanticist|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separationist|separatist|septuagenarian|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|shegetz|sheik|sheika|sheikh|sheikha|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipwright|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shortstop|shot|shouter|shoveler|shoveller|shover|shower|showgirl|showman|shrew|shrimp|shrink|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|sidekick|sidesman|sightreader|sightseer|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|sitter|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slob|slobberer|sloganeer|slogger|slopseller|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodomist|sodomite|softie|softy|sojourner|solderer|soldier|solicitor|solitary|solitudinarian|soloist|solon|solver|somebody|someone|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|southpaw|sovereign|sower|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphinx|spic|spick|spik|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|sport|sportscaster|sportsman|sportswoman|sportswriter|spotter|spouse|spouter|sprawler|sprayer|sprigger|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|stater|statesman|stateswoman|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|strawman|strayer|streaker|streetwalker|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|subtracter|suburbanite|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|summercater|summercaters|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surveyor|survivalist|survivor|suspect|sustainer|sutler|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tantaliser|tantalizer|taoiseach|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tender|tenderfoot|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminator|terpsichorean|territorial|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theatergoer|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|thespian|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tipper|tippler|tipster|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomboy|tomfool|tool|toolmaker|toper|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|townee|towner|townie|townsman|towny|toxicologist|tracer|tracker|tracklayer|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trailblazer|trailer|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|trekker|trembler|trencher|trencherman|trespasser|tribade|tribesman|tribologist|tribune|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turkey|turncoat|turncock|turner|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|ump|umpire|unbeliever|uncle|underachiever|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|understudy|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upstager|upstart|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacationer|vacationist|vaccinator|vaccinee|vacillator|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vaquero|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vaulter|vaunter|vegan|vegetarian|vendee|vender|vendor|venerator|venter|ventriloquist|venturer|verbaliser|verbalizer|verger|verifier|vermin|versifier|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|victim|victimiser|victimizer|victor|victualer|victualler|viewer|vigilante|vilifier|villager|villain|villainess|villein|vindicator|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|voider|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warrener|warrior|washer|washerman|washerwoman|washout|washwoman|wassailer|waster|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterman|waver|waverer|wayfarer|weakling|wearer|weasel|weatherman|weaver|webmaster|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welsher|welterweight|wench|wencher|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheedler|wheeler|wheelwright|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wildcat|wildcatter|wimp|windbag|winder|windtalker|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|workaholic|worker|workfellow|workingman|workman|workmate|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zombi|zombie|zoologist} nn> {arg2:postag=NNP} 0.0162 C.J. Wilson ;;; C.J._NNP_20_95; Wilson_NNP_21_100 be pitcher for ;;; pitcher_NN_19_87 Texas Rangers ;;; Texas_NNP_17_73; Rangers_NNP_18_79 0.01620 None None 1 poss(suspicions_NNS_1_4, His_PRP$_0_0); nsubjpass(confirmed_VBN_3_20, suspicions_NNS_1_4); auxpass(confirmed_VBN_3_20, were_VBD_2_15); prep(confirmed_VBN_3_20, in_IN_4_30); punct(confirmed_VBN_3_20, ._._23_155); pobj(in_IN_4_30, 1935_CD_5_33); dep(1935_CD_5_33, crystallized_VBD_12_82); det(Stanley_NNP_11_74, the_DT_7_43); amod(Stanley_NNP_11_74, American_JJ_8_47); nn(Stanley_NNP_11_74, scientist_NN_9_56); nn(Stanley_NNP_11_74, Wendell_NNP_10_66); advmod(crystallized_VBD_12_82, when_WRB_6_38); nsubj(crystallized_VBD_12_82, Stanley_NNP_11_74); dobj(crystallized_VBD_12_82, particle_NN_15_110); det(particle_NN_15_110, the_DT_13_95); amod(particle_NN_15_110, infectious_JJ_14_99); punct(particle_NN_15_110, ,_,_16_119); partmod(particle_NN_15_110, known_VBN_18_125); advmod(known_VBN_18_125, now_RB_17_121); prep(known_VBN_18_125, as_IN_19_131); pobj(as_IN_19_131, virus_NN_22_149); nn(virus_NN_22_149, tobacco_NN_20_134); nn(virus_NN_22_149, mosaic_NN_21_142) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 His suspicions ;;; His_PRP$_0_0; suspicions_NN_1_4 were confirmed in ;;; were_VBD_2_15; confirmed_VBN_3_20 1935 ;;; 1935_CD_5_33 1.00000 None None 1 poss(suspicions_NNS_1_4, His_PRP$_0_0); nsubjpass(confirmed_VBN_3_20, suspicions_NNS_1_4); auxpass(confirmed_VBN_3_20, were_VBD_2_15); prep(confirmed_VBN_3_20, in_IN_4_30); punct(confirmed_VBN_3_20, ._._23_155); pobj(in_IN_4_30, 1935_CD_5_33); dep(1935_CD_5_33, crystallized_VBD_12_82); det(Stanley_NNP_11_74, the_DT_7_43); amod(Stanley_NNP_11_74, American_JJ_8_47); nn(Stanley_NNP_11_74, scientist_NN_9_56); nn(Stanley_NNP_11_74, Wendell_NNP_10_66); advmod(crystallized_VBD_12_82, when_WRB_6_38); nsubj(crystallized_VBD_12_82, Stanley_NNP_11_74); dobj(crystallized_VBD_12_82, particle_NN_15_110); det(particle_NN_15_110, the_DT_13_95); amod(particle_NN_15_110, infectious_JJ_14_99); punct(particle_NN_15_110, ,_,_16_119); partmod(particle_NN_15_110, known_VBN_18_125); advmod(known_VBN_18_125, now_RB_17_121); prep(known_VBN_18_125, as_IN_19_131); pobj(as_IN_19_131, virus_NN_22_149); nn(virus_NN_22_149, tobacco_NN_20_134); nn(virus_NN_22_149, mosaic_NN_21_142) Template {rel} {arg1} dobj> {arg2} 0.3797 the American scientist Wendell Stanley ;;; the_DT_7_43; American_JJ_8_47; scientist_NN_9_56; Wendell_NNP_10_66; Stanley_NNP_11_74 crystallized ;;; crystallized_VBD_12_82 the infectious particle now known as tobacco mosaic virus ;;; the_DT_13_95; infectious_JJ_14_99; particle_NN_15_110; now_RB_17_121; known_VBN_18_125; as_IN_19_131; tobacco_NN_20_134; mosaic_NN_21_142; virus_NN_22_149 0.37970 None None 1 poss(suspicions_NNS_1_4, His_PRP$_0_0); nsubjpass(confirmed_VBN_3_20, suspicions_NNS_1_4); auxpass(confirmed_VBN_3_20, were_VBD_2_15); prep(confirmed_VBN_3_20, in_IN_4_30); punct(confirmed_VBN_3_20, ._._23_155); pobj(in_IN_4_30, 1935_CD_5_33); dep(1935_CD_5_33, crystallized_VBD_12_82); det(Stanley_NNP_11_74, the_DT_7_43); amod(Stanley_NNP_11_74, American_JJ_8_47); nn(Stanley_NNP_11_74, scientist_NN_9_56); nn(Stanley_NNP_11_74, Wendell_NNP_10_66); advmod(crystallized_VBD_12_82, when_WRB_6_38); nsubj(crystallized_VBD_12_82, Stanley_NNP_11_74); dobj(crystallized_VBD_12_82, particle_NN_15_110); det(particle_NN_15_110, the_DT_13_95); amod(particle_NN_15_110, infectious_JJ_14_99); punct(particle_NN_15_110, ,_,_16_119); partmod(particle_NN_15_110, known_VBN_18_125); advmod(known_VBN_18_125, now_RB_17_121); prep(known_VBN_18_125, as_IN_19_131); pobj(as_IN_19_131, virus_NN_22_149); nn(virus_NN_22_149, tobacco_NN_20_134); nn(virus_NN_22_149, mosaic_NN_21_142) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 the infectious particle ;;; the_DT_13_95; infectious_JJ_14_99; particle_NN_15_110 be now known as ;;; now_RB_17_121; known_VBN_18_125 tobacco mosaic virus ;;; tobacco_NN_20_134; mosaic_NN_21_142; virus_NN_22_149 0.11100 None None 0 det(carbon-14_NN_3_14, the_DT_2_10); rcmod(carbon-14_NN_3_14, contains_VBZ_6_32); dobj(contains_VBZ_6_32, that_IN_4_24); nsubj(contains_VBZ_6_32, it_PRP_5_29); prep(contains_VBZ_6_32, at_IN_7_41); pobj(at_IN_7_41, time_NN_9_48); det(time_NN_9_48, the_DT_8_44); prep(time_NN_9_48, of_IN_10_53); pobj(of_IN_10_53, death_NN_11_56); advmod(decays_VBZ_13_69, However_RB_0_0); punct(decays_VBZ_13_69, ,_,_1_8); nsubj(decays_VBZ_13_69, carbon-14_NN_3_14); advmod(decays_VBZ_13_69, slowly_RB_12_62); prep(decays_VBZ_13_69, into_IN_14_76); punct(decays_VBZ_13_69, ._._19_111); pobj(into_IN_14_76, element_NN_16_89); det(element_NN_16_89, another_DT_15_81); punct(element_NN_16_89, ,_,_17_97); appos(element_NN_16_89, nitrogen-14_CD_18_99) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 it ;;; it_PRP_5_29 that contains at ;;; that_IN_4_24; contains_VBZ_6_32 the time of death ;;; the_DT_8_44; time_NN_9_48; of_IN_10_53; death_NN_11_56 0.24440 None None 1 det(carbon-14_NN_3_14, the_DT_2_10); rcmod(carbon-14_NN_3_14, contains_VBZ_6_32); dobj(contains_VBZ_6_32, that_IN_4_24); nsubj(contains_VBZ_6_32, it_PRP_5_29); prep(contains_VBZ_6_32, at_IN_7_41); pobj(at_IN_7_41, time_NN_9_48); det(time_NN_9_48, the_DT_8_44); prep(time_NN_9_48, of_IN_10_53); pobj(of_IN_10_53, death_NN_11_56); advmod(decays_VBZ_13_69, However_RB_0_0); punct(decays_VBZ_13_69, ,_,_1_8); nsubj(decays_VBZ_13_69, carbon-14_NN_3_14); advmod(decays_VBZ_13_69, slowly_RB_12_62); prep(decays_VBZ_13_69, into_IN_14_76); punct(decays_VBZ_13_69, ._._19_111); pobj(into_IN_14_76, element_NN_16_89); det(element_NN_16_89, another_DT_15_81); punct(element_NN_16_89, ,_,_17_97); appos(element_NN_16_89, nitrogen-14_CD_18_99) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 the carbon-14 that it contains at the time of death ;;; the_DT_2_10; carbon-14_NN_3_14; that_IN_4_24; it_PRP_5_29; contains_VBZ_6_32; at_IN_7_41; the_DT_8_44; time_NN_9_48; of_IN_10_53; death_NN_11_56 However slowly decays into ;;; However_RB_0_0; slowly_RB_12_62; decays_VBZ_13_69 another element ;;; another_DT_15_81; element_NN_16_89 0.24440 None None 0 poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_17_94 is not captured home to ;;; is_VBZ_18_97; not_RB_19_100; captured_VBN_20_104; home_NN_23_126 the plantation ;;; the_DT_25_134; plantation_NN_26_138 1.00000 None None 1 poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134) Template {rel} {arg1} dobj> {arg2} 0.1443 his father ;;; his_PRP$_1_8; father_NN_2_12 However betrays ;;; However_RB_0_0; betrays_VBZ_6_35 his whereabouts ;;; his_PRP$_7_43; whereabouts_NN_8_47 0.14430 None None 0 poss(father_NN_2_12, his_PRP$_1_8); punct(father_NN_2_12, ,_,_3_19); appos(father_NN_2_12, Whitechapel_NNP_4_21); punct(father_NN_2_12, ,_,_5_33); advmod(betrays_VBZ_6_35, However_RB_0_0); nsubj(betrays_VBZ_6_35, father_NN_2_12); dobj(betrays_VBZ_6_35, whereabouts_NN_8_47); punct(betrays_VBZ_6_35, ,_,_9_59); xcomp(betrays_VBZ_6_35, fearing_VBG_10_61); punct(betrays_VBZ_6_35, ._._27_149); poss(whereabouts_NN_8_47, his_PRP$_7_43); ccomp(fearing_VBG_10_61, die_VB_15_87); poss(son_NN_13_78, his_PRP$_12_74); complm(die_VB_15_87, that_IN_11_69); nsubj(die_VB_15_87, son_NN_13_78); aux(die_VB_15_87, will_MD_14_82); advcl(die_VB_15_87, captured_VBN_20_104); mark(captured_VBN_20_104, if_IN_16_91); nsubjpass(captured_VBN_20_104, he_PRP_17_94); auxpass(captured_VBN_20_104, is_VBZ_18_97); neg(captured_VBN_20_104, not_RB_19_100); cc(captured_VBN_20_104, and_CC_21_113); conj(captured_VBN_20_104, returned_VBN_22_117); dobj(captured_VBN_20_104, home_NN_23_126); prep(captured_VBN_20_104, to_TO_24_131); pobj(to_TO_24_131, plantation_NN_26_138); det(plantation_NN_26_138, the_DT_25_134) Template be {rel} {arg1} dobj> {arg2} 0.0191 he ;;; he_PRP_17_94 is not captured ;;; is_VBZ_18_97; not_RB_19_100; captured_VBN_20_104 home ;;; home_NN_23_126 0.01910 None None 1 nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 government ;;; government_NN_10_57 operated Hutt Park Railway in ;;; operated_VBD_11_68; Hutt_NNP_12_77; Park_NNP_13_82; Railway_NNP_14_87 Petone ;;; Petone_NNP_16_98 0.73450 None None 1 nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Petone ;;; Petone_NNP_16_98 be a suburb of the city of Lower Hutt in ;;; a_DT_18_107; suburb_NN_19_109; of_IN_20_116; the_DT_21_119; city_NN_22_123; of_IN_23_128; Lower_NNP_24_131; Hutt_NNP_25_137 the Wellington region of New Zealand ;;; the_DT_27_145; Wellington_NNP_28_149; region_NN_29_160; of_IN_30_167; New_NNP_31_170; Zealand_NNP_32_174 0.40310 None None 1 nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Petone ;;; Petone_NNP_16_98 be a suburb of ;;; a_DT_18_107; suburb_NN_19_109 the city of Lower Hutt ;;; the_DT_21_119; city_NN_22_123; of_IN_23_128; Lower_NNP_24_131; Hutt_NNP_25_137 0.40310 None None 1 nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) Template {rel} {arg1} dobj> {arg2} 0.3797 government ;;; government_NN_10_57 operated ;;; operated_VBD_11_68 Hutt Park Railway ;;; Hutt_NNP_12_77; Park_NNP_13_82; Railway_NNP_14_87 0.37970 None None 1 nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) Template be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0961 Wellington ;;; Wellington_NNP_28_149 be region of ;;; region_NN_29_160 New Zealand ;;; New_NNP_31_170; Zealand_NNP_32_174 0.09610 None None 0 nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) Template be {rel} in {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0331 New Zealand ;;; New_NNP_31_170; Zealand_NNP_32_174 be region in ;;; region_NN_29_160 Wellington ;;; Wellington_NNP_28_149 0.03310 None None 1 nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) Template be {rel} in {arg1:postag=NNP} prep_of> {arg2:postag=NNP} 0.021 Wellington ;;; Wellington_NNP_28_149 be region in ;;; region_NN_29_160 New Zealand ;;; New_NNP_31_170; Zealand_NNP_32_174 0.02100 None None 1 nn(station_NN_3_18, Hutt_NNP_0_0); nn(station_NN_3_18, Park_NNP_1_5); nn(station_NN_3_18, railway_NN_2_10); nsubj(was_VBD_4_26, station_NN_3_18); prep(was_VBD_4_26, on_IN_5_30); punct(was_VBD_4_26, ._._36_197); pobj(on_IN_5_30, owned_VBN_8_47); dep(owned_VBN_8_47, the_DT_6_33); advmod(owned_VBN_8_47, privately_RB_7_37); cc(owned_VBN_8_47, but_CC_9_53); conj(owned_VBN_8_47, operated_VBD_11_68); nsubj(operated_VBD_11_68, government_NN_10_57); dobj(operated_VBD_11_68, Railway_NNP_14_87); prep(operated_VBD_11_68, in_IN_15_95); dep(operated_VBD_11_68, s_VBZ_33_182); nn(Railway_NNP_14_87, Hutt_NNP_12_77); nn(Railway_NNP_14_87, Park_NNP_13_82); pobj(in_IN_15_95, Petone_NNP_16_98); punct(Petone_NNP_16_98, ,_,_17_105); appos(Petone_NNP_16_98, suburb_NN_19_109); det(suburb_NN_19_109, a_DT_18_107); prep(suburb_NN_19_109, of_IN_20_116); prep(suburb_NN_19_109, in_IN_26_142); pobj(of_IN_20_116, city_NN_22_123); det(city_NN_22_123, the_DT_21_119); prep(city_NN_22_123, of_IN_23_128); pobj(of_IN_23_128, Hutt_NNP_25_137); nn(Hutt_NNP_25_137, Lower_NNP_24_131); pobj(in_IN_26_142, region_NN_29_160); det(region_NN_29_160, the_DT_27_145); nn(region_NN_29_160, Wellington_NNP_28_149); prep(region_NN_29_160, of_IN_30_167); pobj(of_IN_30_167, Zealand_NNP_32_174); nn(Zealand_NNP_32_174, New_NNP_31_170); dobj(s_VBZ_33_182, Island_NNP_35_190); nn(Island_NNP_35_190, North_NNP_34_184) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Hutt Park Railway ;;; Hutt_NNP_12_77; Park_NNP_13_82; Railway_NNP_14_87 be operated in ;;; operated_VBD_11_68 Petone ;;; Petone_NNP_16_98 0.01550 None None 0 mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 she ;;; she_PRP_1_3 be confirmed by ;;; confirmed_VBN_8_42 the Senate ;;; the_DT_10_55; Senate_NNP_11_59 1.00000 None None 0 mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 she ;;; she_PRP_1_3 is nominated by ;;; is_VBZ_2_7; nominated_VBN_3_10 President Bush ;;; President_NNP_5_23; Bush_NNP_6_33 1.00000 None None 1 mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) Template {rel} {arg1} dobj> {arg2} 0.1473 Dr. Novello ;;; Dr._NNP_13_68; Novello_NNP_14_72 would succeed ;;; would_MD_15_80; succeed_VB_16_86 C. Everett Koop ;;; C._NNP_17_94; Everett_NNP_18_97; Koop_NNP_19_105 0.14730 If_she is nominated by President Bush and confirmed by the Senate_0_11 None 1 mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 C. Everett Koop ;;; C._NNP_17_94; Everett_NNP_18_97; Koop_NNP_19_105 rattled conservatives alike with ;;; rattled_VBD_22_116; conservatives_NN_25_137; alike_RB_26_151 his outspoken views ;;; his_PRP$_28_162; outspoken_JJ_29_166; views_NN_30_176 0.02000 None None 1 mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 C. Everett Koop ;;; C._NNP_17_94; Everett_NNP_18_97; Koop_NNP_19_105 rattled liberals alike with ;;; rattled_VBD_22_116; liberals_NN_23_124; alike_RB_26_151 his outspoken views ;;; his_PRP$_28_162; outspoken_JJ_29_166; views_NN_30_176 0.02000 None None 1 mark(nominated_VBN_3_10, If_IN_0_0); nsubjpass(nominated_VBN_3_10, she_PRP_1_3); auxpass(nominated_VBN_3_10, is_VBZ_2_7); prep(nominated_VBN_3_10, by_IN_4_20); cc(nominated_VBN_3_10, and_CC_7_38); conj(nominated_VBN_3_10, confirmed_VBN_8_42); pobj(by_IN_4_20, Bush_NNP_6_33); nn(Bush_NNP_6_33, President_NNP_5_23); prep(confirmed_VBN_8_42, by_IN_9_52); pobj(by_IN_9_52, Senate_NNP_11_59); det(Senate_NNP_11_59, the_DT_10_55); nn(Novello_NNP_14_72, Dr._NNP_13_68); advcl(succeed_VB_16_86, nominated_VBN_3_10); punct(succeed_VB_16_86, ,_,_12_66); nsubj(succeed_VB_16_86, Novello_NNP_14_72); aux(succeed_VB_16_86, would_MD_15_80); dobj(succeed_VB_16_86, Koop_NNP_19_105); punct(succeed_VB_16_86, ._._37_210); nn(Koop_NNP_19_105, C._NNP_17_94); nn(Koop_NNP_19_105, Everett_NNP_18_97); punct(Koop_NNP_19_105, ,_,_20_110); rcmod(Koop_NNP_19_105, rattled_VBD_22_116); nsubj(rattled_VBD_22_116, who_WP_21_112); dobj(rattled_VBD_22_116, liberals_NNS_23_124); advmod(rattled_VBD_22_116, alike_RB_26_151); prep(rattled_VBD_22_116, with_IN_27_157); cc(liberals_NNS_23_124, and_CC_24_133); conj(liberals_NNS_23_124, conservatives_NNS_25_137); pobj(with_IN_27_157, views_NNS_30_176); poss(views_NNS_30_176, his_PRP$_28_162); amod(views_NNS_30_176, outspoken_JJ_29_166); prep(views_NNS_30_176, on_IN_31_182); pobj(on_IN_31_182, range_NN_33_187); det(range_NN_33_187, a_DT_32_185); prep(range_NN_33_187, of_IN_34_193); pobj(of_IN_34_193, issues_NNS_36_203); nn(issues_NNS_36_203, health_NN_35_196) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 liberals and conservatives ;;; liberals_NN_23_124; and_CC_24_133; conservatives_NN_25_137 be rattled alike with ;;; rattled_VBD_22_116; alike_RB_26_151 his outspoken views ;;; his_PRP$_28_162; outspoken_JJ_29_166; views_NN_30_176 0.01550 None None 1 nn(Sastri_NNP_3_23, Sivanath_NNP_2_14); punct(Sastri_NNP_3_23, ,_,_4_30); conj(Sastri_NNP_3_23, Sircar_NNP_6_41); cc(Sastri_NNP_3_23, and_CC_7_48); conj(Sastri_NNP_3_23, Ganguly_NNP_9_63); punct(Sastri_NNP_3_23, ,_,_10_71); nn(Sircar_NNP_6_41, Nilratan_NNP_5_32); nn(Ganguly_NNP_9_63, Dwarkanath_NNP_8_52); advmod(instituted_VBD_11_73, Immediately_RB_0_0); punct(instituted_VBD_11_73, ,_,_1_12); nsubj(instituted_VBD_11_73, Sastri_NNP_3_23); dobj(instituted_VBD_11_73, action_NN_13_90); punct(instituted_VBD_11_73, ._._39_237); amod(action_NN_13_90, legal_JJ_12_84); prep(action_NN_13_90, against_IN_14_97); pobj(against_IN_14_97, journal_NN_16_109); det(journal_NN_16_109, the_DT_15_105); cc(journal_NN_16_109, and_CC_17_117); conj(journal_NN_16_109, editor_NN_19_125); punct(journal_NN_16_109, ,_,_20_132); rcmod(journal_NN_16_109, sentenced_VBN_24_155); poss(editor_NN_19_125, its_PRP$_18_121); nsubjpass(sentenced_VBN_24_155, who_WP_21_134); auxpass(sentenced_VBN_24_155, was_VBD_22_138); advmod(sentenced_VBN_24_155, subsequently_RB_23_142); prep(sentenced_VBN_24_155, to_TO_25_165); punct(sentenced_VBN_24_155, imprisonment_,_28_179); cc(sentenced_VBN_24_155, and_CC_29_192); conj(sentenced_VBN_24_155, made_VBD_30_196); pobj(to_TO_25_165, months_NNS_27_172); num(months_NNS_27_172, six_CD_26_168); xcomp(made_VBD_30_196, pay_VB_32_204); aux(pay_VB_32_204, to_TO_31_201); dobj(pay_VB_32_204, fine_NN_34_210); det(fine_NN_34_210, a_DT_33_208); prep(fine_NN_34_210, of_IN_35_215); pobj(of_IN_35_215, rupees_NNS_38_230); number(hundred_CD_37_222, one_CD_36_218); num(rupees_NNS_38_230, hundred_CD_37_222) Template {rel} {arg1} dobj> {arg2} 0.3797 Sivanath Sastri , Nilratan Sircar and Dwarkanath Ganguly ;;; Sivanath_NNP_2_14; Sastri_NNP_3_23; ,_,_4_30; Nilratan_NNP_5_32; Sircar_NNP_6_41; and_CC_7_48; Dwarkanath_NNP_8_52; Ganguly_NNP_9_63 Immediately instituted ;;; Immediately_RB_0_0; instituted_VBD_11_73 legal action ;;; legal_JJ_12_84; action_NN_13_90 0.37970 None None 1 pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the Australian Black Swan ;;; the_DT_3_10; Australian_NNP_4_14; Black_NNP_5_25; Swan_NNP_6_31 was introduced as ;;; was_VBD_7_36; introduced_VBN_8_40 an ornamental waterfowl ;;; an_DT_13_69; ornamental_JJ_14_72; waterfowl_NN_15_83 1.00000 None None 1 pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the Australian Black Swan ;;; the_DT_3_10; Australian_NNP_4_14; Black_NNP_5_25; Swan_NNP_6_31 was introduced in ;;; was_VBD_7_36; introduced_VBN_8_40 1864 ;;; 1864_CD_1_3 1.00000 None None 1 pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the Australian Black Swan ;;; the_DT_3_10; Australian_NNP_4_14; Black_NNP_5_25; Swan_NNP_6_31 was introduced to ;;; was_VBD_7_36; introduced_VBN_8_40 New Zealand ;;; New_NNP_10_54; Zealand_NNP_11_58 1.00000 None None 1 pobj(In_IN_0_0, 1864_CD_1_3); det(Swan_NNP_6_31, the_DT_3_10); nn(Swan_NNP_6_31, Australian_NNP_4_14); nn(Swan_NNP_6_31, Black_NNP_5_25); prep(introduced_VBN_8_40, In_IN_0_0); punct(introduced_VBN_8_40, ,_,_2_8); nsubjpass(introduced_VBN_8_40, Swan_NNP_6_31); auxpass(introduced_VBN_8_40, was_VBD_7_36); prep(introduced_VBN_8_40, to_TO_9_51); prep(introduced_VBN_8_40, as_IN_12_66); punct(introduced_VBN_8_40, ,_,_16_93); cc(introduced_VBN_8_40, and_CC_17_95); conj(introduced_VBN_8_40, common_JJ_21_119); punct(introduced_VBN_8_40, ,_,_38_223); cc(introduced_VBN_8_40, and_CC_39_225); conj(introduced_VBN_8_40, Islands_NNP_42_241); punct(introduced_VBN_8_40, ._._43_249); pobj(to_TO_9_51, Zealand_NNP_11_58); nn(Zealand_NNP_11_58, New_NNP_10_54); pobj(as_IN_12_66, waterfowl_NN_15_83); det(waterfowl_NN_15_83, an_DT_13_69); amod(waterfowl_NN_15_83, ornamental_JJ_14_72); nsubj(common_JJ_21_119, populations_NNS_18_99); cop(common_JJ_21_119, are_VBP_19_111); advmod(common_JJ_21_119, now_RB_20_115); prep(common_JJ_21_119, on_IN_22_126); pobj(on_IN_22_126, coastal_NN_24_136); amod(coastal_NN_24_136, larger_JJR_23_129); cc(coastal_NN_24_136, or_CC_25_144); conj(coastal_NN_24_136, lakes_NNS_27_154); punct(coastal_NN_24_136, ,_,_28_160); appos(coastal_NN_24_136, Lakes_NNP_31_181); nn(lakes_NNS_27_154, inland_NN_26_147); advmod(Lakes_NNP_31_181, especially_RB_29_162); nn(Lakes_NNP_31_181, Rotorua_NNP_30_173); punct(Lakes_NNP_31_181, ,_,_32_187); conj(Lakes_NNP_31_181, Wairarapa_NNP_34_194); cc(Lakes_NNP_31_181, and_CC_35_204); conj(Lakes_NNP_31_181, Ellesmere_NNP_37_213); nn(Wairarapa_NNP_34_194, Lake_NNP_33_189); nn(Ellesmere_NNP_37_213, Lake_NNP_36_208); det(Islands_NNP_42_241, the_DT_40_229); nn(Islands_NNP_42_241, Chatham_NNP_41_233) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 populations ;;; populations_NN_18_99 are now common on ;;; are_VBP_19_111; now_RB_20_115; common_JJ_21_119 larger coastal or inland lakes ;;; larger_JJR_23_129; coastal_NN_24_136; or_CC_25_144; inland_NN_26_147; lakes_NN_27_154 0.04780 None None 1 pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 he ;;; he_PRP_2_8 was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore in ;;; was_VBD_3_11; a_DT_4_15; co-founder_NN_5_17; member_NN_6_28; ,_,_7_35; with_IN_8_37; Sir_NNP_9_42; Ian_NNP_10_46; McKellen_NNP_11_50; and_CC_12_59; Edward_NNP_13_63; Petherbridge_NNP_14_70; ,_,_15_83; of_IN_16_85; the_DT_17_88; democratically_NN_18_92; run_NN_19_107; Actors_NNP_20_111; '_POS_21_117; Company_NN_22_119; ,_,_23_127; playing_VBG_24_129; Vasques_NNP_25_137; in_IN_26_145; '_''_27_148; Tis_NNP_28_150; Pity_NNP_29_154; She_PRP_30_159; 's_VBZ_31_163; a_DT_32_166; Whore_JJ_33_168 1972 ;;; 1972_CD_1_3 0.95550 None None 0 pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 he ;;; he_PRP_2_8 was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore with ;;; was_VBD_3_11; a_DT_4_15; co-founder_NN_5_17; member_NN_6_28; ,_,_7_35; with_IN_8_37; Sir_NNP_9_42; Ian_NNP_10_46; McKellen_NNP_11_50; and_CC_12_59; Edward_NNP_13_63; Petherbridge_NNP_14_70; ,_,_15_83; of_IN_16_85; the_DT_17_88; democratically_NN_18_92; run_NN_19_107; Actors_NNP_20_111; '_POS_21_117; Company_NN_22_119; ,_,_23_127; playing_VBG_24_129; Vasques_NNP_25_137; in_IN_26_145; '_''_27_148; Tis_NNP_28_150; Pity_NNP_29_154; She_PRP_30_159; 's_VBZ_31_163; a_DT_32_166; Whore_JJ_33_168 Sir Ian McKellen and Edward Petherbridge , of the democratically run ;;; Sir_NNP_9_42; Ian_NNP_10_46; McKellen_NNP_11_50; and_CC_12_59; Edward_NNP_13_63; Petherbridge_NNP_14_70; ,_,_15_83; of_IN_16_85; the_DT_17_88; democratically_NN_18_92; run_NN_19_107 0.95550 None None 0 pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) Template be {rel} of {arg1} prep_in> {arg2} 0.0388 he ;;; he_PRP_2_8 was a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore of ;;; was_VBD_3_11; a_DT_4_15; co-founder_NN_5_17; member_NN_6_28; ,_,_7_35; with_IN_8_37; Sir_NNP_9_42; Ian_NNP_10_46; McKellen_NNP_11_50; and_CC_12_59; Edward_NNP_13_63; Petherbridge_NNP_14_70; ,_,_15_83; of_IN_16_85; the_DT_17_88; democratically_NN_18_92; run_NN_19_107; Actors_NNP_20_111; '_POS_21_117; Company_NN_22_119; ,_,_23_127; playing_VBG_24_129; Vasques_NNP_25_137; in_IN_26_145; '_''_27_148; Tis_NNP_28_150; Pity_NNP_29_154; She_PRP_30_159; 's_VBZ_31_163; a_DT_32_166; Whore_JJ_33_168 1972 ;;; 1972_CD_1_3 0.03880 None None 0 pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 he ;;; he_PRP_2_8 was ;;; was_VBD_3_11 a co-founder member , with Sir Ian McKellen and Edward Petherbridge , of the democratically run Actors ' Company , playing Vasques in ' Tis Pity She 's a Whore ;;; a_DT_4_15; co-founder_NN_5_17; member_NN_6_28; ,_,_7_35; with_IN_8_37; Sir_NNP_9_42; Ian_NNP_10_46; McKellen_NNP_11_50; and_CC_12_59; Edward_NNP_13_63; Petherbridge_NNP_14_70; ,_,_15_83; of_IN_16_85; the_DT_17_88; democratically_NN_18_92; run_NN_19_107; Actors_NNP_20_111; '_POS_21_117; Company_NN_22_119; ,_,_23_127; playing_VBG_24_129; Vasques_NNP_25_137; in_IN_26_145; '_''_27_148; Tis_NNP_28_150; Pity_NNP_29_154; She_PRP_30_159; 's_VBZ_31_163; a_DT_32_166; Whore_JJ_33_168 0.02160 None None 0 pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0086 a Whore ;;; a_DT_32_166; Whore_JJ_33_168 was a co-founder member in ;;; was_VBD_3_11; a_DT_4_15; co-founder_NN_5_17; member_NN_6_28 1972 ;;; 1972_CD_1_3 0.00860 None None 0 pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0086 a Whore ;;; a_DT_32_166; Whore_JJ_33_168 was a co-founder member with ;;; was_VBD_3_11; a_DT_4_15; co-founder_NN_5_17; member_NN_6_28 Sir Ian McKellen and Edward Petherbridge , of the democratically run ;;; Sir_NNP_9_42; Ian_NNP_10_46; McKellen_NNP_11_50; and_CC_12_59; Edward_NNP_13_63; Petherbridge_NNP_14_70; ,_,_15_83; of_IN_16_85; the_DT_17_88; democratically_NN_18_92; run_NN_19_107 0.00860 None None 1 pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 She ;;; She_PRP_30_159 's ;;; 's_VBZ_31_163 a Whore ;;; a_DT_32_166; Whore_JJ_33_168 0.00840 None None 0 pobj(In_IN_0_0, 1972_CD_1_3); prep(member_NN_6_28, In_IN_0_0); nsubj(member_NN_6_28, he_PRP_2_8); cop(member_NN_6_28, was_VBD_3_11); det(member_NN_6_28, a_DT_4_15); nn(member_NN_6_28, co-founder_NN_5_17); punct(member_NN_6_28, ,_,_7_35); prep(member_NN_6_28, with_IN_8_37); punct(member_NN_6_28, ,_,_23_127); amod(member_NN_6_28, Whore_JJ_33_168); punct(member_NN_6_28, ._._56_285); pobj(with_IN_8_37, McKellen_NNP_11_50); nn(McKellen_NNP_11_50, Sir_NNP_9_42); nn(McKellen_NNP_11_50, Ian_NNP_10_46); cc(McKellen_NNP_11_50, and_CC_12_59); conj(McKellen_NNP_11_50, Petherbridge_NNP_14_70); punct(McKellen_NNP_11_50, ,_,_15_83); prep(McKellen_NNP_11_50, of_IN_16_85); nn(Petherbridge_NNP_14_70, Edward_NNP_13_63); pobj(of_IN_16_85, run_NN_19_107); det(run_NN_19_107, the_DT_17_88); nn(run_NN_19_107, democratically_NN_18_92); dep(run_NN_19_107, Company_NN_22_119); possessive(Actors_NNP_20_111, '_POS_21_117); poss(Company_NN_22_119, Actors_NNP_20_111); dobj(playing_VBG_24_129, Vasques_NNP_25_137); prep(playing_VBG_24_129, in_IN_26_145); pobj(in_IN_26_145, Pity_NNP_29_154); punct(Pity_NNP_29_154, '_''_27_148); nn(Pity_NNP_29_154, Tis_NNPS_28_150); dep(Whore_JJ_33_168, playing_VBG_24_129); nsubj(Whore_JJ_33_168, She_PRP_30_159); cop(Whore_JJ_33_168, 's_VBZ_31_163); det(Whore_JJ_33_168, a_DT_32_166); punct(Whore_JJ_33_168, ,_,_34_174); dep(Whore_JJ_33_168, Inspector_NNP_35_176); prep(Whore_JJ_33_168, in_IN_38_196); prep(Inspector_NNP_35_176, of_IN_36_186); pobj(of_IN_36_186, Police_NNP_37_189); pcomp(in_IN_38_196, Ruling_VBG_39_199); dobj(Ruling_VBG_39_199, the_DT_40_206); prep(Ruling_VBG_39_199, in_IN_44_226); prep(the_DT_40_206, Roost_JJ_41_210); cc(Roost_JJ_41_210, and_CC_42_216); conj(Roost_JJ_41_210, Okano_NNP_43_220); pobj(in_IN_44_226, Arrows_NNS_47_239); det(Arrows_NNS_47_239, The_DT_45_229); num(Arrows_NNS_47_239, Three_CD_46_233); prep(Arrows_NNS_47_239, at_IN_48_246); pobj(at_IN_48_246, Arts_NNP_50_253); det(Arts_NNP_50_253, the_DT_49_249); punct(Arts_NNP_50_253, ,_,_51_257); appos(Arts_NNP_50_253, Cambridge_NNP_52_259); prep(Cambridge_NNP_52_259, in_IN_53_269); pobj(in_IN_53_269, October_NNP_54_272); num(October_NNP_54_272, 1972_CD_55_280) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 Vasques ;;; Vasques_NNP_25_137 be playing in ;;; playing_VBG_24_129 Tis Pity ;;; Tis_NNP_28_150; Pity_NNP_29_154 0.00790 None None 1 pobj(In_IN_0_0, 1997_CD_1_3); det(band_NN_3_12, the_DT_2_8); prep(reached_VBD_4_17, In_IN_0_0); nsubj(reached_VBD_4_17, band_NN_3_12); dobj(reached_VBD_4_17, audience_NN_7_33); punct(reached_VBD_4_17, ._._15_89); det(audience_NN_7_33, a_DT_5_25); amod(audience_NN_7_33, wider_JJR_6_27); partmod(audience_NN_7_33, supporting_VBG_8_42); dobj(supporting_VBG_8_42, Negative_NNP_14_80); nn(Negative_NNP_14_80, U.S._NNP_9_53); nn(Negative_NNP_14_80, goth-metal_NN_10_58); nn(Negative_NNP_14_80, act_NN_11_69); nn(Negative_NNP_14_80, Type_NNP_12_73); nn(Negative_NNP_14_80, O_NNP_13_78) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the band ;;; the_DT_2_8; band_NN_3_12 reached a wider audience supporting U.S. goth-metal act Type O Negative in ;;; reached_VBD_4_17; a_DT_5_25; wider_JJR_6_27; audience_NN_7_33; supporting_VBG_8_42; U.S._NNP_9_53; goth-metal_NN_10_58; act_NN_11_69; Type_NNP_12_73; O_NNP_13_78; Negative_NNP_14_80 1997 ;;; 1997_CD_1_3 0.73450 None None 1 pobj(In_IN_0_0, 1997_CD_1_3); det(band_NN_3_12, the_DT_2_8); prep(reached_VBD_4_17, In_IN_0_0); nsubj(reached_VBD_4_17, band_NN_3_12); dobj(reached_VBD_4_17, audience_NN_7_33); punct(reached_VBD_4_17, ._._15_89); det(audience_NN_7_33, a_DT_5_25); amod(audience_NN_7_33, wider_JJR_6_27); partmod(audience_NN_7_33, supporting_VBG_8_42); dobj(supporting_VBG_8_42, Negative_NNP_14_80); nn(Negative_NNP_14_80, U.S._NNP_9_53); nn(Negative_NNP_14_80, goth-metal_NN_10_58); nn(Negative_NNP_14_80, act_NN_11_69); nn(Negative_NNP_14_80, Type_NNP_12_73); nn(Negative_NNP_14_80, O_NNP_13_78) Template {rel} {arg1} dobj> {arg2} 0.3797 the band ;;; the_DT_2_8; band_NN_3_12 reached ;;; reached_VBD_4_17 a wider audience supporting U.S. goth-metal act Type O Negative ;;; a_DT_5_25; wider_JJR_6_27; audience_NN_7_33; supporting_VBG_8_42; U.S._NNP_9_53; goth-metal_NN_10_58; act_NN_11_69; Type_NNP_12_73; O_NNP_13_78; Negative_NNP_14_80 0.37970 None None 1 pobj(In_IN_0_0, 1997_CD_1_3); det(band_NN_3_12, the_DT_2_8); prep(reached_VBD_4_17, In_IN_0_0); nsubj(reached_VBD_4_17, band_NN_3_12); dobj(reached_VBD_4_17, audience_NN_7_33); punct(reached_VBD_4_17, ._._15_89); det(audience_NN_7_33, a_DT_5_25); amod(audience_NN_7_33, wider_JJR_6_27); partmod(audience_NN_7_33, supporting_VBG_8_42); dobj(supporting_VBG_8_42, Negative_NNP_14_80); nn(Negative_NNP_14_80, U.S._NNP_9_53); nn(Negative_NNP_14_80, goth-metal_NN_10_58); nn(Negative_NNP_14_80, act_NN_11_69); nn(Negative_NNP_14_80, Type_NNP_12_73); nn(Negative_NNP_14_80, O_NNP_13_78) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 a wider audience supporting U.S. goth-metal act Type O Negative ;;; a_DT_5_25; wider_JJR_6_27; audience_NN_7_33; supporting_VBG_8_42; U.S._NNP_9_53; goth-metal_NN_10_58; act_NN_11_69; Type_NNP_12_73; O_NNP_13_78; Negative_NNP_14_80 be reached in ;;; reached_VBD_4_17 1997 ;;; 1997_CD_1_3 0.01550 None None 1 pobj(In_IN_0_0, 2004_CD_1_3); nn(Bakery_NNP_4_19, Greyston_NNP_3_10); prep(moved_VBD_5_26, In_IN_0_0); punct(moved_VBD_5_26, ,_,_2_8); nsubj(moved_VBD_5_26, Bakery_NNP_4_19); prep(moved_VBD_5_26, to_TO_6_32); punct(moved_VBD_5_26, ._._17_96); pobj(to_TO_6_32, facility_NN_9_44); det(facility_NN_9_44, a_DT_7_35); amod(facility_NN_9_44, larger_JJR_8_37); partmod(facility_NN_9_44, designed_VBN_10_53); prep(designed_VBN_10_53, by_IN_11_62); xcomp(designed_VBN_10_53, accommodate_VB_15_77); pobj(by_IN_11_62, Lin_NNP_13_70); nn(Lin_NNP_13_70, Maya_NNP_12_65); aux(accommodate_VB_15_77, to_TO_14_74); dobj(accommodate_VB_15_77, growth_NN_16_89) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Greyston Bakery ;;; Greyston_NNP_3_10; Bakery_NNP_4_19 moved in ;;; moved_VBD_5_26 2004 ;;; 2004_CD_1_3 0.73450 None None 1 pobj(In_IN_0_0, 2004_CD_1_3); nn(Bakery_NNP_4_19, Greyston_NNP_3_10); prep(moved_VBD_5_26, In_IN_0_0); punct(moved_VBD_5_26, ,_,_2_8); nsubj(moved_VBD_5_26, Bakery_NNP_4_19); prep(moved_VBD_5_26, to_TO_6_32); punct(moved_VBD_5_26, ._._17_96); pobj(to_TO_6_32, facility_NN_9_44); det(facility_NN_9_44, a_DT_7_35); amod(facility_NN_9_44, larger_JJR_8_37); partmod(facility_NN_9_44, designed_VBN_10_53); prep(designed_VBN_10_53, by_IN_11_62); xcomp(designed_VBN_10_53, accommodate_VB_15_77); pobj(by_IN_11_62, Lin_NNP_13_70); nn(Lin_NNP_13_70, Maya_NNP_12_65); aux(accommodate_VB_15_77, to_TO_14_74); dobj(accommodate_VB_15_77, growth_NN_16_89) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Greyston Bakery ;;; Greyston_NNP_3_10; Bakery_NNP_4_19 moved to ;;; moved_VBD_5_26 a larger facility designed by Maya Lin to accommodate growth ;;; a_DT_7_35; larger_JJR_8_37; facility_NN_9_44; designed_VBN_10_53; by_IN_11_62; Maya_NNP_12_65; Lin_NNP_13_70; to_TO_14_74; accommodate_VB_15_77; growth_NN_16_89 0.73450 None None 1 pobj(In_IN_0_0, 2004_CD_1_3); nn(Bakery_NNP_4_19, Greyston_NNP_3_10); prep(moved_VBD_5_26, In_IN_0_0); punct(moved_VBD_5_26, ,_,_2_8); nsubj(moved_VBD_5_26, Bakery_NNP_4_19); prep(moved_VBD_5_26, to_TO_6_32); punct(moved_VBD_5_26, ._._17_96); pobj(to_TO_6_32, facility_NN_9_44); det(facility_NN_9_44, a_DT_7_35); amod(facility_NN_9_44, larger_JJR_8_37); partmod(facility_NN_9_44, designed_VBN_10_53); prep(designed_VBN_10_53, by_IN_11_62); xcomp(designed_VBN_10_53, accommodate_VB_15_77); pobj(by_IN_11_62, Lin_NNP_13_70); nn(Lin_NNP_13_70, Maya_NNP_12_65); aux(accommodate_VB_15_77, to_TO_14_74); dobj(accommodate_VB_15_77, growth_NN_16_89) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 a larger facility ;;; a_DT_7_35; larger_JJR_8_37; facility_NN_9_44 be designed by ;;; designed_VBN_10_53 Maya Lin ;;; Maya_NNP_12_65; Lin_NNP_13_70 0.11100 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Gruner + Jahr ;;; Gruner_NNP_3_10; +_NNP_4_17; Jahr_NNP_5_19 exited the U.S. magazine business in ;;; exited_VBD_6_24; the_DT_7_31; U.S._NNP_8_35; magazine_NN_9_40; business_NN_10_49 2005 ;;; 2005_CD_1_3 0.73450 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.7345 Gruner + Jahr ;;; Gruner_NNP_3_10; +_NNP_4_17; Jahr_NNP_5_19 exited the U.S. magazine business selling its women 's magazine portfolio to ;;; exited_VBD_6_24; the_DT_7_31; U.S._NNP_8_35; magazine_NN_9_40; business_NN_10_49; selling_VBG_12_60; its_PRP$_13_68; women_NN_14_72; 's_POS_15_78; magazine_NN_16_81; portfolio_NN_17_90 the Meredith Corporation and its business magazine portfolio ;;; the_DT_19_103; Meredith_NNP_20_107; Corporation_NNP_21_116; and_CC_22_128; its_PRP$_23_132; business_NN_24_136; magazine_NN_25_145; portfolio_NN_26_154 0.73450 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797 Gruner + Jahr ;;; Gruner_NNP_3_10; +_NNP_4_17; Jahr_NNP_5_19 exited the U.S. magazine business selling ;;; exited_VBD_6_24; the_DT_7_31; U.S._NNP_8_35; magazine_NN_9_40; business_NN_10_49; selling_VBG_12_60 its women 's magazine portfolio ;;; its_PRP$_13_68; women_NN_14_72; 's_POS_15_78; magazine_NN_16_81; portfolio_NN_17_90 0.37970 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) Template {rel} {arg1} dobj> {arg2} 0.3797 Gruner + Jahr ;;; Gruner_NNP_3_10; +_NNP_4_17; Jahr_NNP_5_19 exited ;;; exited_VBD_6_24 the U.S. magazine business ;;; the_DT_7_31; U.S._NNP_8_35; magazine_NN_9_40; business_NN_10_49 0.37970 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the U.S. magazine business ;;; the_DT_7_31; U.S._NNP_8_35; magazine_NN_9_40; business_NN_10_49 be exited in ;;; exited_VBD_6_24 2005 ;;; 2005_CD_1_3 0.01550 None None 0 pobj(In_IN_0_0, 2005_CD_1_3); nn(Jahr_NNP_5_19, Gruner_NNP_3_10); nn(Jahr_NNP_5_19, +_NNP_4_17); prep(exited_VBD_6_24, In_IN_0_0); punct(exited_VBD_6_24, ,_,_2_8); nsubj(exited_VBD_6_24, Jahr_NNP_5_19); dobj(exited_VBD_6_24, business_NN_10_49); punct(exited_VBD_6_24, ,_,_11_58); xcomp(exited_VBD_6_24, selling_VBG_12_60); punct(exited_VBD_6_24, ._._30_185); det(business_NN_10_49, the_DT_7_31); nn(business_NN_10_49, U.S._NNP_8_35); nn(business_NN_10_49, magazine_NN_9_40); dobj(selling_VBG_12_60, portfolio_NN_17_90); prep(selling_VBG_12_60, to_TO_18_100); poss(women_NNS_14_72, its_PRP$_13_68); possessive(women_NNS_14_72, 's_POS_15_78); poss(portfolio_NN_17_90, women_NNS_14_72); nn(portfolio_NN_17_90, magazine_NN_16_81); pobj(to_TO_18_100, Corporation_NNP_21_116); det(Corporation_NNP_21_116, the_DT_19_103); nn(Corporation_NNP_21_116, Meredith_NNP_20_107); cc(Corporation_NNP_21_116, and_CC_22_128); conj(Corporation_NNP_21_116, portfolio_NN_26_154); poss(portfolio_NN_26_154, its_PRP$_23_132); nn(portfolio_NN_26_154, business_NN_24_136); nn(portfolio_NN_26_154, magazine_NN_25_145); prep(portfolio_NN_26_154, to_TO_27_164); pobj(to_TO_27_164, Ventures_NNP_29_176); nn(Ventures_NNP_29_176, Mansueto_NNP_28_167) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 its women 's magazine portfolio ;;; its_PRP$_13_68; women_NN_14_72; 's_POS_15_78; magazine_NN_16_81; portfolio_NN_17_90 be selling to ;;; selling_VBG_12_60 the Meredith Corporation and its business magazine portfolio ;;; the_DT_19_103; Meredith_NNP_20_107; Corporation_NNP_21_116; and_CC_22_128; its_PRP$_23_132; business_NN_24_136; magazine_NN_25_145; portfolio_NN_26_154 0.00790 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the airline ;;; the_DT_3_10; airline_NN_4_14 launched codeshare flights with Lufthansa from ;;; launched_VBD_5_22; codeshare_NN_6_31; flights_NN_7_41; with_IN_8_49; Lufthansa_NNP_9_54 Shanghai ;;; Shanghai_NNP_13_80 0.73450 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the airline ;;; the_DT_3_10; airline_NN_4_14 launched codeshare flights with Lufthansa in ;;; launched_VBD_5_22; codeshare_NN_6_31; flights_NN_7_41; with_IN_8_49; Lufthansa_NNP_9_54 2005 ;;; 2005_CD_1_3 0.73450 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the airline ;;; the_DT_3_10; airline_NN_4_14 launched codeshare flights with Lufthansa to ;;; launched_VBD_5_22; codeshare_NN_6_31; flights_NN_7_41; with_IN_8_49; Lufthansa_NNP_9_54 Germany ;;; Germany_NNP_11_67 0.73450 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) Template {rel} {arg1} dobj> {arg2} 0.3797 the airline ;;; the_DT_3_10; airline_NN_4_14 launched ;;; launched_VBD_5_22 codeshare flights ;;; codeshare_NN_6_31; flights_NN_7_41 0.37970 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 codeshare flights ;;; codeshare_NN_6_31; flights_NN_7_41 be launched from ;;; launched_VBD_5_22 Shanghai ;;; Shanghai_NNP_13_80 0.01550 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 codeshare flights ;;; codeshare_NN_6_31; flights_NN_7_41 be launched in ;;; launched_VBD_5_22 2005 ;;; 2005_CD_1_3 0.01550 None None 1 pobj(In_IN_0_0, 2005_CD_1_3); det(airline_NN_4_14, the_DT_3_10); prep(launched_VBD_5_22, In_IN_0_0); punct(launched_VBD_5_22, ,_,_2_8); nsubj(launched_VBD_5_22, airline_NN_4_14); dobj(launched_VBD_5_22, flights_NNS_7_41); prep(launched_VBD_5_22, to_TO_10_64); prep(launched_VBD_5_22, from_IN_12_75); punct(launched_VBD_5_22, ._._14_89); nn(flights_NNS_7_41, codeshare_NN_6_31); prep(flights_NNS_7_41, with_IN_8_49); pobj(with_IN_8_49, Lufthansa_NNP_9_54); pobj(to_TO_10_64, Germany_NNP_11_67); pobj(from_IN_12_75, Shanghai_NNP_13_80) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 codeshare flights ;;; codeshare_NN_6_31; flights_NN_7_41 be launched to ;;; launched_VBD_5_22 Germany ;;; Germany_NNP_11_67 0.01550 None None 1 pobj(In_IN_0_0, 2008_CD_1_3); prep(returned_VBD_3_11, In_IN_0_0); nsubj(returned_VBD_3_11, he_PRP_2_8); advmod(returned_VBD_3_11, again_RB_5_25); xcomp(returned_VBD_3_11, perform_VB_7_34); punct(returned_VBD_3_11, ._._28_142); advmod(again_RB_5_25, once_RB_4_20); aux(perform_VB_7_34, to_TO_6_31); prep(perform_VB_7_34, as_IN_8_42); pobj(as_IN_8_42, part_NN_10_47); det(part_NN_10_47, a_DT_9_45); prep(part_NN_10_47, of_IN_11_52); pobj(of_IN_11_52, two-hander_JJ_13_57); det(two-hander_JJ_13_57, a_DT_12_55); prep(two-hander_JJ_13_57, with_IN_14_68); prep(two-hander_JJ_13_57, in_IN_17_85); punct(two-hander_JJ_13_57, -_:_20_99); dep(two-hander_JJ_13_57, Predator_NNP_27_133); pobj(with_IN_14_68, Robins_NNP_16_78); nn(Robins_NNP_16_78, John_NNP_15_73); pobj(in_IN_17_85, show_NN_19_94); poss(show_NN_19_94, their_PRP$_18_88); nn(Predator_NNP_27_133, Carl_NNP_21_101); nn(Predator_NNP_27_133, Donnelly_NNP_22_106); nn(Predator_NNP_27_133, Vs_NNP_23_115); nn(Predator_NNP_27_133, John_NNP_24_118); nn(Predator_NNP_27_133, Robins_NNP_25_123); nn(Predator_NNP_27_133, Vs_NNP_26_130) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_2_8 returned once again in ;;; returned_VBD_3_11; once_RB_4_20; again_RB_5_25 2008 ;;; 2008_CD_1_3 0.73450 None None 1 pobj(In_IN_0_0, 2008_CD_1_3); prep(returned_VBD_3_11, In_IN_0_0); nsubj(returned_VBD_3_11, he_PRP_2_8); advmod(returned_VBD_3_11, again_RB_5_25); xcomp(returned_VBD_3_11, perform_VB_7_34); punct(returned_VBD_3_11, ._._28_142); advmod(again_RB_5_25, once_RB_4_20); aux(perform_VB_7_34, to_TO_6_31); prep(perform_VB_7_34, as_IN_8_42); pobj(as_IN_8_42, part_NN_10_47); det(part_NN_10_47, a_DT_9_45); prep(part_NN_10_47, of_IN_11_52); pobj(of_IN_11_52, two-hander_JJ_13_57); det(two-hander_JJ_13_57, a_DT_12_55); prep(two-hander_JJ_13_57, with_IN_14_68); prep(two-hander_JJ_13_57, in_IN_17_85); punct(two-hander_JJ_13_57, -_:_20_99); dep(two-hander_JJ_13_57, Predator_NNP_27_133); pobj(with_IN_14_68, Robins_NNP_16_78); nn(Robins_NNP_16_78, John_NNP_15_73); pobj(in_IN_17_85, show_NN_19_94); poss(show_NN_19_94, their_PRP$_18_88); nn(Predator_NNP_27_133, Carl_NNP_21_101); nn(Predator_NNP_27_133, Donnelly_NNP_22_106); nn(Predator_NNP_27_133, Vs_NNP_23_115); nn(Predator_NNP_27_133, John_NNP_24_118); nn(Predator_NNP_27_133, Robins_NNP_25_123); nn(Predator_NNP_27_133, Vs_NNP_26_130) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_2_8 returned once again to perform as ;;; returned_VBD_3_11; once_RB_4_20; again_RB_5_25; to_TO_6_31; perform_VB_7_34 a part of a two-hander ;;; a_DT_9_45; part_NN_10_47; of_IN_11_52; a_DT_12_55; two-hander_JJ_13_57 0.73450 None None 1 pobj(In_IN_0_0, 2008_CD_1_3); prep(returned_VBD_3_11, In_IN_0_0); nsubj(returned_VBD_3_11, he_PRP_2_8); advmod(returned_VBD_3_11, again_RB_5_25); xcomp(returned_VBD_3_11, perform_VB_7_34); punct(returned_VBD_3_11, ._._28_142); advmod(again_RB_5_25, once_RB_4_20); aux(perform_VB_7_34, to_TO_6_31); prep(perform_VB_7_34, as_IN_8_42); pobj(as_IN_8_42, part_NN_10_47); det(part_NN_10_47, a_DT_9_45); prep(part_NN_10_47, of_IN_11_52); pobj(of_IN_11_52, two-hander_JJ_13_57); det(two-hander_JJ_13_57, a_DT_12_55); prep(two-hander_JJ_13_57, with_IN_14_68); prep(two-hander_JJ_13_57, in_IN_17_85); punct(two-hander_JJ_13_57, -_:_20_99); dep(two-hander_JJ_13_57, Predator_NNP_27_133); pobj(with_IN_14_68, Robins_NNP_16_78); nn(Robins_NNP_16_78, John_NNP_15_73); pobj(in_IN_17_85, show_NN_19_94); poss(show_NN_19_94, their_PRP$_18_88); nn(Predator_NNP_27_133, Carl_NNP_21_101); nn(Predator_NNP_27_133, Donnelly_NNP_22_106); nn(Predator_NNP_27_133, Vs_NNP_23_115); nn(Predator_NNP_27_133, John_NNP_24_118); nn(Predator_NNP_27_133, Robins_NNP_25_123); nn(Predator_NNP_27_133, Vs_NNP_26_130) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0181 he ;;; he_PRP_2_8 to perform as ;;; to_TO_6_31; perform_VB_7_34 a part of a two-hander ;;; a_DT_9_45; part_NN_10_47; of_IN_11_52; a_DT_12_55; two-hander_JJ_13_57 0.01810 None None 1 pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Lenin ;;; Lenin_NNP_4_14 dispatched Stalin in ;;; dispatched_VBD_5_20; Stalin_NNP_6_31 May 1918 ;;; May_NNP_1_3; 1918_CD_2_7 0.73450 None None 1 pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Lenin ;;; Lenin_NNP_4_14 dispatched Stalin to ;;; dispatched_VBD_5_20; Stalin_NNP_6_31 the city of Tsaritsyn ;;; the_DT_8_41; city_NN_9_45; of_IN_10_50; Tsaritsyn_NNP_11_53 0.73450 None None 1 pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) Template {rel} {arg1} dobj> {arg2} 0.3797 Lenin ;;; Lenin_NNP_4_14 dispatched ;;; dispatched_VBD_5_20 Stalin ;;; Stalin_NNP_6_31 0.37970 None None 1 pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Stalin ;;; Stalin_NNP_6_31 be dispatched in ;;; dispatched_VBD_5_20 May 1918 ;;; May_NNP_1_3; 1918_CD_2_7 0.01550 None None 1 pobj(In_IN_0_0, May_NNP_1_3); num(May_NNP_1_3, 1918_CD_2_7); prep(dispatched_VBD_5_20, In_IN_0_0); punct(dispatched_VBD_5_20, ,_,_3_12); nsubj(dispatched_VBD_5_20, Lenin_NNP_4_14); dobj(dispatched_VBD_5_20, Stalin_NNP_6_31); prep(dispatched_VBD_5_20, to_TO_7_38); punct(dispatched_VBD_5_20, ._._12_63); pobj(to_TO_7_38, city_NN_9_45); det(city_NN_9_45, the_DT_8_41); prep(city_NN_9_45, of_IN_10_50); pobj(of_IN_10_50, Tsaritsyn_NNP_11_53) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Stalin ;;; Stalin_NNP_6_31 be dispatched to ;;; dispatched_VBD_5_20 the city of Tsaritsyn ;;; the_DT_8_41; city_NN_9_45; of_IN_10_50; Tsaritsyn_NNP_11_53 0.01550 None None 0 pobj(In_IN_0_0, trading_NN_6_37); nn(trading_NN_6_37, New_NNP_1_3); nn(trading_NN_6_37, York_NNP_2_7); nn(trading_NN_6_37, Stock_NNP_3_12); nn(trading_NN_6_37, Exchange_NNP_4_18); amod(trading_NN_6_37, composite_JJ_5_27); prep(closed_VBD_9_53, In_IN_0_0); punct(closed_VBD_9_53, ,_,_7_45); nsubj(closed_VBD_9_53, Loral_NNP_8_47); prep(closed_VBD_9_53, at_IN_10_60); punct(closed_VBD_9_53, ,_,_13_71); advmod(closed_VBD_9_53, down_RB_14_73); punct(closed_VBD_9_53, ._._17_89); pobj(at_IN_10_60, $_$_11_63); num($_$_11_63, 33.25_CD_12_65); dep(down_RB_14_73, cents_NNS_16_83); num(cents_NNS_16_83, 37.5_CD_15_78) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Loral ;;; Loral_NNP_8_47 closed down 37.5 cents in ;;; closed_VBD_9_53; down_RB_14_73; 37.5_CD_15_78; cents_NN_16_83 New York Stock Exchange composite trading ;;; New_NNP_1_3; York_NNP_2_7; Stock_NNP_3_12; Exchange_NNP_4_18; composite_JJ_5_27; trading_NN_6_37 0.73450 None None 0 pobj(In_IN_0_0, trading_NN_6_37); nn(trading_NN_6_37, New_NNP_1_3); nn(trading_NN_6_37, York_NNP_2_7); nn(trading_NN_6_37, Stock_NNP_3_12); nn(trading_NN_6_37, Exchange_NNP_4_18); amod(trading_NN_6_37, composite_JJ_5_27); prep(closed_VBD_10_71, In_IN_0_0); tmod(closed_VBD_10_71, yesterday_NN_7_45); punct(closed_VBD_10_71, ,_,_8_55); nsubj(closed_VBD_10_71, Knight-Ridder_NNP_9_57); prep(closed_VBD_10_71, at_IN_11_78); punct(closed_VBD_10_71, ,_,_14_89); advmod(closed_VBD_10_71, down_RB_15_91); punct(closed_VBD_10_71, ._._18_107); pobj(at_IN_11_78, $_$_12_81); num($_$_12_81, 51.75_CD_13_83); dep(down_RB_15_91, cents_NNS_17_101); num(cents_NNS_17_101, 37.5_CD_16_96) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Knight-Ridder ;;; Knight-Ridder_NNP_9_57 closed down 37.5 cents in ;;; closed_VBD_10_71; down_RB_15_91; 37.5_CD_16_96; cents_NN_17_101 New York Stock Exchange composite trading ;;; New_NNP_1_3; York_NNP_2_7; Stock_NNP_3_12; Exchange_NNP_4_18; composite_JJ_5_27; trading_NN_6_37 0.73450 None None 1 pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29 rose 0.1 % from ;;; rose_VBD_7_37; 0.1_CD_8_42; %_NN_9_46 the previous month ;;; the_DT_11_53; previous_JJ_12_57; month_NN_13_66 0.73450 None None 1 pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29 rose 0.1 % in ;;; rose_VBD_7_37; 0.1_CD_8_42; %_NN_9_46 September ;;; September_NNP_1_3 0.73450 None None 1 pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29 rose 0.1 % on ;;; rose_VBD_7_37; 0.1_CD_8_42; %_NN_9_46 a seasonally adjusted basis ;;; a_DT_18_90; seasonally_RB_19_92; adjusted_JJ_20_103; basis_NN_21_112 0.73450 None None 1 pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 the number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29 rose 0.1 % to ;;; rose_VBD_7_37; 0.1_CD_8_42; %_NN_9_46 2.5 million ;;; 2.5_CD_15_75; million_CD_16_79 0.73450 None None 1 pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) Template {rel} {arg1} dobj> {arg2} 0.3797 the number of jobless ;;; the_DT_3_15; number_NN_4_19; of_IN_5_26; jobless_JJ_6_29 rose ;;; rose_VBD_7_37 0.1 % ;;; 0.1_CD_8_42; %_NN_9_46 0.37970 None None 0 pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 0.1 % ;;; 0.1_CD_8_42; %_NN_9_46 be rose from ;;; rose_VBD_7_37 the previous month ;;; the_DT_11_53; previous_JJ_12_57; month_NN_13_66 0.01550 None None 0 pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 0.1 % ;;; 0.1_CD_8_42; %_NN_9_46 be rose in ;;; rose_VBD_7_37 September ;;; September_NNP_1_3 0.01550 None None 0 pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 0.1 % ;;; 0.1_CD_8_42; %_NN_9_46 be rose on ;;; rose_VBD_7_37 a seasonally adjusted basis ;;; a_DT_18_90; seasonally_RB_19_92; adjusted_JJ_20_103; basis_NN_21_112 0.01550 None None 0 pobj(In_IN_0_0, September_NNP_1_3); det(number_NN_4_19, the_DT_3_15); prep(number_NN_4_19, of_IN_5_26); pobj(of_IN_5_26, jobless_JJ_6_29); prep(rose_VBD_7_37, In_IN_0_0); punct(rose_VBD_7_37, ,_,_2_13); nsubj(rose_VBD_7_37, number_NN_4_19); dobj(rose_VBD_7_37, %_NN_9_46); prep(rose_VBD_7_37, from_IN_10_48); prep(rose_VBD_7_37, to_TO_14_72); prep(rose_VBD_7_37, on_IN_17_87); punct(rose_VBD_7_37, ._._22_118); num(%_NN_9_46, 0.1_CD_8_42); pobj(from_IN_10_48, month_NN_13_66); det(month_NN_13_66, the_DT_11_53); amod(month_NN_13_66, previous_JJ_12_57); pobj(to_TO_14_72, million_CD_16_79); number(million_CD_16_79, 2.5_CD_15_75); pobj(on_IN_17_87, basis_NN_21_112); advmod(adjusted_JJ_20_103, seasonally_RB_19_92); det(basis_NN_21_112, a_DT_18_90); amod(basis_NN_21_112, adjusted_JJ_20_103) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 0.1 % ;;; 0.1_CD_8_42; %_NN_9_46 be rose to ;;; rose_VBD_7_37 2.5 million ;;; 2.5_CD_15_75; million_CD_16_79 0.01550 None None 1 pobj(In_IN_0_0, Africa_NNP_2_9); nn(Africa_NNP_2_9, South_NNP_1_3); nn(High_NNP_6_29, Blue_NNP_4_18); nn(High_NNP_6_29, Water_NNP_5_23); prep(aired_VBN_8_37, In_IN_0_0); punct(aired_VBN_8_37, ,_,_3_16); nsubjpass(aired_VBN_8_37, High_NNP_6_29); auxpass(aired_VBN_8_37, is_VBZ_7_34); advmod(aired_VBN_8_37, twice_RB_9_43); tmod(aired_VBN_8_37, week_NN_11_51); prep(aired_VBN_8_37, on_IN_12_56); prep(aired_VBN_8_37, on_IN_14_62); punct(aired_VBN_8_37, ,_,_19_92); conj(aired_VBN_8_37, DSTV_VB_20_94); punct(aired_VBN_8_37, ._._24_114); det(week_NN_11_51, a_DT_10_49); pobj(on_IN_12_56, Go_NNP_13_59); pobj(on_IN_14_62, system_NN_18_85); det(system_NN_18_85, the_DT_15_65); amod(system_NN_18_85, local_JJ_16_69); nn(system_NN_18_85, satellite_NN_17_75); prep(DSTV_VB_20_94, on_IN_21_99); pobj(on_IN_21_99, channel_NN_22_102); num(channel_NN_22_102, 123_CD_23_110) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Blue Water High ;;; Blue_NNP_4_18; Water_NNP_5_23; High_NNP_6_29 is aired twice in ;;; is_VBZ_7_34; aired_VBN_8_37; twice_RB_9_43 South Africa ;;; South_NNP_1_3; Africa_NNP_2_9 1.00000 None None 1 pobj(In_IN_0_0, Africa_NNP_2_9); nn(Africa_NNP_2_9, South_NNP_1_3); nn(High_NNP_6_29, Blue_NNP_4_18); nn(High_NNP_6_29, Water_NNP_5_23); prep(aired_VBN_8_37, In_IN_0_0); punct(aired_VBN_8_37, ,_,_3_16); nsubjpass(aired_VBN_8_37, High_NNP_6_29); auxpass(aired_VBN_8_37, is_VBZ_7_34); advmod(aired_VBN_8_37, twice_RB_9_43); tmod(aired_VBN_8_37, week_NN_11_51); prep(aired_VBN_8_37, on_IN_12_56); prep(aired_VBN_8_37, on_IN_14_62); punct(aired_VBN_8_37, ,_,_19_92); conj(aired_VBN_8_37, DSTV_VB_20_94); punct(aired_VBN_8_37, ._._24_114); det(week_NN_11_51, a_DT_10_49); pobj(on_IN_12_56, Go_NNP_13_59); pobj(on_IN_14_62, system_NN_18_85); det(system_NN_18_85, the_DT_15_65); amod(system_NN_18_85, local_JJ_16_69); nn(system_NN_18_85, satellite_NN_17_75); prep(DSTV_VB_20_94, on_IN_21_99); pobj(on_IN_21_99, channel_NN_22_102); num(channel_NN_22_102, 123_CD_23_110) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Blue Water High ;;; Blue_NNP_4_18; Water_NNP_5_23; High_NNP_6_29 is aired twice on ;;; is_VBZ_7_34; aired_VBN_8_37; twice_RB_9_43 Go ;;; Go_NNP_13_59 1.00000 None None 1 pobj(In_IN_0_0, Africa_NNP_2_9); nn(Africa_NNP_2_9, South_NNP_1_3); nn(High_NNP_6_29, Blue_NNP_4_18); nn(High_NNP_6_29, Water_NNP_5_23); prep(aired_VBN_8_37, In_IN_0_0); punct(aired_VBN_8_37, ,_,_3_16); nsubjpass(aired_VBN_8_37, High_NNP_6_29); auxpass(aired_VBN_8_37, is_VBZ_7_34); advmod(aired_VBN_8_37, twice_RB_9_43); tmod(aired_VBN_8_37, week_NN_11_51); prep(aired_VBN_8_37, on_IN_12_56); prep(aired_VBN_8_37, on_IN_14_62); punct(aired_VBN_8_37, ,_,_19_92); conj(aired_VBN_8_37, DSTV_VB_20_94); punct(aired_VBN_8_37, ._._24_114); det(week_NN_11_51, a_DT_10_49); pobj(on_IN_12_56, Go_NNP_13_59); pobj(on_IN_14_62, system_NN_18_85); det(system_NN_18_85, the_DT_15_65); amod(system_NN_18_85, local_JJ_16_69); nn(system_NN_18_85, satellite_NN_17_75); prep(DSTV_VB_20_94, on_IN_21_99); pobj(on_IN_21_99, channel_NN_22_102); num(channel_NN_22_102, 123_CD_23_110) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Blue Water High ;;; Blue_NNP_4_18; Water_NNP_5_23; High_NNP_6_29 is aired twice on ;;; is_VBZ_7_34; aired_VBN_8_37; twice_RB_9_43 the local satellite system ;;; the_DT_15_65; local_JJ_16_69; satellite_NN_17_75; system_NN_18_85 1.00000 None None 0 pobj(In_IN_0_0, edition_NN_3_15); possessive(Thursday_NNP_1_3, 's_POS_2_12); poss(edition_NN_3_15, Thursday_NNP_1_3); prep(indicated_VBN_8_44, In_IN_0_0); punct(indicated_VBN_8_44, ,_,_4_23); nsubjpass(indicated_VBN_8_44, it_PRP_5_25); auxpass(indicated_VBN_8_44, was_VBD_6_28); advmod(indicated_VBN_8_44, incorrectly_RB_7_32); ccomp(indicated_VBN_8_44, paid_VBN_13_73); punct(indicated_VBN_8_44, ._._22_119); det(union_NN_11_63, the_DT_10_59); complm(paid_VBN_13_73, that_IN_9_54); nsubj(paid_VBN_13_73, union_NN_11_63); aux(paid_VBN_13_73, had_VBD_12_69); dobj(paid_VBN_13_73, fee_NN_15_80); prep(paid_VBN_13_73, to_TO_16_84); det(fee_NN_15_80, a_DT_14_78); pobj(to_TO_16_84, Wright_NNP_21_112); amod(Wright_NNP_21_112, former_JJ_17_87); nn(Wright_NNP_21_112, House_NNP_18_94); nn(Wright_NNP_21_112, Speaker_NNP_19_100); nn(Wright_NNP_21_112, Jim_NNP_20_108) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 it ;;; it_PRP_5_25 was incorrectly indicated in ;;; was_VBD_6_28; incorrectly_RB_7_32; indicated_VBN_8_44 Thursday 's edition ;;; Thursday_NNP_1_3; 's_POS_2_12; edition_NN_3_15 1.00000 None None 0 pobj(In_IN_0_0, edition_NN_3_15); possessive(Thursday_NNP_1_3, 's_POS_2_12); poss(edition_NN_3_15, Thursday_NNP_1_3); prep(indicated_VBN_8_44, In_IN_0_0); punct(indicated_VBN_8_44, ,_,_4_23); nsubjpass(indicated_VBN_8_44, it_PRP_5_25); auxpass(indicated_VBN_8_44, was_VBD_6_28); advmod(indicated_VBN_8_44, incorrectly_RB_7_32); ccomp(indicated_VBN_8_44, paid_VBN_13_73); punct(indicated_VBN_8_44, ._._22_119); det(union_NN_11_63, the_DT_10_59); complm(paid_VBN_13_73, that_IN_9_54); nsubj(paid_VBN_13_73, union_NN_11_63); aux(paid_VBN_13_73, had_VBD_12_69); dobj(paid_VBN_13_73, fee_NN_15_80); prep(paid_VBN_13_73, to_TO_16_84); det(fee_NN_15_80, a_DT_14_78); pobj(to_TO_16_84, Wright_NNP_21_112); amod(Wright_NNP_21_112, former_JJ_17_87); nn(Wright_NNP_21_112, House_NNP_18_94); nn(Wright_NNP_21_112, Speaker_NNP_19_100); nn(Wright_NNP_21_112, Jim_NNP_20_108) Template {rel} {arg1} dobj> {arg2} 0.0577 the union ;;; the_DT_10_59; union_NN_11_63 had paid ;;; had_VBD_12_69; paid_VBN_13_73 a fee ;;; a_DT_14_78; fee_NN_15_80 0.05770 None None 0 pobj(In_IN_0_0, edition_NN_3_15); possessive(Thursday_NNP_1_3, 's_POS_2_12); poss(edition_NN_3_15, Thursday_NNP_1_3); prep(indicated_VBN_8_44, In_IN_0_0); punct(indicated_VBN_8_44, ,_,_4_23); nsubjpass(indicated_VBN_8_44, it_PRP_5_25); auxpass(indicated_VBN_8_44, was_VBD_6_28); advmod(indicated_VBN_8_44, incorrectly_RB_7_32); ccomp(indicated_VBN_8_44, paid_VBN_13_73); punct(indicated_VBN_8_44, ._._22_119); det(union_NN_11_63, the_DT_10_59); complm(paid_VBN_13_73, that_IN_9_54); nsubj(paid_VBN_13_73, union_NN_11_63); aux(paid_VBN_13_73, had_VBD_12_69); dobj(paid_VBN_13_73, fee_NN_15_80); prep(paid_VBN_13_73, to_TO_16_84); det(fee_NN_15_80, a_DT_14_78); pobj(to_TO_16_84, Wright_NNP_21_112); amod(Wright_NNP_21_112, former_JJ_17_87); nn(Wright_NNP_21_112, House_NNP_18_94); nn(Wright_NNP_21_112, Speaker_NNP_19_100); nn(Wright_NNP_21_112, Jim_NNP_20_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 the union ;;; the_DT_10_59; union_NN_11_63 had paid a fee to ;;; had_VBD_12_69; paid_VBN_13_73; a_DT_14_78; fee_NN_15_80 former House Speaker Jim Wright ;;; former_JJ_17_87; House_NNP_18_94; Speaker_NNP_19_100; Jim_NNP_20_108; Wright_NNP_21_112 0.04440 None None 1 pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 shareholder Max Grill of New York ;;; shareholder_NN_11_59; Max_NNP_12_71; Grill_NNP_13_75; of_IN_14_81; New_NNP_15_84; York_NNP_16_88 charged Imperial , its top executives and directors in ;;; charged_VBD_17_93; Imperial_NNP_18_101; ,_,_19_110; its_PRP$_20_112; top_JJ_21_116; executives_NN_22_120; and_CC_23_131; directors_NN_24_135 a separate complaint also filed in federal court ;;; a_DT_1_3; separate_JJ_2_5; complaint_NN_3_14; also_RB_4_24; filed_VBN_5_29; in_IN_6_35; federal_JJ_7_38; court_NN_8_46 0.73450 None None 1 pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 shareholder Max Grill of New York ;;; shareholder_NN_11_59; Max_NNP_12_71; Grill_NNP_13_75; of_IN_14_81; New_NNP_15_84; York_NNP_16_88 charged Imperial , its top executives and directors with ;;; charged_VBD_17_93; Imperial_NNP_18_101; ,_,_19_110; its_PRP$_20_112; top_JJ_21_116; executives_NN_22_120; and_CC_23_131; directors_NN_24_135 breach of fiduciary duty ;;; breach_NN_26_150; of_IN_27_157; fiduciary_JJ_28_160; duty_NN_29_170 0.73450 None None 0 pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) Template {rel} {arg1} dobj> {arg2} 0.3797 shareholder Max Grill of New York ;;; shareholder_NN_11_59; Max_NNP_12_71; Grill_NNP_13_75; of_IN_14_81; New_NNP_15_84; York_NNP_16_88 charged ;;; charged_VBD_17_93 Imperial ;;; Imperial_NNP_18_101 0.37970 None None 1 pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 a separate complaint ;;; a_DT_1_3; separate_JJ_2_5; complaint_NN_3_14 be also filed in ;;; also_RB_4_24; filed_VBN_5_29 federal court ;;; federal_JJ_7_38; court_NN_8_46 0.11100 None None 0 pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) Template {rel} {arg1} dobj> {arg2} 0.0292 shareholder Max Grill of New York ;;; shareholder_NN_11_59; Max_NNP_12_71; Grill_NNP_13_75; of_IN_14_81; New_NNP_15_84; York_NNP_16_88 squandering ;;; squandering_VBG_31_179 the company 's assets ;;; the_DT_32_191; company_NN_33_195; 's_POS_34_203; assets_NN_35_206 0.02920 None None 1 pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Imperial ;;; Imperial_NNP_18_101 be charged in ;;; charged_VBD_17_93 a separate complaint also filed in federal court ;;; a_DT_1_3; separate_JJ_2_5; complaint_NN_3_14; also_RB_4_24; filed_VBN_5_29; in_IN_6_35; federal_JJ_7_38; court_NN_8_46 0.01550 None None 1 pobj(In_IN_0_0, complaint_NN_3_14); det(complaint_NN_3_14, a_DT_1_3); amod(complaint_NN_3_14, separate_JJ_2_5); partmod(complaint_NN_3_14, filed_VBN_5_29); advmod(complaint_NN_3_14, here_RB_9_52); advmod(filed_VBN_5_29, also_RB_4_24); prep(filed_VBN_5_29, in_IN_6_35); pobj(in_IN_6_35, court_NN_8_46); amod(court_NN_8_46, federal_JJ_7_38); nn(Grill_NNP_13_75, shareholder_NN_11_59); nn(Grill_NNP_13_75, Max_NNP_12_71); prep(Grill_NNP_13_75, of_IN_14_81); pobj(of_IN_14_81, York_NNP_16_88); nn(York_NNP_16_88, New_NNP_15_84); prep(charged_VBD_17_93, In_IN_0_0); punct(charged_VBD_17_93, ,_,_10_57); nsubj(charged_VBD_17_93, Grill_NNP_13_75); dobj(charged_VBD_17_93, Imperial_NNP_18_101); prep(charged_VBD_17_93, with_IN_25_145); cc(charged_VBD_17_93, and_CC_30_175); conj(charged_VBD_17_93, squandering_VBG_31_179); punct(charged_VBD_17_93, ._._36_213); punct(Imperial_NNP_18_101, ,_,_19_110); appos(Imperial_NNP_18_101, executives_NNS_22_120); poss(executives_NNS_22_120, its_PRP$_20_112); amod(executives_NNS_22_120, top_JJ_21_116); cc(executives_NNS_22_120, and_CC_23_131); conj(executives_NNS_22_120, directors_NNS_24_135); pobj(with_IN_25_145, breach_NN_26_150); prep(breach_NN_26_150, of_IN_27_157); pobj(of_IN_27_157, duty_NN_29_170); amod(duty_NN_29_170, fiduciary_JJ_28_160); dobj(squandering_VBG_31_179, assets_NNS_35_206); det(company_NN_33_195, the_DT_32_191); possessive(company_NN_33_195, 's_POS_34_203); poss(assets_NNS_35_206, company_NN_33_195) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Imperial ;;; Imperial_NNP_18_101 be charged with ;;; charged_VBD_17_93 breach of fiduciary duty ;;; breach_NN_26_150; of_IN_27_157; fiduciary_JJ_28_160; duty_NN_29_170 0.01550 None None 0 pobj(In_IN_0_0, addition_NN_1_3); poss(kidneys_NNS_4_20, their_PRP$_3_14); prep(have_VBP_5_28, In_IN_0_0); punct(have_VBP_5_28, ,_,_2_12); nsubj(have_VBP_5_28, kidneys_NNS_4_20); dobj(have_VBP_5_28, glomeruli_NNS_7_39); punct(have_VBP_5_28, ._._12_76); amod(glomeruli_NNS_7_39, small_JJ_6_33); cc(glomeruli_NNS_7_39, or_CC_8_49); conj(glomeruli_NNS_7_39, lack_NN_9_52); amod(lack_NN_9_52, glomeruli_JJ_10_57); advmod(glomeruli_JJ_10_57, entirely_RB_11_67) Template {rel} {arg1} dobj> {arg2} 0.0416 their kidneys ;;; their_PRP$_3_14; kidneys_NN_4_20 have ;;; have_VBP_5_28 small glomeruli or lack glomeruli ;;; small_JJ_6_33; glomeruli_NN_7_39; or_CC_8_49; lack_NN_9_52; glomeruli_JJ_10_57 0.04160 None None 0 pobj(In_IN_0_0, addition_NN_1_3); poss(kidneys_NNS_4_20, their_PRP$_3_14); prep(have_VBP_5_28, In_IN_0_0); punct(have_VBP_5_28, ,_,_2_12); nsubj(have_VBP_5_28, kidneys_NNS_4_20); dobj(have_VBP_5_28, glomeruli_NNS_7_39); punct(have_VBP_5_28, ._._12_76); amod(glomeruli_NNS_7_39, small_JJ_6_33); cc(glomeruli_NNS_7_39, or_CC_8_49); conj(glomeruli_NNS_7_39, lack_NN_9_52); amod(lack_NN_9_52, glomeruli_JJ_10_57); advmod(glomeruli_JJ_10_57, entirely_RB_11_67) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 their kidneys ;;; their_PRP$_3_14; kidneys_NN_4_20 have small glomeruli or lack glomeruli entirely in ;;; have_VBP_5_28; small_JJ_6_33; glomeruli_NN_7_39; or_CC_8_49; lack_NN_9_52; glomeruli_JJ_10_57; entirely_RB_11_67 addition ;;; addition_NN_1_3 0.03070 None None 0 pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 researchers ;;; researchers_NN_5_21 transformed the differentiated cells in ;;; transformed_VBD_6_33; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64 these cases ;;; these_DT_2_7; cases_NN_3_13 0.73450 None None 1 pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 researchers ;;; researchers_NN_5_21 transformed the differentiated cells into ;;; transformed_VBD_6_33; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64 ES cells ;;; ES_NNP_11_75; cells_NN_12_78 0.73450 None None 1 pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) Template {rel} {arg1} dobj> {arg2} 0.3797 researchers ;;; researchers_NN_5_21 transformed ;;; transformed_VBD_6_33 the differentiated cells ;;; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64 0.37970 None None 0 pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the differentiated cells ;;; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64 be transformed in ;;; transformed_VBD_6_33 these cases ;;; these_DT_2_7; cases_NN_3_13 0.01550 None None 1 pobj(In_IN_0_0, cases_NNS_3_13); predet(cases_NNS_3_13, all_PDT_1_3); det(cases_NNS_3_13, these_DT_2_7); prep(transformed_VBD_6_33, In_IN_0_0); punct(transformed_VBD_6_33, ,_,_4_19); nsubj(transformed_VBD_6_33, researchers_NNS_5_21); dobj(transformed_VBD_6_33, cells_NNS_9_64); prep(transformed_VBD_6_33, into_IN_10_70); prep(transformed_VBD_6_33, by_IN_13_84); punct(transformed_VBD_6_33, ._._30_185); det(cells_NNS_9_64, the_DT_7_45); amod(cells_NNS_9_64, differentiated_JJ_8_49); pobj(into_IN_10_70, cells_NNS_12_78); nn(cells_NNS_12_78, ES_NNPS_11_75); pcomp(by_IN_13_84, using_VBG_14_87); dobj(using_VBG_14_87, retroviruses_NNS_15_93); xcomp(using_VBG_14_87, introduce_VB_17_109); aux(introduce_VB_17_109, to_TO_16_106); dobj(introduce_VB_17_109, copies_NNS_20_132); dep(introduce_VB_17_109, stem_VB_24_149); amod(copies_NNS_20_132, extra_JJ_18_119); amod(copies_NNS_20_132, cloned_JJ_19_125); prep(copies_NNS_20_132, of_IN_21_139); pobj(of_IN_21_139, four_CD_22_142); punct(stem_VB_24_149, "_``_23_147); dobj(stem_VB_24_149, master_NN_27_161); nn(master_NN_27_161, cell_NN_25_154); punct(master_NN_27_161, "_''_26_159); dep(master_NN_27_161, genes_NNS_29_179); amod(genes_NNS_29_179, regulatory_JJ_28_168) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the differentiated cells ;;; the_DT_7_45; differentiated_JJ_8_49; cells_NN_9_64 be transformed into ;;; transformed_VBD_6_33 ES cells ;;; ES_NNP_11_75; cells_NN_12_78 0.01550 None None 0 pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51 is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , by ;;; is_VBZ_9_60; caused_VBN_10_63; an_DT_15_91; exotoxin_NN_16_94; secreted_VBN_17_103; by_IN_18_112; the_DT_19_115; gram-positive_JJ_20_119; bacterium_NN_21_133; Clostridium_NNP_22_143; botulinum_NN_23_155; as_IN_24_165; it_PRP_25_168; ferments_VBZ_26_171; various_JJ_27_180; foods_NN_28_188; ,_,_29_194; including_VBG_30_196; improperly_RB_31_206; canned_JJ_32_217; meat_NN_33_224; ,_,_34_229; seafood_NN_35_231; ,_,_36_239 botulinum toxin ;;; botulinum_NN_12_73; toxin_NN_13_83 1.00000 None None 0 pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51 is caused an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , in ;;; is_VBZ_9_60; caused_VBN_10_63; an_DT_15_91; exotoxin_NN_16_94; secreted_VBN_17_103; by_IN_18_112; the_DT_19_115; gram-positive_JJ_20_119; bacterium_NN_21_133; Clostridium_NNP_22_143; botulinum_NN_23_155; as_IN_24_165; it_PRP_25_168; ferments_VBZ_26_171; various_JJ_27_180; foods_NN_28_188; ,_,_29_194; including_VBG_30_196; improperly_RB_31_206; canned_JJ_32_217; meat_NN_33_224; ,_,_34_229; seafood_NN_35_231; ,_,_36_239 another example ;;; another_DT_1_3; example_NN_2_11 1.00000 None None 1 pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51 is caused vegetables by ;;; is_VBZ_9_60; caused_VBN_10_63; vegetables_NN_38_245 botulinum toxin ;;; botulinum_NN_12_73; toxin_NN_13_83 1.00000 None None 0 pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51 is caused vegetables in ;;; is_VBZ_9_60; caused_VBN_10_63; vegetables_NN_38_245 another example ;;; another_DT_1_3; example_NN_2_11 1.00000 None None 1 pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) Template {rel} {arg1} dobj> {arg2} 0.1443 it ;;; it_PRP_25_168 ferments ;;; ferments_VBZ_26_171 various foods ;;; various_JJ_27_180; foods_NN_28_188 0.14430 None None 1 pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) Template be {rel} {arg1} dobj> {arg2} 0.0191 the potentially fatal disease botulism ;;; the_DT_4_21; potentially_RB_5_25; fatal_JJ_6_37; disease_NN_7_43; botulism_NN_8_51 is caused ;;; is_VBZ_9_60; caused_VBN_10_63 an exotoxin secreted by the gram-positive bacterium Clostridium botulinum as it ferments various foods , including improperly canned meat , seafood , and vegetables ;;; an_DT_15_91; exotoxin_NN_16_94; secreted_VBN_17_103; by_IN_18_112; the_DT_19_115; gram-positive_JJ_20_119; bacterium_NN_21_133; Clostridium_NNP_22_143; botulinum_NN_23_155; as_IN_24_165; it_PRP_25_168; ferments_VBZ_26_171; various_JJ_27_180; foods_NN_28_188; ,_,_29_194; including_VBG_30_196; improperly_RB_31_206; canned_JJ_32_217; meat_NN_33_224; ,_,_34_229; seafood_NN_35_231; ,_,_36_239; and_CC_37_241; vegetables_NN_38_245 0.01910 None None 0 pobj(In_IN_0_0, example_NN_2_11); det(example_NN_2_11, another_DT_1_3); advmod(fatal_JJ_6_37, potentially_RB_5_25); det(botulism_NN_8_51, the_DT_4_21); amod(botulism_NN_8_51, fatal_JJ_6_37); nn(botulism_NN_8_51, disease_NN_7_43); prep(caused_VBN_10_63, In_IN_0_0); punct(caused_VBN_10_63, ,_,_3_19); nsubjpass(caused_VBN_10_63, botulism_NN_8_51); auxpass(caused_VBN_10_63, is_VBZ_9_60); prep(caused_VBN_10_63, by_IN_11_70); punct(caused_VBN_10_63, ,_,_14_89); dobj(caused_VBN_10_63, exotoxin_NN_16_94); punct(caused_VBN_10_63, ._._39_256); pobj(by_IN_11_70, toxin_NN_13_83); nn(toxin_NN_13_83, botulinum_NN_12_73); det(exotoxin_NN_16_94, an_DT_15_91); partmod(exotoxin_NN_16_94, secreted_VBN_17_103); punct(exotoxin_NN_16_94, ,_,_36_239); cc(exotoxin_NN_16_94, and_CC_37_241); conj(exotoxin_NN_16_94, vegetables_NNS_38_245); prep(secreted_VBN_17_103, by_IN_18_112); advcl(secreted_VBN_17_103, ferments_VBZ_26_171); pobj(by_IN_18_112, botulinum_NN_23_155); det(botulinum_NN_23_155, the_DT_19_115); amod(botulinum_NN_23_155, gram-positive_JJ_20_119); nn(botulinum_NN_23_155, bacterium_NN_21_133); nn(botulinum_NN_23_155, Clostridium_NNP_22_143); mark(ferments_VBZ_26_171, as_IN_24_165); nsubj(ferments_VBZ_26_171, it_PRP_25_168); dobj(ferments_VBZ_26_171, foods_NNS_28_188); amod(foods_NNS_28_188, various_JJ_27_180); punct(foods_NNS_28_188, ,_,_29_194); prep(foods_NNS_28_188, including_VBG_30_196); pobj(including_VBG_30_196, meat_NN_33_224); advmod(meat_NN_33_224, improperly_RB_31_206); amod(meat_NN_33_224, canned_JJ_32_217); punct(meat_NN_33_224, ,_,_34_229); conj(meat_NN_33_224, seafood_NN_35_231) Template be {rel} {prep} {arg1} dobj> {arg2} 0.1473 they ;;; they_PRP_23_131 gain ;;; gain_VB_24_136 most of their heat ;;; most_JJ_25_141; of_IN_26_146; their_PRP$_27_149; heat_NN_28_155 0.14730 None None 1 pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 they ;;; they_PRP_23_131 gain most of their heat from ;;; gain_VB_24_136; most_JJ_25_141; of_IN_26_146; their_PRP$_27_149; heat_NN_28_155 external sources ;;; external_JJ_30_165; sources_NN_31_174 0.13490 None None 0 pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 amphibians , lizards , snakes , turtles , many fishes , and most invertebrates ;;; amphibians_NN_3_14; ,_,_4_25; lizards_NN_5_27; ,_,_6_35; snakes_NN_7_37; ,_,_8_44; turtles_NN_9_46; ,_,_10_54; many_JJ_11_56; fishes_NN_12_61; ,_,_13_68; and_CC_14_70; most_JJ_15_74; invertebrates_NN_16_79 are mainly ectothermic in ;;; are_VBP_17_93; mainly_RB_18_97; ectothermic_JJ_19_104 contrast ;;; contrast_NN_1_3 0.04780 None None 1 pobj(In_IN_0_0, contrast_NN_1_3); nn(fishes_NNS_12_61, amphibians_NNS_3_14); punct(fishes_NNS_12_61, ,_,_4_25); nn(fishes_NNS_12_61, lizards_NNS_5_27); punct(fishes_NNS_12_61, ,_,_6_35); nn(fishes_NNS_12_61, snakes_NNS_7_37); punct(fishes_NNS_12_61, ,_,_8_44); nn(fishes_NNS_12_61, turtles_NNS_9_46); punct(fishes_NNS_12_61, ,_,_10_54); amod(fishes_NNS_12_61, many_JJ_11_56); punct(fishes_NNS_12_61, ,_,_13_68); cc(fishes_NNS_12_61, and_CC_14_70); conj(fishes_NNS_12_61, invertebrates_NNS_16_79); amod(invertebrates_NNS_16_79, most_JJS_15_74); prep(ectothermic_JJ_19_104, In_IN_0_0); punct(ectothermic_JJ_19_104, ,_,_2_12); nsubj(ectothermic_JJ_19_104, fishes_NNS_12_61); cop(ectothermic_JJ_19_104, are_VBP_17_93); advmod(ectothermic_JJ_19_104, mainly_RB_18_97); punct(ectothermic_JJ_19_104, ,_,_20_116); xcomp(ectothermic_JJ_19_104, meaning_VBG_21_118); punct(ectothermic_JJ_19_104, ._._32_182); ccomp(meaning_VBG_21_118, gain_VB_24_136); complm(gain_VB_24_136, that_IN_22_126); nsubj(gain_VB_24_136, they_PRP_23_131); dobj(gain_VB_24_136, most_JJS_25_141); prep(gain_VB_24_136, from_IN_29_160); prep(most_JJS_25_141, of_IN_26_146); pobj(of_IN_26_146, heat_NN_28_155); poss(heat_NN_28_155, their_PRP$_27_149); pobj(from_IN_29_160, sources_NNS_31_174); amod(sources_NNS_31_174, external_JJ_30_165) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 most of their heat ;;; most_JJ_25_141; of_IN_26_146; their_PRP$_27_149; heat_NN_28_155 be gain from ;;; gain_VB_24_136 external sources ;;; external_JJ_30_165; sources_NN_31_174 0.01320 None None 0 pobj(In_IN_0_0, contrast_NN_1_3); det(hemisphere_NN_5_24, the_DT_3_14); amod(hemisphere_NN_5_24, right_JJ_4_18); prep(appears_VBZ_6_35, In_IN_0_0); punct(appears_VBZ_6_35, ,_,_2_12); nsubj(appears_VBZ_6_35, hemisphere_NN_5_24); xcomp(appears_VBZ_6_35, dominant_JJ_9_49); punct(appears_VBZ_6_35, ,_,_20_119); cc(appears_VBZ_6_35, and_CC_21_121); conj(appears_VBZ_6_35, thinking_NN_23_135); punct(appears_VBZ_6_35, ._._24_144); aux(dominant_JJ_9_49, to_TO_7_43); cop(dominant_JJ_9_49, be_VB_8_46); prep(dominant_JJ_9_49, in_IN_10_58); punct(dominant_JJ_9_49, ,_,_17_99); conj(dominant_JJ_9_49, relations_NNS_19_109); pobj(in_IN_10_58, recognition_NN_12_65); det(recognition_NN_12_65, the_DT_11_61); prep(recognition_NN_12_65, of_IN_13_77); pobj(of_IN_13_77, faces_NNS_14_80); cc(faces_NNS_14_80, and_CC_15_86); conj(faces_NNS_14_80, patterns_NNS_16_90); amod(relations_NNS_19_109, spatial_JJ_18_101); amod(thinking_NN_23_135, nonverbal_JJ_22_125) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 the right hemisphere ;;; the_DT_3_14; right_JJ_4_18; hemisphere_NN_5_24 appears in ;;; appears_VBZ_6_35 contrast ;;; contrast_NN_1_3 0.24440 None None 1 pobj(In_IN_0_0, electroporation_NN_1_3); det(pulse_NN_6_40, a_DT_3_21); amod(pulse_NN_6_40, brief_JJ_4_23); amod(pulse_NN_6_40, electrical_JJ_5_29); prep(applied_VBD_7_46, In_IN_0_0); punct(applied_VBD_7_46, ,_,_2_19); nsubj(applied_VBD_7_46, pulse_NN_6_40); prep(applied_VBD_7_46, to_TO_8_54); dep(applied_VBD_7_46, creates_VBZ_13_85); punct(applied_VBD_7_46, ._._26_165); pobj(to_TO_8_54, solution_NN_10_59); det(solution_NN_10_59, a_DT_9_57); partmod(solution_NN_10_59, containing_VBG_11_68); dobj(containing_VBG_11_68, cells_NNS_12_79); dobj(creates_VBZ_13_85, holes_NNS_15_103); prep(creates_VBZ_13_85, in_IN_16_109); amod(holes_NNS_15_103, temporary_JJ_14_93); pobj(in_IN_16_109, membranes_NNS_19_125); poss(membranes_NNS_19_125, their_PRP$_17_112); nn(membranes_NNS_19_125, plasma_NN_18_118); punct(membranes_NNS_19_125, ,_,_20_135); rcmod(membranes_NNS_19_125, enter_VB_25_159); pobj(through_IN_21_137, which_WDT_22_145); rel(enter_VB_25_159, through_IN_21_137); nsubj(enter_VB_25_159, DNA_NNP_23_151); aux(enter_VB_25_159, can_MD_24_155) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 a brief electrical pulse ;;; a_DT_3_21; brief_JJ_4_23; electrical_JJ_5_29; pulse_NN_6_40 applied in ;;; applied_VBD_7_46 electroporation ;;; electroporation_NN_1_3 0.73450 None None 1 pobj(In_IN_0_0, electroporation_NN_1_3); det(pulse_NN_6_40, a_DT_3_21); amod(pulse_NN_6_40, brief_JJ_4_23); amod(pulse_NN_6_40, electrical_JJ_5_29); prep(applied_VBD_7_46, In_IN_0_0); punct(applied_VBD_7_46, ,_,_2_19); nsubj(applied_VBD_7_46, pulse_NN_6_40); prep(applied_VBD_7_46, to_TO_8_54); dep(applied_VBD_7_46, creates_VBZ_13_85); punct(applied_VBD_7_46, ._._26_165); pobj(to_TO_8_54, solution_NN_10_59); det(solution_NN_10_59, a_DT_9_57); partmod(solution_NN_10_59, containing_VBG_11_68); dobj(containing_VBG_11_68, cells_NNS_12_79); dobj(creates_VBZ_13_85, holes_NNS_15_103); prep(creates_VBZ_13_85, in_IN_16_109); amod(holes_NNS_15_103, temporary_JJ_14_93); pobj(in_IN_16_109, membranes_NNS_19_125); poss(membranes_NNS_19_125, their_PRP$_17_112); nn(membranes_NNS_19_125, plasma_NN_18_118); punct(membranes_NNS_19_125, ,_,_20_135); rcmod(membranes_NNS_19_125, enter_VB_25_159); pobj(through_IN_21_137, which_WDT_22_145); rel(enter_VB_25_159, through_IN_21_137); nsubj(enter_VB_25_159, DNA_NNP_23_151); aux(enter_VB_25_159, can_MD_24_155) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 a brief electrical pulse ;;; a_DT_3_21; brief_JJ_4_23; electrical_JJ_5_29; pulse_NN_6_40 applied to ;;; applied_VBD_7_46 a solution containing cells ;;; a_DT_9_57; solution_NN_10_59; containing_VBG_11_68; cells_NN_12_79 0.73450 None None 1 pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Mr. Miller ;;; Mr._NNP_9_52; Miller_NNP_10_56 said after ;;; said_VBD_11_63 the annual meeting ;;; the_DT_5_31; annual_JJ_6_35; meeting_NN_7_42 0.73450 None None 0 pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Mr. Miller ;;; Mr._NNP_9_52; Miller_NNP_10_56 said in ;;; said_VBD_11_63 response ;;; response_NN_1_3 0.73450 None None 1 pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393 the company ;;; the_DT_12_68; company_NN_13_72 is no longer looking for ;;; is_VBZ_14_80; no_RB_15_83; longer_RBR_16_86; looking_VBG_17_93 an equity investor ;;; an_DT_19_105; equity_NN_20_108; investor_NN_21_115 0.03930 None Mr. Miller_said_9_10_11_11 0 pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) Template {rel} {arg1} prep_in> {arg2} 0.0079 Mr. Miller ;;; Mr._NNP_9_52; Miller_NNP_10_56 said ;;; said_VBD_11_63 response ;;; response_NN_1_3 0.00790 None None 0 pobj(In_IN_0_0, response_NN_1_3); prep(response_NN_1_3, to_TO_2_12); pobj(to_TO_2_12, questions_NNS_3_15); pobj(after_IN_4_25, meeting_NN_7_42); det(meeting_NN_7_42, the_DT_5_31); amod(meeting_NN_7_42, annual_JJ_6_35); nn(Miller_NNP_10_56, Mr._NNP_9_52); prep(said_VBD_11_63, In_IN_0_0); prep(said_VBD_11_63, after_IN_4_25); punct(said_VBD_11_63, ,_,_8_50); nsubj(said_VBD_11_63, Miller_NNP_10_56); ccomp(said_VBD_11_63, looking_VBG_17_93); punct(said_VBD_11_63, ._._22_124); det(company_NN_13_72, the_DT_12_68); advmod(no_RB_15_83, longer_RBR_16_86); nsubj(looking_VBG_17_93, company_NN_13_72); aux(looking_VBG_17_93, is_VBZ_14_80); advmod(looking_VBG_17_93, no_RB_15_83); prep(looking_VBG_17_93, for_IN_18_101); pobj(for_IN_18_101, investor_NN_21_115); det(investor_NN_21_115, an_DT_19_105); nn(investor_NN_21_115, equity_NN_20_108) Template {rel} to {arg1} nsubj> {arg2} 0.0071 response ;;; response_NN_1_3 said to ;;; said_VBD_11_63 Mr. Miller ;;; Mr._NNP_9_52; Miller_NNP_10_56 0.00710 None None 0 pobj(In_IN_0_0, case_NN_2_7); det(case_NN_2_7, the_DT_1_3); prep(case_NN_2_7, of_IN_3_12); pobj(of_IN_3_12, rats_NNS_6_26); amod(rats_NNS_6_26, naked_JJ_4_15); nn(rats_NNS_6_26, mole_NN_5_21); nn(analyses_NNS_9_37, DNA_NNP_8_33); prep(shown_VBN_11_51, In_IN_0_0); punct(shown_VBN_11_51, ,_,_7_31); nsubj(shown_VBN_11_51, analyses_NNS_9_37); aux(shown_VBN_11_51, have_VBP_10_46); ccomp(shown_VBN_11_51, related_VBN_21_106); punct(shown_VBN_11_51, ._._22_114); predet(individuals_NNS_15_70, all_PDT_13_62); det(individuals_NNS_15_70, the_DT_14_66); prep(individuals_NNS_15_70, in_IN_16_82); pobj(in_IN_16_82, colony_NN_18_87); det(colony_NN_18_87, a_DT_17_85); complm(related_VBN_21_106, that_IN_12_57); nsubjpass(related_VBN_21_106, individuals_NNS_15_70); auxpass(related_VBN_21_106, are_VBP_19_94); advmod(related_VBN_21_106, closely_RB_20_98) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 DNA analyses ;;; DNA_NNP_8_33; analyses_NN_9_37 have shown in ;;; have_VBP_10_46; shown_VBN_11_51 the case of naked mole rats ;;; the_DT_1_3; case_NN_2_7; of_IN_3_12; naked_JJ_4_15; mole_NN_5_21; rats_NN_6_26 0.04440 None None 1 pobj(In_IN_0_0, context_NN_2_7); det(context_NN_2_7, the_DT_1_3); prep(context_NN_2_7, of_IN_3_15); pobj(of_IN_3_15, challenges_NNS_5_24); det(challenges_NNS_5_24, these_DT_4_18); prep(evolved_VBN_9_54, In_IN_0_0); punct(evolved_VBN_9_54, ,_,_6_35); nsubj(evolved_VBN_9_54, adaptations_NNS_7_37); aux(evolved_VBN_9_54, have_VBP_8_49); dobj(evolved_VBN_9_54, that_IN_10_62); punct(evolved_VBN_9_54, ._._22_132); pcomp(that_IN_10_62, enable_VB_11_67); dobj(enable_VB_11_67, animals_NNS_14_87); advmod(aquatic_JJ_13_79, most_RBS_12_74); amod(animals_NNS_14_87, aquatic_JJ_13_79); xcomp(animals_NNS_14_87, efficient_JJ_18_106); aux(efficient_JJ_18_106, to_TO_15_95); cop(efficient_JJ_18_106, be_VB_16_98); advmod(efficient_JJ_18_106, very_RB_17_101); prep(efficient_JJ_18_106, in_IN_19_116); pobj(in_IN_19_116, exchange_NN_21_123); nn(exchange_NN_21_123, gas_NN_20_119) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 adaptations ;;; adaptations_NN_7_37 have evolved that enable most aquatic animals to be very efficient in gas exchange in ;;; have_VBP_8_49; evolved_VBN_9_54; that_IN_10_62; enable_VB_11_67; most_RBS_12_74; aquatic_JJ_13_79; animals_NN_14_87; to_TO_15_95; be_VB_16_98; very_RB_17_101; efficient_JJ_18_106; in_IN_19_116; gas_NN_20_119; exchange_NN_21_123 the context of these challenges ;;; the_DT_1_3; context_NN_2_7; of_IN_3_15; these_DT_4_18; challenges_NN_5_24 0.04440 None None 1 pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) Template {rel} {arg1} dobj> {arg2} 0.1473 workers ;;; workers_NN_5_21 would receive ;;; would_MD_6_29; receive_VB_7_35 a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year ;;; a_DT_8_43; 3_CD_9_45; %_NN_10_47; wage_NN_11_49; boost_NN_12_54; and_CC_13_60; a_DT_14_64; 3_CD_15_66; %_NN_16_68; bonus_NN_17_70; ,_,_18_76; followed_VBN_19_78; by_IN_20_87; a_DT_21_90; 3_CD_22_92; %_NN_23_94; increase_NN_24_96; without_IN_25_105; a_DT_26_113; bonus_NN_27_115; in_IN_28_121; the_DT_29_124; third_JJ_30_128; year_NN_31_134 0.14730 None None 1 pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 workers ;;; workers_NN_5_21 would receive a 3 % bonus in ;;; would_MD_6_29; receive_VB_7_35; a_DT_14_64; 3_CD_15_66; %_NN_16_68; bonus_NN_17_70 the second year ;;; the_DT_1_3; second_JJ_2_7; year_NN_3_14 0.13490 None None 0 pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 workers ;;; workers_NN_5_21 would receive a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year in ;;; would_MD_6_29; receive_VB_7_35; a_DT_8_43; 3_CD_9_45; %_NN_10_47; wage_NN_11_49; boost_NN_12_54; and_CC_13_60; a_DT_14_64; 3_CD_15_66; %_NN_16_68; bonus_NN_17_70; ,_,_18_76; followed_VBN_19_78; by_IN_20_87; a_DT_21_90; 3_CD_22_92; %_NN_23_94; increase_NN_24_96; without_IN_25_105; a_DT_26_113; bonus_NN_27_115; in_IN_28_121; the_DT_29_124; third_JJ_30_128; year_NN_31_134 the second year ;;; the_DT_1_3; second_JJ_2_7; year_NN_3_14 0.13490 None None 1 pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 a 3 % wage boost and a 3 % bonus ;;; a_DT_8_43; 3_CD_9_45; %_NN_10_47; wage_NN_11_49; boost_NN_12_54; and_CC_13_60; a_DT_14_64; 3_CD_15_66; %_NN_16_68; bonus_NN_17_70 be followed by ;;; followed_VBN_19_78 a 3 % increase ;;; a_DT_21_90; 3_CD_22_92; %_NN_23_94; increase_NN_24_96 0.11100 None None 0 pobj(In_IN_0_0, year_NN_3_14); det(year_NN_3_14, the_DT_1_3); amod(year_NN_3_14, second_JJ_2_7); prep(receive_VB_7_35, In_IN_0_0); punct(receive_VB_7_35, ,_,_4_19); nsubj(receive_VB_7_35, workers_NNS_5_21); aux(receive_VB_7_35, would_MD_6_29); dobj(receive_VB_7_35, boost_NN_12_54); punct(receive_VB_7_35, ._._32_139); dep(%_NN_10_47, 3_CD_9_45); det(boost_NN_12_54, a_DT_8_43); amod(boost_NN_12_54, %_NN_10_47); nn(boost_NN_12_54, wage_NN_11_49); cc(boost_NN_12_54, and_CC_13_60); conj(boost_NN_12_54, bonus_NN_17_70); punct(boost_NN_12_54, ,_,_18_76); partmod(boost_NN_12_54, followed_VBN_19_78); dep(%_NN_16_68, 3_CD_15_66); det(bonus_NN_17_70, a_DT_14_64); amod(bonus_NN_17_70, %_NN_16_68); prep(followed_VBN_19_78, by_IN_20_87); pobj(by_IN_20_87, increase_NN_24_96); dep(%_NN_23_94, 3_CD_22_92); det(increase_NN_24_96, a_DT_21_90); amod(increase_NN_24_96, %_NN_23_94); prep(increase_NN_24_96, without_IN_25_105); prep(increase_NN_24_96, in_IN_28_121); pobj(without_IN_25_105, bonus_NN_27_115); det(bonus_NN_27_115, a_DT_26_113); pobj(in_IN_28_121, year_NN_31_134); det(year_NN_31_134, the_DT_29_124); amod(year_NN_31_134, third_JJ_30_128) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a 3 % wage boost and a 3 % bonus , followed by a 3 % increase without a bonus in the third year ;;; a_DT_8_43; 3_CD_9_45; %_NN_10_47; wage_NN_11_49; boost_NN_12_54; and_CC_13_60; a_DT_14_64; 3_CD_15_66; %_NN_16_68; bonus_NN_17_70; ,_,_18_76; followed_VBN_19_78; by_IN_20_87; a_DT_21_90; 3_CD_22_92; %_NN_23_94; increase_NN_24_96; without_IN_25_105; a_DT_26_113; bonus_NN_27_115; in_IN_28_121; the_DT_29_124; third_JJ_30_128; year_NN_31_134 would be receive in ;;; would_MD_6_29; receive_VB_7_35 the second year ;;; the_DT_1_3; second_JJ_2_7; year_NN_3_14 0.01320 None None 1 nn(Inc._NNP_1_10, Interspec_NNP_0_0); nsubj(reported_VBD_2_15, Inc._NNP_1_10); dobj(reported_VBD_2_15, loss_NN_5_30); punct(reported_VBD_2_15, ._._18_95); det(loss_NN_5_30, a_DT_3_24); amod(loss_NN_5_30, net_JJ_4_26); prep(loss_NN_5_30, of_IN_6_35); prep(loss_NN_5_30, for_IN_10_52); pobj(of_IN_6_35, $_$_7_38); number($_$_7_38, 2.4_CD_8_40); number($_$_7_38, million_CD_9_44); pobj(for_IN_10_52, quarter_NN_14_73); det(quarter_NN_14_73, the_DT_11_56); amod(quarter_NN_14_73, fiscal_JJ_12_60); amod(quarter_NN_14_73, third_JJ_13_67); partmod(quarter_NN_14_73, ended_VBN_15_81); tmod(ended_VBN_15_81, Aug._NNP_16_87); num(Aug._NNP_16_87, 31_CD_17_92) Template {rel} {arg1} dobj> {arg2} 0.3797 Interspec Inc. ;;; Interspec_NNP_0_0; Inc._NNP_1_10 reported ;;; reported_VBD_2_15 a net loss of $ 2.4 million ;;; a_DT_3_24; net_JJ_4_26; loss_NN_5_30; of_IN_6_35; $_$_7_38; 2.4_CD_8_40; million_CD_9_44 0.37970 None None 1 nn(Inc._NNP_1_10, Interspec_NNP_0_0); nsubj(reported_VBD_2_15, Inc._NNP_1_10); dobj(reported_VBD_2_15, loss_NN_5_30); punct(reported_VBD_2_15, ._._18_95); det(loss_NN_5_30, a_DT_3_24); amod(loss_NN_5_30, net_JJ_4_26); prep(loss_NN_5_30, of_IN_6_35); prep(loss_NN_5_30, for_IN_10_52); pobj(of_IN_6_35, $_$_7_38); number($_$_7_38, 2.4_CD_8_40); number($_$_7_38, million_CD_9_44); pobj(for_IN_10_52, quarter_NN_14_73); det(quarter_NN_14_73, the_DT_11_56); amod(quarter_NN_14_73, fiscal_JJ_12_60); amod(quarter_NN_14_73, third_JJ_13_67); partmod(quarter_NN_14_73, ended_VBN_15_81); tmod(ended_VBN_15_81, Aug._NNP_16_87); num(Aug._NNP_16_87, 31_CD_17_92) Template be {rel} in {arg1} >partmod> {rel:postag=VBN} >tmod> {arg2} 0.0073 the fiscal third quarter ;;; the_DT_11_56; fiscal_JJ_12_60; third_JJ_13_67; quarter_NN_14_73 be ended in ;;; ended_VBN_15_81 Aug. 31 ;;; Aug._NNP_16_87; 31_CD_17_92 0.00730 None None 1 nsubj(distinction_NN_3_8, It_PRP_0_0); cop(distinction_NN_3_8, is_VBZ_1_3); det(distinction_NN_3_8, a_DT_2_6); rcmod(distinction_NN_3_8, satisfies_NNS_5_25); punct(distinction_NN_3_8, ._._11_62); nsubj(satisfies_NNS_5_25, that_IN_4_20); dobj(satisfies_NNS_5_25, side_NN_7_43); det(side_NN_7_43, neither_DT_6_35); prep(side_NN_7_43, in_IN_8_48); pobj(in_IN_8_48, debate_NN_10_55); det(debate_NN_10_55, the_DT_9_51) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 It ;;; It_PRP_0_0 is ;;; is_VBZ_1_3 a distinction that satisfies neither side in the debate ;;; a_DT_2_6; distinction_NN_3_8; that_IN_4_20; satisfies_NN_5_25; neither_DT_6_35; side_NN_7_43; in_IN_8_48; the_DT_9_51; debate_NN_10_55 0.00840 None None 1 nsubj(important_JJ_2_6, It_PRP_0_0); cop(important_JJ_2_6, is_VBZ_1_3); xcomp(important_JJ_2_6, focus_VB_4_19); aux(focus_VB_4_19, to_TO_3_16); prep(focus_VB_4_19, on_IN_5_25); pobj(on_IN_5_25, features_NNS_6_28); dep(features_NNS_6_28, that_IN_7_37); pobj(that_IN_7_37, result_NN_8_42); punct(that_IN_7_37, ,_,_12_70); prep(result_NN_8_42, from_IN_9_49); pobj(from_IN_9_49, ancestry_NN_11_61); amod(ancestry_NN_11_61, common_JJ_10_54); advcl(,_,_12_70, reflect_VBP_17_99); punct(,_,_12_70, ._._20_134); advmod(features_NNS_16_90, only_RB_14_80); amod(features_NNS_16_90, such_JJ_15_85); mark(reflect_VBP_17_99, because_IN_13_72); nsubj(reflect_VBP_17_99, features_NNS_16_90); dobj(reflect_VBP_17_99, relationships_NNS_19_120); amod(relationships_NNS_19_120, evolutionary_JJ_18_107) Template {rel} {arg1} dobj> {arg2} 0.0416 such features ;;; such_JJ_15_85; features_NN_16_90 reflect ;;; reflect_VBP_17_99 evolutionary relationships ;;; evolutionary_JJ_18_107; relationships_NN_19_120 0.04160 None None 0 nsubj(important_JJ_2_6, It_PRP_0_0); cop(important_JJ_2_6, is_VBZ_1_3); xcomp(important_JJ_2_6, focus_VB_4_19); aux(focus_VB_4_19, to_TO_3_16); prep(focus_VB_4_19, on_IN_5_25); pobj(on_IN_5_25, features_NNS_6_28); dep(features_NNS_6_28, that_IN_7_37); pobj(that_IN_7_37, result_NN_8_42); punct(that_IN_7_37, ,_,_12_70); prep(result_NN_8_42, from_IN_9_49); pobj(from_IN_9_49, ancestry_NN_11_61); amod(ancestry_NN_11_61, common_JJ_10_54); advcl(,_,_12_70, reflect_VBP_17_99); punct(,_,_12_70, ._._20_134); advmod(features_NNS_16_90, only_RB_14_80); amod(features_NNS_16_90, such_JJ_15_85); mark(reflect_VBP_17_99, because_IN_13_72); nsubj(reflect_VBP_17_99, features_NNS_16_90); dobj(reflect_VBP_17_99, relationships_NNS_19_120); amod(relationships_NNS_19_120, evolutionary_JJ_18_107) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 It ;;; It_PRP_0_0 is ;;; is_VBZ_1_3 important ;;; important_JJ_2_6 0.00840 None None 0 nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 It ;;; It_PRP_0_0 is the presence of ;;; is_VBZ_1_3; the_DT_2_6; presence_NN_3_10 internal and external " enemies ;;; internal_JJ_5_22; and_CC_6_31; external_JJ_7_35; "_``_8_44; enemies_NN_9_46 0.95550 None None 1 nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.2444 Mikhail Gorbachev 's Soviet Union ;;; Mikhail_NNP_22_112; Gorbachev_NNP_23_120; 's_POS_24_130; Soviet_NNP_25_133; Union_NNP_26_140 continues to supply with ;;; continues_VBZ_27_146; to_TO_28_156; supply_VB_29_159 bullets ;;; bullets_NN_31_171 0.24440 None None 0 nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 It ;;; It_PRP_0_0 is ;;; is_VBZ_1_3 the presence of internal and external " enemies which justifies the need for a large , active army ;;; the_DT_2_6; presence_NN_3_10; of_IN_4_19; internal_JJ_5_22; and_CC_6_31; external_JJ_7_35; "_``_8_44; enemies_NN_9_46; which_WDT_11_56; justifies_VBZ_12_62; the_DT_13_72; need_NN_14_76; for_IN_15_81; a_DT_16_85; large_JJ_17_87; ,_,_18_93; active_JJ_19_95; army_NN_20_102 0.00840 None None 0 nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0067 Mikhail Gorbachev 's Soviet Union ;;; Mikhail_NNP_22_112; Gorbachev_NNP_23_120; 's_POS_24_130; Soviet_NNP_25_133; Union_NNP_26_140 to supply with ;;; to_TO_28_156; supply_VB_29_159 bullets ;;; bullets_NN_31_171 0.00670 None None 1 nsubj(presence_NN_3_10, It_PRP_0_0); cop(presence_NN_3_10, is_VBZ_1_3); det(presence_NN_3_10, the_DT_2_6); prep(presence_NN_3_10, of_IN_4_19); rcmod(presence_NN_3_10, justifies_VBZ_12_62); punct(presence_NN_3_10, ._._32_179); pobj(of_IN_4_19, enemies_NNS_9_46); cc(internal_JJ_5_22, and_CC_6_31); conj(internal_JJ_5_22, external_JJ_7_35); amod(enemies_NNS_9_46, internal_JJ_5_22); punct(enemies_NNS_9_46, "_``_8_44); punct(enemies_NNS_9_46, "_''_10_54); nsubj(justifies_VBZ_12_62, which_WDT_11_56); dobj(justifies_VBZ_12_62, need_NN_14_76); det(need_NN_14_76, the_DT_13_72); prep(need_NN_14_76, for_IN_15_81); pobj(for_IN_15_81, army_NN_20_102); det(army_NN_20_102, a_DT_16_85); amod(army_NN_20_102, large_JJ_17_87); punct(army_NN_20_102, ,_,_18_93); amod(army_NN_20_102, active_JJ_19_95); rcmod(army_NN_20_102, continues_VBZ_27_146); nn(Gorbachev_NNP_23_120, Mikhail_NNP_22_112); possessive(Gorbachev_NNP_23_120, 's_POS_24_130); poss(Union_NNP_26_140, Gorbachev_NNP_23_120); nn(Union_NNP_26_140, Soviet_NNP_25_133); rel(continues_VBZ_27_146, that_IN_21_107); nsubj(continues_VBZ_27_146, Union_NNP_26_140); xcomp(continues_VBZ_27_146, supply_VB_29_159); aux(supply_VB_29_159, to_TO_28_156); prep(supply_VB_29_159, with_IN_30_166); pobj(with_IN_30_166, bullets_NNS_31_171) Template be {rel} by {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 It ;;; It_PRP_0_0 takes encouragement from ;;; takes_VBZ_1_3; encouragement_NN_2_9 one of the schoolboys ;;; one_CD_4_28; of_IN_5_32; the_DT_6_35; schoolboys_NN_7_39 0.24440 None None 1 nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1443 It ;;; It_PRP_0_0 takes encouragement to persuade ;;; takes_VBZ_1_3; encouragement_NN_2_9; to_TO_8_50; persuade_VB_9_53 David ;;; David_NNP_10_62 0.14430 None None 0 nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) Template {rel} {arg1} dobj> {arg2} 0.1443 It ;;; It_PRP_0_0 takes ;;; takes_VBZ_1_3 encouragement ;;; encouragement_NN_2_9 0.14430 None None 1 nsubj(takes_VBZ_1_3, It_PRP_0_0); dobj(takes_VBZ_1_3, encouragement_NN_2_9); prep(takes_VBZ_1_3, from_IN_3_23); xcomp(takes_VBZ_1_3, persuade_VB_9_53); punct(takes_VBZ_1_3, ,_,_17_105); cc(takes_VBZ_1_3, but_CC_18_107); conj(takes_VBZ_1_3, carries_VBZ_20_114); punct(takes_VBZ_1_3, ._._27_147); pobj(from_IN_3_23, one_CD_4_28); prep(one_CD_4_28, of_IN_5_32); pobj(of_IN_5_32, schoolboys_NNS_7_39); det(schoolboys_NNS_7_39, the_DT_6_35); aux(persuade_VB_9_53, to_TO_8_50); dobj(persuade_VB_9_53, David_NNP_10_62); xcomp(persuade_VB_9_53, contemplate_VB_12_71); aux(contemplate_VB_12_71, to_TO_11_68); dobj(contemplate_VB_12_71, life_NN_13_83); prep(contemplate_VB_12_71, without_IN_14_88); pobj(without_IN_14_88, wife_NN_16_100); poss(wife_NN_16_100, his_PRP$_15_96); nsubj(carries_VBZ_20_114, he_PRP_19_111); prep(carries_VBZ_20_114, on_IN_21_122); dep(on_IN_21_122, for_IN_22_125); pobj(for_IN_22_125, sake_NN_24_133); det(sake_NN_24_133, the_DT_23_129); prep(sake_NN_24_133, of_IN_25_138); pobj(of_IN_25_138, Grace_NNP_26_141) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 life ;;; life_NN_13_83 to be contemplate without ;;; to_TO_11_68; contemplate_VB_12_71 his wife ;;; his_PRP$_15_96; wife_NN_16_100 0.01320 None None 1 possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Italy 's unemployment rate ;;; Italy_NNP_0_0; 's_POS_1_6; unemployment_NN_2_9; rate_NN_3_22 rose from ;;; rose_VBD_4_27 11.9 % ;;; 11.9_CD_15_72; %_NN_16_77 0.73450 None None 1 possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Italy 's unemployment rate ;;; Italy_NNP_0_0; 's_POS_1_6; unemployment_NN_2_9; rate_NN_3_22 rose in ;;; rose_VBD_4_27 April ;;; April_NNP_18_82 0.73450 None None 1 possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Italy 's unemployment rate ;;; Italy_NNP_0_0; 's_POS_1_6; unemployment_NN_2_9; rate_NN_3_22 rose in ;;; rose_VBD_4_27 July ;;; July_NNP_13_62 0.73450 None None 1 possessive(Italy_NNP_0_0, 's_POS_1_6); poss(rate_NN_3_22, Italy_NNP_0_0); nn(rate_NN_3_22, unemployment_NN_2_9); nsubj(rose_VBD_4_27, rate_NN_3_22); prep(rose_VBD_4_27, to_TO_5_32); prep(rose_VBD_4_27, in_IN_12_59); prep(rose_VBD_4_27, from_IN_14_67); prep(rose_VBD_4_27, in_IN_17_79); punct(rose_VBD_4_27, ,_,_19_88); cc(rose_VBD_4_27, and_CC_20_90); conj(rose_VBD_4_27, was_VBD_21_94); punct(rose_VBD_4_27, ,_,_29_128); prep(rose_VBD_4_27, according_VBG_30_130); punct(rose_VBD_4_27, ._._39_198); pobj(to_TO_5_32, %_NN_7_38); num(%_NN_7_38, 12_CD_6_35); prep(%_NN_7_38, of_IN_8_40); pobj(of_IN_8_40, force_NN_11_53); det(force_NN_11_53, the_DT_9_43); nn(force_NN_11_53, labor_NN_10_47); pobj(in_IN_12_59, July_NNP_13_62); pobj(from_IN_14_67, %_NN_16_77); num(%_NN_16_77, 11.9_CD_15_72); pobj(in_IN_17_79, April_NNP_18_82); advmod(was_VBD_21_94, up_RB_22_98); dep(up_RB_22_98, from_IN_23_101); pobj(from_IN_23_101, %_NN_25_111); dep(from_IN_23_101, earlier_RB_28_120); num(%_NN_25_111, 11.7_CD_24_106); det(year_NN_27_115, a_DT_26_113); dep(earlier_RB_28_120, year_NN_27_115); dep(according_VBG_30_130, to_TO_31_140); pobj(to_TO_31_140, figures_NNS_33_153); amod(figures_NNS_33_153, quarterly_JJ_32_143); prep(figures_NNS_33_153, from_IN_34_161); pobj(from_IN_34_161, institute_NN_38_188); det(institute_NN_38_188, the_DT_35_166); nn(institute_NN_38_188, state_NN_36_170); amod(institute_NN_38_188, statistical_JJ_37_176) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Italy 's unemployment rate ;;; Italy_NNP_0_0; 's_POS_1_6; unemployment_NN_2_9; rate_NN_3_22 rose to ;;; rose_VBD_4_27 12 % of the labor force ;;; 12_CD_6_35; %_NN_7_38; of_IN_8_40; the_DT_9_43; labor_NN_10_47; force_NN_11_53 0.73450 None None 1 punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 the provision ;;; the_DT_17_107; provision_NN_18_111 be initially drafted by ;;; initially_RB_19_121; drafted_VBN_20_131 Mr. Gray ;;; Mr._NNP_22_142; Gray_NNP_23_146 0.11100 None None 0 punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) Template {rel} {arg1} dobj> {arg2} 0.0577 Jamaica , wary ;;; Jamaica_NNP_0_0; ,_,_1_8; wary_JJ_2_10 has apparently instructed ;;; has_VBZ_10_57; apparently_RB_11_61; instructed_VBN_12_72 its lobbyist to abandon the provision ;;; its_PRP$_13_83; lobbyist_NN_14_87; to_TO_15_96; abandon_VB_16_99; the_DT_17_107; provision_NN_18_111 0.05770 None None 0 punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a claim ;;; a_DT_47_264; claim_NN_48_266 to be insert by ;;; to_TO_45_254; insert_VB_46_257 the Philippines ;;; the_DT_50_275; Philippines_NNP_51_279 0.01320 None None 0 punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Mr. Inouye ;;; Mr._NNP_31_189; Inouye_NNP_32_193 is ;;; is_VBZ_43_246 able ;;; able_JJ_44_249 0.00840 None None 0 punct(Jamaica_NNP_0_0, ,_,_1_8); amod(Jamaica_NNP_0_0, wary_JJ_2_10); punct(Jamaica_NNP_0_0, ,_,_9_55); prep(wary_JJ_2_10, of_IN_3_15); pcomp(of_IN_3_15, upsetting_VBG_4_18); dobj(upsetting_VBG_4_18, allies_NNS_8_48); poss(allies_NNS_8_48, its_PRP$_5_28); nn(allies_NNS_8_48, Caribbean_NNP_6_32); nn(allies_NNS_8_48, Basin_NNP_7_42); nsubj(instructed_VBN_12_72, Jamaica_NNP_0_0); aux(instructed_VBN_12_72, has_VBZ_10_57); advmod(instructed_VBN_12_72, apparently_RB_11_61); dobj(instructed_VBN_12_72, lobbyist_NN_14_87); punct(instructed_VBN_12_72, ,_,_24_151); cc(instructed_VBN_12_72, but_CC_25_153); conj(instructed_VBN_12_72, is_VBZ_29_178); punct(instructed_VBN_12_72, ._._52_291); poss(lobbyist_NN_14_87, its_PRP$_13_83); infmod(lobbyist_NN_14_87, abandon_VB_16_99); aux(abandon_VB_16_99, to_TO_15_96); dobj(abandon_VB_16_99, provision_NN_18_111); det(provision_NN_18_111, the_DT_17_107); partmod(provision_NN_18_111, drafted_VBN_20_131); advmod(drafted_VBN_20_131, initially_RB_19_121); prep(drafted_VBN_20_131, by_IN_21_139); pobj(by_IN_21_139, Gray_NNP_23_146); nn(Gray_NNP_23_146, Mr._NNP_22_142); det(question_NN_28_169, the_DT_26_157); amod(question_NN_28_169, greater_JJR_27_161); nsubj(is_VBZ_29_178, question_NN_28_169); ccomp(is_VBZ_29_178, able_JJ_44_249); nn(Inouye_NNP_32_193, Mr._NNP_31_189); punct(Inouye_NNP_32_193, ,_,_33_200); rcmod(Inouye_NNP_32_193, has_VBZ_35_206); punct(Inouye_NNP_32_193, ,_,_42_244); nsubj(has_VBZ_35_206, who_WP_34_202); dobj(has_VBZ_35_206, ties_NNS_37_217); amod(ties_NNS_37_217, strong_JJ_36_210); prep(ties_NNS_37_217, to_TO_38_222); pobj(to_TO_38_222, industry_NN_41_235); det(industry_NN_41_235, the_DT_39_225); nn(industry_NN_41_235, sugar_NN_40_229); complm(able_JJ_44_249, whether_IN_30_181); nsubj(able_JJ_44_249, Inouye_NNP_32_193); cop(able_JJ_44_249, is_VBZ_43_246); xcomp(able_JJ_44_249, insert_VB_46_257); aux(insert_VB_46_257, to_TO_45_254); dobj(insert_VB_46_257, claim_NN_48_266); prep(insert_VB_46_257, by_IN_49_272); det(claim_NN_48_266, a_DT_47_264); pobj(by_IN_49_272, Philippines_NNPS_51_279); det(Philippines_NNPS_51_279, the_DT_50_275) Template be {rel} by {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0054 Mr. Inouye ;;; Mr._NNP_31_189; Inouye_NNP_32_193 to insert ;;; to_TO_45_254; insert_VB_46_257 a claim ;;; a_DT_47_264; claim_NN_48_266 0.00540 None None 1 punct(Ji-an_NNP_0_0, ,_,_1_6); appos(Ji-an_NNP_0_0, Hualien_NNP_2_8); punct(Ji-an_NNP_0_0, ,_,_3_16); nsubj(township_NN_6_23, Ji-an_NNP_0_0); cop(township_NN_6_23, is_VBZ_4_18); det(township_NN_6_23, a_DT_5_21); prep(township_NN_6_23, near_IN_7_32); punct(township_NN_6_23, ._._12_59); pobj(near_IN_7_32, City_NNP_9_45); nn(City_NNP_9_45, Hualien_NNP_8_37); punct(City_NNP_9_45, ,_,_10_50); appos(City_NNP_9_45, Taiwan_NNP_11_52) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 Ji-an ;;; Ji-an_NNP_0_0 is a township near ;;; is_VBZ_4_18; a_DT_5_21; township_NN_6_23 Hualien City ;;; Hualien_NNP_8_37; City_NNP_9_45 0.95550 None None 1 punct(Ji-an_NNP_0_0, ,_,_1_6); appos(Ji-an_NNP_0_0, Hualien_NNP_2_8); punct(Ji-an_NNP_0_0, ,_,_3_16); nsubj(township_NN_6_23, Ji-an_NNP_0_0); cop(township_NN_6_23, is_VBZ_4_18); det(township_NN_6_23, a_DT_5_21); prep(township_NN_6_23, near_IN_7_32); punct(township_NN_6_23, ._._12_59); pobj(near_IN_7_32, City_NNP_9_45); nn(City_NNP_9_45, Hualien_NNP_8_37); punct(City_NNP_9_45, ,_,_10_50); appos(City_NNP_9_45, Taiwan_NNP_11_52) Template be {rel} {prep} {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locate|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109 Hualien City ;;; Hualien_NNP_8_37; City_NNP_9_45 is a township near ;;; is_VBZ_4_18; a_DT_5_21; township_NN_6_23 Taiwan ;;; Taiwan_NNP_11_52 0.01090 None None 1 punct(Ji-an_NNP_0_0, ,_,_1_6); appos(Ji-an_NNP_0_0, Hualien_NNP_2_8); punct(Ji-an_NNP_0_0, ,_,_3_16); nsubj(township_NN_6_23, Ji-an_NNP_0_0); cop(township_NN_6_23, is_VBZ_4_18); det(township_NN_6_23, a_DT_5_21); prep(township_NN_6_23, near_IN_7_32); punct(township_NN_6_23, ._._12_59); pobj(near_IN_7_32, City_NNP_9_45); nn(City_NNP_9_45, Hualien_NNP_8_37); punct(City_NNP_9_45, ,_,_10_50); appos(City_NNP_9_45, Taiwan_NNP_11_52) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Ji-an ;;; Ji-an_NNP_0_0 is ;;; is_VBZ_4_18 a township ;;; a_DT_5_21; township_NN_6_23 0.00840 None None 1 nn(Lombardo_NNP_1_7, Joseph_NNP_0_0); punct(Lombardo_NNP_1_7, ,_,_2_16); rcmod(Lombardo_NNP_1_7, alleged_VBD_6_37); punct(Lombardo_NNP_1_7, ,_,_17_95); det(government_NN_5_26, the_DT_4_22); rel(alleged_VBD_6_37, who_WP_3_18); nsubj(alleged_VBD_6_37, government_NN_5_26); ccomp(alleged_VBD_6_37, captain_NN_10_55); cop(captain_NN_10_55, was_VBD_7_45); det(captain_NN_10_55, the_DT_8_49); punct(captain_NN_10_55, "_``_9_53); punct(captain_NN_10_55, "_''_11_63); prep(captain_NN_10_55, of_IN_12_65); pobj(of_IN_12_65, crime_NN_14_78); amod(crime_NN_14_78, organized_JJ_13_68); prep(crime_NN_14_78, in_IN_15_84); pobj(in_IN_15_84, Chicago_NNP_16_87); nsubj(one_CD_19_101, Lombardo_NNP_1_7); cop(one_CD_19_101, was_VBD_18_97); prep(one_CD_19_101, of_IN_20_105); punct(one_CD_19_101, ._._33_198); pobj(of_IN_20_105, defendants_NNS_22_117); amod(defendants_NNS_22_117, numerous_JJ_21_108); prep(defendants_NNS_22_117, in_IN_23_128); pobj(in_IN_23_128, suit_NN_29_171); det(government_NN_25_135, the_DT_24_131); possessive(government_NN_25_135, 's_POS_26_146); poss(suit_NN_29_171, government_NN_25_135); amod(suit_NN_29_171, sweeping_JJ_27_149); nn(suit_NN_29_171, racketeering_NN_28_158); prep(suit_NN_29_171, against_IN_30_176); pobj(against_IN_30_176, Teamsters_NNPS_32_188); det(Teamsters_NNPS_32_188, the_DT_31_184) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 Joseph Lombardo ;;; Joseph_NNP_0_0; Lombardo_NNP_1_7 was ;;; was_VBD_18_97 one of numerous defendants ;;; one_CD_19_101; of_IN_20_105; numerous_JJ_21_108; defendants_NN_22_117 0.02160 None None 0 nn(Lombardo_NNP_1_7, Joseph_NNP_0_0); punct(Lombardo_NNP_1_7, ,_,_2_16); rcmod(Lombardo_NNP_1_7, alleged_VBD_6_37); punct(Lombardo_NNP_1_7, ,_,_17_95); det(government_NN_5_26, the_DT_4_22); rel(alleged_VBD_6_37, who_WP_3_18); nsubj(alleged_VBD_6_37, government_NN_5_26); ccomp(alleged_VBD_6_37, captain_NN_10_55); cop(captain_NN_10_55, was_VBD_7_45); det(captain_NN_10_55, the_DT_8_49); punct(captain_NN_10_55, "_``_9_53); punct(captain_NN_10_55, "_''_11_63); prep(captain_NN_10_55, of_IN_12_65); pobj(of_IN_12_65, crime_NN_14_78); amod(crime_NN_14_78, organized_JJ_13_68); prep(crime_NN_14_78, in_IN_15_84); pobj(in_IN_15_84, Chicago_NNP_16_87); nsubj(one_CD_19_101, Lombardo_NNP_1_7); cop(one_CD_19_101, was_VBD_18_97); prep(one_CD_19_101, of_IN_20_105); punct(one_CD_19_101, ._._33_198); pobj(of_IN_20_105, defendants_NNS_22_117); amod(defendants_NNS_22_117, numerous_JJ_21_108); prep(defendants_NNS_22_117, in_IN_23_128); pobj(in_IN_23_128, suit_NN_29_171); det(government_NN_25_135, the_DT_24_131); possessive(government_NN_25_135, 's_POS_26_146); poss(suit_NN_29_171, government_NN_25_135); amod(suit_NN_29_171, sweeping_JJ_27_149); nn(suit_NN_29_171, racketeering_NN_28_158); prep(suit_NN_29_171, against_IN_30_176); pobj(against_IN_30_176, Teamsters_NNPS_32_188); det(Teamsters_NNPS_32_188, the_DT_31_184) Template be {rel} {prep} {arg1} prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0095 Joseph Lombardo ;;; Joseph_NNP_0_0; Lombardo_NNP_1_7 be numerous defendants in ;;; numerous_JJ_21_108; defendants_NN_22_117 the government 's sweeping racketeering suit ;;; the_DT_24_131; government_NN_25_135; 's_POS_26_146; sweeping_JJ_27_149; racketeering_NN_28_158; suit_NN_29_171 0.00950 None None 1 nsubjpass(drafted_VBN_3_21, Junge_NNP_0_0); auxpass(drafted_VBN_3_21, was_VBD_1_6); advmod(drafted_VBN_3_21, originally_RB_2_10); prep(drafted_VBN_3_21, by_IN_4_29); prep(drafted_VBN_3_21, in_IN_9_56); cc(drafted_VBN_3_21, and_CC_14_82); conj(drafted_VBN_3_21, traded_VBN_17_95); punct(drafted_VBN_3_21, ._._23_134); pobj(by_IN_4_29, Dodgers_NNP_8_48); det(Dodgers_NNP_8_48, the_DT_5_32); nn(Dodgers_NNP_8_48, Los_NNP_6_36); nn(Dodgers_NNP_8_48, Angeles_NNP_7_40); pobj(in_IN_9_56, draft_NN_13_76); det(draft_NN_13_76, the_DT_10_59); num(draft_NN_13_76, 1999_CD_11_63); amod(draft_NN_13_76, amateur_JJ_12_68); auxpass(traded_VBN_17_95, was_VBD_15_86); advmod(traded_VBN_17_95, then_RB_16_90); prep(traded_VBN_17_95, to_TO_18_102); prt(traded_VBN_17_95, in_IN_22_131); pobj(to_TO_18_102, Phillies_NNP_21_122); det(Phillies_NNP_21_122, the_DT_19_105); nn(Phillies_NNP_21_122, Philadelphia_NNP_20_109) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Junge ;;; Junge_NNP_0_0 was originally drafted by ;;; was_VBD_1_6; originally_RB_2_10; drafted_VBN_3_21 the Los Angeles Dodgers ;;; the_DT_5_32; Los_NNP_6_36; Angeles_NNP_7_40; Dodgers_NNP_8_48 1.00000 None None 1 nsubjpass(drafted_VBN_3_21, Junge_NNP_0_0); auxpass(drafted_VBN_3_21, was_VBD_1_6); advmod(drafted_VBN_3_21, originally_RB_2_10); prep(drafted_VBN_3_21, by_IN_4_29); prep(drafted_VBN_3_21, in_IN_9_56); cc(drafted_VBN_3_21, and_CC_14_82); conj(drafted_VBN_3_21, traded_VBN_17_95); punct(drafted_VBN_3_21, ._._23_134); pobj(by_IN_4_29, Dodgers_NNP_8_48); det(Dodgers_NNP_8_48, the_DT_5_32); nn(Dodgers_NNP_8_48, Los_NNP_6_36); nn(Dodgers_NNP_8_48, Angeles_NNP_7_40); pobj(in_IN_9_56, draft_NN_13_76); det(draft_NN_13_76, the_DT_10_59); num(draft_NN_13_76, 1999_CD_11_63); amod(draft_NN_13_76, amateur_JJ_12_68); auxpass(traded_VBN_17_95, was_VBD_15_86); advmod(traded_VBN_17_95, then_RB_16_90); prep(traded_VBN_17_95, to_TO_18_102); prt(traded_VBN_17_95, in_IN_22_131); pobj(to_TO_18_102, Phillies_NNP_21_122); det(Phillies_NNP_21_122, the_DT_19_105); nn(Phillies_NNP_21_122, Philadelphia_NNP_20_109) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Junge ;;; Junge_NNP_0_0 was originally drafted in ;;; was_VBD_1_6; originally_RB_2_10; drafted_VBN_3_21 the 1999 amateur draft ;;; the_DT_10_59; 1999_CD_11_63; amateur_JJ_12_68; draft_NN_13_76 1.00000 None None 1 nsubjpass(drafted_VBN_3_21, Junge_NNP_0_0); auxpass(drafted_VBN_3_21, was_VBD_1_6); advmod(drafted_VBN_3_21, originally_RB_2_10); prep(drafted_VBN_3_21, by_IN_4_29); prep(drafted_VBN_3_21, in_IN_9_56); cc(drafted_VBN_3_21, and_CC_14_82); conj(drafted_VBN_3_21, traded_VBN_17_95); punct(drafted_VBN_3_21, ._._23_134); pobj(by_IN_4_29, Dodgers_NNP_8_48); det(Dodgers_NNP_8_48, the_DT_5_32); nn(Dodgers_NNP_8_48, Los_NNP_6_36); nn(Dodgers_NNP_8_48, Angeles_NNP_7_40); pobj(in_IN_9_56, draft_NN_13_76); det(draft_NN_13_76, the_DT_10_59); num(draft_NN_13_76, 1999_CD_11_63); amod(draft_NN_13_76, amateur_JJ_12_68); auxpass(traded_VBN_17_95, was_VBD_15_86); advmod(traded_VBN_17_95, then_RB_16_90); prep(traded_VBN_17_95, to_TO_18_102); prt(traded_VBN_17_95, in_IN_22_131); pobj(to_TO_18_102, Phillies_NNP_21_122); det(Phillies_NNP_21_122, the_DT_19_105); nn(Phillies_NNP_21_122, Philadelphia_NNP_20_109) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Junge ;;; Junge_NNP_0_0 was then traded in to ;;; was_VBD_15_86; then_RB_16_90; traded_VBN_17_95; in_IN_22_131 the Philadelphia Phillies ;;; the_DT_19_105; Philadelphia_NNP_20_109; Phillies_NNP_21_122 1.00000 None None 1 nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 Lakitelek ;;; Lakitelek_NNP_0_0 is a large village in ;;; is_VBZ_1_10; a_DT_2_13; large_JJ_3_15; village_NN_4_21 Bics-Kiskun county ;;; Bics-Kiskun_NNP_6_32; county_NN_7_44 0.95550 None None 1 nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 Lakitelek ;;; Lakitelek_NNP_0_0 is a large village in ;;; is_VBZ_1_10; a_DT_2_13; large_JJ_3_15; village_NN_4_21 the Southern Great Plain region of southern Hungary ;;; the_DT_10_56; Southern_NNP_11_60; Great_NNP_12_69; Plain_NNP_13_75; region_NN_14_81; of_IN_15_88; southern_JJ_16_91; Hungary_NNP_17_100 0.95550 None None 1 nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) Template be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0961 Southern Great Plain ;;; Southern_NNP_11_60; Great_NNP_12_69; Plain_NNP_13_75 be region of ;;; region_NN_14_81 southern Hungary ;;; southern_JJ_16_91; Hungary_NNP_17_100 0.09610 None None 0 nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) Template be {rel} in {arg1:postag=NNP} nn> {arg2:postag=NNP} 0.0331 southern Hungary ;;; southern_JJ_16_91; Hungary_NNP_17_100 be region in ;;; region_NN_14_81 Southern Great Plain ;;; Southern_NNP_11_60; Great_NNP_12_69; Plain_NNP_13_75 0.03310 None None 1 nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) Template be {rel} in {arg1:postag=NNP} prep_of> {arg2:postag=NNP} 0.021 Southern Great Plain ;;; Southern_NNP_11_60; Great_NNP_12_69; Plain_NNP_13_75 be region in ;;; region_NN_14_81 southern Hungary ;;; southern_JJ_16_91; Hungary_NNP_17_100 0.02100 None None 0 nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) Template be {rel} of {arg1} prep_in> {rel:postag=NN:regex=capital|city|heart|member|part|region|state|suburb} >prep_of> {arg2} 0.0095 Bics-Kiskun county ;;; Bics-Kiskun_NNP_6_32; county_NN_7_44 be the Southern Great Plain region of ;;; the_DT_10_56; Southern_NNP_11_60; Great_NNP_12_69; Plain_NNP_13_75; region_NN_14_81 southern Hungary ;;; southern_JJ_16_91; Hungary_NNP_17_100 0.00950 None None 1 nsubj(village_NN_4_21, Lakitelek_NNP_0_0); cop(village_NN_4_21, is_VBZ_1_10); det(village_NN_4_21, a_DT_2_13); amod(village_NN_4_21, large_JJ_3_15); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_8_51); prep(village_NN_4_21, in_IN_9_53); punct(village_NN_4_21, ._._18_108); pobj(in_IN_5_29, county_NN_7_44); nn(county_NN_7_44, Bics-Kiskun_NNP_6_32); pobj(in_IN_9_53, region_NN_14_81); det(region_NN_14_81, the_DT_10_56); nn(region_NN_14_81, Southern_NNP_11_60); nn(region_NN_14_81, Great_NNP_12_69); nn(region_NN_14_81, Plain_NNP_13_75); prep(region_NN_14_81, of_IN_15_88); pobj(of_IN_15_88, Hungary_NNP_17_100); amod(Hungary_NNP_17_100, southern_JJ_16_91) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Lakitelek ;;; Lakitelek_NNP_0_0 is ;;; is_VBZ_1_10 a large village ;;; a_DT_2_13; large_JJ_3_15; village_NN_4_21 0.00840 None None 0 nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 lakes ;;; lakes_NN_30_164 be the filtering activities of ;;; the_DT_15_72; filtering_VBG_16_76; activities_NN_17_86 freshwater bivalves ;;; freshwater_NN_19_100; bivalves_NN_20_111 0.04770 None None 1 nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) Template {rel} {arg1} dobj> {arg2} 0.0416 Land snails ;;; Land_NNP_0_0; snails_NN_1_5 play ;;; play_VBP_6_28 a key role ;;; a_DT_7_33; key_JJ_8_35; role_NN_9_39 0.04160 while_the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes_14_30 None 1 nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) Template {rel} {arg1} dobj> {arg2} 0.0416 the filtering activities of freshwater bivalves ;;; the_DT_15_72; filtering_VBG_16_76; activities_NN_17_86; of_IN_18_97; freshwater_NN_19_100; bivalves_NN_20_111 purify ;;; purify_VBP_21_120 the waters of streams ;;; the_DT_22_127; waters_NN_23_131; of_IN_24_138; streams_NN_25_141 0.04160 None None 0 nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 Land snails ;;; Land_NNP_0_0; snails_NN_1_5 play a key role in nutrient cycling for ;;; play_VBP_6_28; a_DT_7_33; key_JJ_8_35; role_NN_9_39; in_IN_10_44; nutrient_JJ_11_47; cycling_NN_12_56 example ;;; example_NN_4_18 0.03070 while_the filtering activities of freshwater bivalves purify the waters of streams , rivers , and lakes_14_30 None 0 nn(snails_NNS_1_5, Land_NNP_0_0); pobj(for_IN_3_14, example_NN_4_18); nsubj(play_VBP_6_28, snails_NNS_1_5); punct(play_VBP_6_28, ,_,_2_12); prep(play_VBP_6_28, for_IN_3_14); punct(play_VBP_6_28, ,_,_5_26); dobj(play_VBP_6_28, role_NN_9_39); punct(play_VBP_6_28, ,_,_13_64); advcl(play_VBP_6_28, purify_VBP_21_120); punct(play_VBP_6_28, ._._31_170); det(role_NN_9_39, a_DT_7_33); amod(role_NN_9_39, key_JJ_8_35); prep(role_NN_9_39, in_IN_10_44); pobj(in_IN_10_44, cycling_NN_12_56); amod(cycling_NN_12_56, nutrient_JJ_11_47); det(activities_NNS_17_86, the_DT_15_72); amod(activities_NNS_17_86, filtering_VBG_16_76); prep(activities_NNS_17_86, of_IN_18_97); pobj(of_IN_18_97, bivalves_NNS_20_111); nn(bivalves_NNS_20_111, freshwater_NN_19_100); mark(purify_VBP_21_120, while_IN_14_66); nsubj(purify_VBP_21_120, activities_NNS_17_86); dobj(purify_VBP_21_120, waters_NNS_23_131); punct(purify_VBP_21_120, ,_,_28_158); cc(purify_VBP_21_120, and_CC_29_160); conj(purify_VBP_21_120, lakes_NNS_30_164); det(waters_NNS_23_131, the_DT_22_127); prep(waters_NNS_23_131, of_IN_24_138); pobj(of_IN_24_138, streams_NNS_25_141); punct(streams_NNS_25_141, ,_,_26_149); conj(streams_NNS_25_141, rivers_NNS_27_151) Template be {rel} {prep} {arg1} dobj> {arg2} 0.1473 we ;;; we_PRP_5_24 Later in this chapter will also examine ;;; Later_RB_0_0; in_IN_1_6; this_DT_2_9; chapter_NN_3_14; will_MD_6_27; also_RB_7_32; examine_VB_8_37 factors ;;; factors_NN_18_81 0.14730 None None 1 dep(Later_RB_0_0, in_IN_1_6); pobj(in_IN_1_6, chapter_NN_3_14); det(chapter_NN_3_14, this_DT_2_9); advmod(examine_VB_8_37, Later_RB_0_0); punct(examine_VB_8_37, ,_,_4_22); nsubj(examine_VB_8_37, we_PRP_5_24); aux(examine_VB_8_37, will_MD_6_27); advmod(examine_VB_8_37, also_RB_7_32); advmod(examine_VB_8_37, how_WRB_9_45); punct(examine_VB_8_37, ,_,_17_79); dobj(examine_VB_8_37, factors_NNS_18_81); punct(examine_VB_8_37, ._._42_229); dep(how_WRB_9_45, all_DT_10_49); prep(all_DT_10_49, of_IN_11_53); punct(all_DT_10_49, ,_,_14_67); cc(all_DT_10_49, or_CC_15_69); conj(all_DT_10_49, living_VBG_16_72); pobj(of_IN_11_53, biotic_JJ_13_60); det(biotic_JJ_13_60, the_DT_12_56); dep(factors_NNS_18_81, organisms_NNS_22_102); punct(organisms_NNS_22_102, --_:_19_89); det(organisms_NNS_22_102, the_DT_20_92); amod(organisms_NNS_22_102, other_JJ_21_96); rcmod(organisms_NNS_22_102, part_NN_25_121); punct(organisms_NNS_22_102, --_:_31_158); dep(organisms_NNS_22_102, influence_NN_33_171); nsubj(part_NN_25_121, that_WDT_23_112); cop(part_NN_25_121, are_VBP_24_117); prep(part_NN_25_121, of_IN_26_126); pobj(of_IN_26_126, environment_NN_30_146); det(individual_NN_28_132, an_DT_27_129); possessive(individual_NN_28_132, 's_POS_29_143); poss(environment_NN_30_146, individual_NN_28_132); advmod(influence_NN_33_171, similarly_RB_32_161); dep(influence_NN_33_171, distribution_NN_35_185); det(distribution_NN_35_185, the_DT_34_181); cc(distribution_NN_35_185, and_CC_36_198); conj(distribution_NN_35_185, abundance_NN_37_202); prep(distribution_NN_35_185, on_IN_40_220); prep(abundance_NN_37_202, of_IN_38_212); pobj(of_IN_38_212, life_NN_39_215); pobj(on_IN_40_220, Earth_NNP_41_223) Template be {rel} {prep} {arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0314 the other organisms ;;; the_DT_20_92; other_JJ_21_96; organisms_NN_22_102 are part of ;;; are_VBP_24_117; part_NN_25_121 an individual 's environment ;;; an_DT_27_129; individual_NN_28_132; 's_POS_29_143; environment_NN_30_146 0.03140 None None 1 nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.2444 Lenneth ;;; Lenneth_NNP_0_0 tells him to forget about ;;; tells_VBZ_1_8; him_PRP_2_14; to_TO_3_18; forget_VB_4_21 her and kisses ;;; her_PRP_6_34; and_CC_7_38; kisses_NN_8_42 0.24440 before_he departs but Lucian continues to brood upon Lenneth and Platina_10_21 None 1 nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 Lucian ;;; Lucian_NNP_14_75 continues to ;;; continues_VBZ_15_82 brood ;;; brood_NN_17_95 0.24440 None None 0 nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) Template {rel} {arg1} dobj> {arg2} 0.1443 Lenneth ;;; Lenneth_NNP_0_0 tells ;;; tells_VBZ_1_8 him ;;; him_PRP_2_14 0.14430 None None 1 nsubj(tells_VBZ_1_8, Lenneth_NNP_0_0); dobj(tells_VBZ_1_8, him_PRP_2_14); xcomp(tells_VBZ_1_8, forget_VB_4_21); punct(tells_VBZ_1_8, ._._22_126); aux(forget_VB_4_21, to_TO_3_18); prep(forget_VB_4_21, about_IN_5_28); advcl(forget_VB_4_21, departs_VBZ_12_63); pobj(about_IN_5_28, her_PRP_6_34); cc(her_PRP_6_34, and_CC_7_38); conj(her_PRP_6_34, kisses_NNS_8_42); dobj(kisses_NNS_8_42, him_PRP_9_49); mark(departs_VBZ_12_63, before_IN_10_53); nsubj(departs_VBZ_12_63, he_PRP_11_60); cc(departs_VBZ_12_63, but_CC_13_71); conj(departs_VBZ_12_63, continues_VBZ_15_82); nsubj(continues_VBZ_15_82, Lucian_NNP_14_75); prep(continues_VBZ_15_82, to_TO_16_92); pobj(to_TO_16_92, brood_NN_17_95); prep(brood_NN_17_95, upon_IN_18_101); pobj(upon_IN_18_101, Lenneth_NNP_19_106); cc(Lenneth_NNP_19_106, and_CC_20_114); conj(Lenneth_NNP_19_106, Platina_NNP_21_118) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0067 Lenneth ;;; Lenneth_NNP_0_0 to forget about ;;; to_TO_3_18; forget_VB_4_21 her and kisses ;;; her_PRP_6_34; and_CC_7_38; kisses_NN_8_42 0.00670 before_he departs but Lucian continues to brood upon Lenneth and Platina_10_21 None 1 nn(House_NNP_3_17, Lorenzo_NNP_0_0); nn(House_NNP_3_17, R._NNP_1_8); nn(House_NNP_3_17, Stone_NNP_2_11); nsubj(house_NN_7_37, House_NNP_3_17); cop(house_NN_7_37, is_VBZ_4_23); det(house_NN_7_37, a_DT_5_26); amod(house_NN_7_37, historic_JJ_6_28); prep(house_NN_7_37, at_IN_8_43); punct(house_NN_7_37, ._._16_94); pobj(at_IN_8_43, Street_NNP_11_56); num(Street_NNP_11_56, 218_CD_9_46); nn(Street_NNP_11_56, South_NNP_10_50); prep(Street_NNP_11_56, in_IN_12_63); pobj(in_IN_12_63, Southbridge_NNP_13_66); punct(Southbridge_NNP_13_66, ,_,_14_78); appos(Southbridge_NNP_13_66, Massachusetts_NNP_15_80) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 Lorenzo R. Stone House ;;; Lorenzo_NNP_0_0; R._NNP_1_8; Stone_NNP_2_11; House_NNP_3_17 is a historic house at ;;; is_VBZ_4_23; a_DT_5_26; historic_JJ_6_28; house_NN_7_37 218 South Street ;;; 218_CD_9_46; South_NNP_10_50; Street_NNP_11_56 0.95550 None None 1 nn(House_NNP_3_17, Lorenzo_NNP_0_0); nn(House_NNP_3_17, R._NNP_1_8); nn(House_NNP_3_17, Stone_NNP_2_11); nsubj(house_NN_7_37, House_NNP_3_17); cop(house_NN_7_37, is_VBZ_4_23); det(house_NN_7_37, a_DT_5_26); amod(house_NN_7_37, historic_JJ_6_28); prep(house_NN_7_37, at_IN_8_43); punct(house_NN_7_37, ._._16_94); pobj(at_IN_8_43, Street_NNP_11_56); num(Street_NNP_11_56, 218_CD_9_46); nn(Street_NNP_11_56, South_NNP_10_50); prep(Street_NNP_11_56, in_IN_12_63); pobj(in_IN_12_63, Southbridge_NNP_13_66); punct(Southbridge_NNP_13_66, ,_,_14_78); appos(Southbridge_NNP_13_66, Massachusetts_NNP_15_80) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Lorenzo R. Stone House ;;; Lorenzo_NNP_0_0; R._NNP_1_8; Stone_NNP_2_11; House_NNP_3_17 is ;;; is_VBZ_4_23 a historic house ;;; a_DT_5_26; historic_JJ_6_28; house_NN_7_37 0.00840 None None 1 nsubjpass(elected_VBN_2_11, Lowery_NNP_0_0); auxpass(elected_VBN_2_11, was_VBD_1_7); dep(elected_VBN_2_11, 6th_JJ_6_36); prep(elected_VBN_2_11, in_IN_8_45); punct(elected_VBN_2_11, ._._20_109); prep(Mayor_NNP_3_19, on_IN_4_25); pobj(on_IN_4_25, Feburay_NNP_5_28); dep(6th_JJ_6_36, Mayor_NNP_3_19); tmod(6th_JJ_6_36, 2001_CD_7_40); pobj(in_IN_8_45, election_NN_11_58); det(election_NN_11_58, a_DT_9_48); amod(election_NN_11_58, special_JJ_10_50); infmod(election_NN_11_58, fill_VB_13_70); aux(fill_VB_13_70, to_TO_12_67); dobj(fill_VB_13_70, term_NN_16_89); det(term_NN_16_89, the_DT_14_75); amod(term_NN_16_89, unexpired_JJ_15_79); prep(term_NN_16_89, of_IN_17_94); pobj(of_IN_17_94, Eagan_NNP_19_103); nn(Eagan_NNP_19_103, James_NNP_18_97) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Lowery ;;; Lowery_NNP_0_0 was elected in ;;; was_VBD_1_7; elected_VBN_2_11 a special election to fill the unexpired term of James Eagan ;;; a_DT_9_48; special_JJ_10_50; election_NN_11_58; to_TO_12_67; fill_VB_13_70; the_DT_14_75; unexpired_JJ_15_79; term_NN_16_89; of_IN_17_94; James_NNP_18_97; Eagan_NNP_19_103 1.00000 None None 1 partmod(Macromolecules_NNS_0_0, translocated_VBN_1_15); prep(translocated_VBN_1_15, through_IN_2_28); pobj(through_IN_2_28, phloem_NN_4_40); det(phloem_NN_4_40, the_DT_3_36); nsubj(include_VBP_5_47, Macromolecules_NNS_0_0); dobj(include_VBP_5_47, proteins_NNS_6_55); punct(include_VBP_5_47, ._._19_138); cc(proteins_NNS_6_55, and_CC_7_64); conj(proteins_NNS_6_55, types_NNS_9_76); dep(proteins_NNS_6_55, enter_VBP_13_94); amod(types_NNS_9_76, various_JJ_8_68); prep(types_NNS_9_76, of_IN_10_82); pobj(of_IN_10_82, RNA_NNP_11_85); dep(enter_VBP_13_94, that_IN_12_89); dobj(enter_VBP_13_94, tubes_NNS_16_110); prep(enter_VBP_13_94, through_IN_17_116); det(tubes_NNS_16_110, the_DT_14_100); amod(tubes_NNS_16_110, sieve_JJ_15_104); pobj(through_IN_17_116, plasmodesmata_NN_18_124) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 Macromolecules ;;; Macromolecules_NN_0_0 be translocated through ;;; translocated_VBN_1_15 the phloem ;;; the_DT_3_36; phloem_NN_4_40 0.11100 None None 1 partmod(Macromolecules_NNS_0_0, translocated_VBN_1_15); prep(translocated_VBN_1_15, through_IN_2_28); pobj(through_IN_2_28, phloem_NN_4_40); det(phloem_NN_4_40, the_DT_3_36); nsubj(include_VBP_5_47, Macromolecules_NNS_0_0); dobj(include_VBP_5_47, proteins_NNS_6_55); punct(include_VBP_5_47, ._._19_138); cc(proteins_NNS_6_55, and_CC_7_64); conj(proteins_NNS_6_55, types_NNS_9_76); dep(proteins_NNS_6_55, enter_VBP_13_94); amod(types_NNS_9_76, various_JJ_8_68); prep(types_NNS_9_76, of_IN_10_82); pobj(of_IN_10_82, RNA_NNP_11_85); dep(enter_VBP_13_94, that_IN_12_89); dobj(enter_VBP_13_94, tubes_NNS_16_110); prep(enter_VBP_13_94, through_IN_17_116); det(tubes_NNS_16_110, the_DT_14_100); amod(tubes_NNS_16_110, sieve_JJ_15_104); pobj(through_IN_17_116, plasmodesmata_NN_18_124) Template {rel} {arg1} dobj> {arg2} 0.0416 Macromolecules translocated through the phloem ;;; Macromolecules_NN_0_0; translocated_VBN_1_15; through_IN_2_28; the_DT_3_36; phloem_NN_4_40 include ;;; include_VBP_5_47 proteins and various types of RNA ;;; proteins_NN_6_55; and_CC_7_64; various_JJ_8_68; types_NN_9_76; of_IN_10_82; RNA_NNP_11_85 0.04160 None None 1 amod(wildflowers_NNS_1_5, Many_JJ_0_0); nsubj(annuals_NNS_3_21, wildflowers_NNS_1_5); cop(annuals_NNS_3_21, are_VBP_2_17); punct(annuals_NNS_3_21, ,_,_4_29); appos(annuals_NNS_3_21, crops_NNS_10_55); punct(annuals_NNS_3_21, ._._22_122); advmod(staple_JJ_8_43, most_RBS_7_38); advmod(crops_NNS_10_55, as_RB_5_31); cop(crops_NNS_10_55, are_VBP_6_34); amod(crops_NNS_10_55, staple_JJ_8_43); nn(crops_NNS_10_55, food_NN_9_50); punct(crops_NNS_10_55, ,_,_11_61); prep(crops_NNS_10_55, including_VBG_12_63); pobj(including_VBG_12_63, legumes_NNS_13_73); cc(legumes_NNS_13_73, and_CC_14_81); conj(legumes_NNS_13_73, grains_NNS_16_92); prep(legumes_NNS_13_73, as_IN_18_104); nn(grains_NNS_16_92, cereal_NN_15_85); dep(as_IN_18_104, such_JJ_17_99); pobj(as_IN_18_104, wheat_NN_19_107); cc(wheat_NN_19_107, and_CC_20_113); conj(wheat_NN_19_107, rice_NN_21_117) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 annuals ;;; annuals_NN_3_21 as are staple food crops including ;;; as_RB_5_31; are_VBP_6_34; staple_JJ_8_43; food_NN_9_50; crops_NN_10_55 legumes and cereal grains ;;; legumes_NN_13_73; and_CC_14_81; cereal_NN_15_85; grains_NN_16_92 0.40310 None None 1 punct(Mark_NNP_0_0, ,_,_1_5); appos(Mark_NNP_0_0, oil_NN_3_10); punct(Mark_NNP_0_0, ,_,_7_30); det(oil_NN_3_10, an_DT_2_7); cc(oil_NN_3_10, and_CC_4_14); conj(oil_NN_3_10, concern_NN_6_22); nn(concern_NN_6_22, gas_NN_5_18); nsubj(said_VBD_8_32, Mark_NNP_0_0); ccomp(said_VBD_8_32, convertible_JJ_13_64); punct(said_VBD_8_32, ._._44_228); det(debentures_NNS_11_49, the_DT_9_37); amod(debentures_NNS_11_49, 15-year_JJ_10_41); nsubjpass(convertible_JJ_13_64, debentures_NNS_11_49); cop(convertible_JJ_13_64, are_VBP_12_60); prep(convertible_JJ_13_64, before_IN_14_76); prep(convertible_JJ_13_64, at_IN_16_92); punct(convertible_JJ_13_64, ,_,_24_131); cc(convertible_JJ_13_64, and_CC_25_133); conj(convertible_JJ_13_64, redeemed_VBN_28_144); pobj(before_IN_14_76, maturity_NN_15_83); pobj(at_IN_16_92, C$_$_17_95); num(C$_$_17_95, 12.50_CD_18_98); prep(C$_$_17_95, for_IN_19_104); pobj(for_IN_19_104, share_NN_23_125); det(share_NN_23_125, each_DT_20_108); nn(share_NN_23_125, Mark_NNP_21_113); amod(share_NN_23_125, common_JJ_22_118); aux(redeemed_VBN_28_144, can_MD_26_137); auxpass(redeemed_VBN_28_144, be_VB_27_141); prep(redeemed_VBN_28_144, at_IN_29_153); punct(redeemed_VBN_28_144, ,_,_34_178); prep(redeemed_VBN_28_144, under_IN_35_180); punct(redeemed_VBN_28_144, ,_,_38_205); prep(redeemed_VBN_28_144, after_IN_39_207); pobj(at_IN_29_153, option_NN_33_171); det(company_NN_31_160, the_DT_30_156); possessive(company_NN_31_160, 's_POS_32_168); poss(option_NN_33_171, company_NN_31_160); pobj(under_IN_35_180, conditions_NNS_37_194); amod(conditions_NNS_37_194, certain_JJ_36_186); pobj(after_IN_39_207, Nov._NNP_40_213); num(Nov._NNP_40_213, 30_CD_41_218); punct(Nov._NNP_40_213, ,_,_42_221); num(Nov._NNP_40_213, 1992_CD_43_223) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the 15-year debentures ;;; the_DT_9_37; 15-year_JJ_10_41; debentures_NN_11_49 can be redeemed after ;;; can_MD_26_137; be_VB_27_141; redeemed_VBN_28_144 Nov. 30 , 1992 ;;; Nov._NNP_40_213; 30_CD_41_218; ,_,_42_221; 1992_CD_43_223 1.00000 None Mark_said_0_0_8_8 1 punct(Mark_NNP_0_0, ,_,_1_5); appos(Mark_NNP_0_0, oil_NN_3_10); punct(Mark_NNP_0_0, ,_,_7_30); det(oil_NN_3_10, an_DT_2_7); cc(oil_NN_3_10, and_CC_4_14); conj(oil_NN_3_10, concern_NN_6_22); nn(concern_NN_6_22, gas_NN_5_18); nsubj(said_VBD_8_32, Mark_NNP_0_0); ccomp(said_VBD_8_32, convertible_JJ_13_64); punct(said_VBD_8_32, ._._44_228); det(debentures_NNS_11_49, the_DT_9_37); amod(debentures_NNS_11_49, 15-year_JJ_10_41); nsubjpass(convertible_JJ_13_64, debentures_NNS_11_49); cop(convertible_JJ_13_64, are_VBP_12_60); prep(convertible_JJ_13_64, before_IN_14_76); prep(convertible_JJ_13_64, at_IN_16_92); punct(convertible_JJ_13_64, ,_,_24_131); cc(convertible_JJ_13_64, and_CC_25_133); conj(convertible_JJ_13_64, redeemed_VBN_28_144); pobj(before_IN_14_76, maturity_NN_15_83); pobj(at_IN_16_92, C$_$_17_95); num(C$_$_17_95, 12.50_CD_18_98); prep(C$_$_17_95, for_IN_19_104); pobj(for_IN_19_104, share_NN_23_125); det(share_NN_23_125, each_DT_20_108); nn(share_NN_23_125, Mark_NNP_21_113); amod(share_NN_23_125, common_JJ_22_118); aux(redeemed_VBN_28_144, can_MD_26_137); auxpass(redeemed_VBN_28_144, be_VB_27_141); prep(redeemed_VBN_28_144, at_IN_29_153); punct(redeemed_VBN_28_144, ,_,_34_178); prep(redeemed_VBN_28_144, under_IN_35_180); punct(redeemed_VBN_28_144, ,_,_38_205); prep(redeemed_VBN_28_144, after_IN_39_207); pobj(at_IN_29_153, option_NN_33_171); det(company_NN_31_160, the_DT_30_156); possessive(company_NN_31_160, 's_POS_32_168); poss(option_NN_33_171, company_NN_31_160); pobj(under_IN_35_180, conditions_NNS_37_194); amod(conditions_NNS_37_194, certain_JJ_36_186); pobj(after_IN_39_207, Nov._NNP_40_213); num(Nov._NNP_40_213, 30_CD_41_218); punct(Nov._NNP_40_213, ,_,_42_221); num(Nov._NNP_40_213, 1992_CD_43_223) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the 15-year debentures ;;; the_DT_9_37; 15-year_JJ_10_41; debentures_NN_11_49 can be redeemed at ;;; can_MD_26_137; be_VB_27_141; redeemed_VBN_28_144 the company 's option ;;; the_DT_30_156; company_NN_31_160; 's_POS_32_168; option_NN_33_171 1.00000 None Mark_said_0_0_8_8 1 punct(Mark_NNP_0_0, ,_,_1_5); appos(Mark_NNP_0_0, oil_NN_3_10); punct(Mark_NNP_0_0, ,_,_7_30); det(oil_NN_3_10, an_DT_2_7); cc(oil_NN_3_10, and_CC_4_14); conj(oil_NN_3_10, concern_NN_6_22); nn(concern_NN_6_22, gas_NN_5_18); nsubj(said_VBD_8_32, Mark_NNP_0_0); ccomp(said_VBD_8_32, convertible_JJ_13_64); punct(said_VBD_8_32, ._._44_228); det(debentures_NNS_11_49, the_DT_9_37); amod(debentures_NNS_11_49, 15-year_JJ_10_41); nsubjpass(convertible_JJ_13_64, debentures_NNS_11_49); cop(convertible_JJ_13_64, are_VBP_12_60); prep(convertible_JJ_13_64, before_IN_14_76); prep(convertible_JJ_13_64, at_IN_16_92); punct(convertible_JJ_13_64, ,_,_24_131); cc(convertible_JJ_13_64, and_CC_25_133); conj(convertible_JJ_13_64, redeemed_VBN_28_144); pobj(before_IN_14_76, maturity_NN_15_83); pobj(at_IN_16_92, C$_$_17_95); num(C$_$_17_95, 12.50_CD_18_98); prep(C$_$_17_95, for_IN_19_104); pobj(for_IN_19_104, share_NN_23_125); det(share_NN_23_125, each_DT_20_108); nn(share_NN_23_125, Mark_NNP_21_113); amod(share_NN_23_125, common_JJ_22_118); aux(redeemed_VBN_28_144, can_MD_26_137); auxpass(redeemed_VBN_28_144, be_VB_27_141); prep(redeemed_VBN_28_144, at_IN_29_153); punct(redeemed_VBN_28_144, ,_,_34_178); prep(redeemed_VBN_28_144, under_IN_35_180); punct(redeemed_VBN_28_144, ,_,_38_205); prep(redeemed_VBN_28_144, after_IN_39_207); pobj(at_IN_29_153, option_NN_33_171); det(company_NN_31_160, the_DT_30_156); possessive(company_NN_31_160, 's_POS_32_168); poss(option_NN_33_171, company_NN_31_160); pobj(under_IN_35_180, conditions_NNS_37_194); amod(conditions_NNS_37_194, certain_JJ_36_186); pobj(after_IN_39_207, Nov._NNP_40_213); num(Nov._NNP_40_213, 30_CD_41_218); punct(Nov._NNP_40_213, ,_,_42_221); num(Nov._NNP_40_213, 1992_CD_43_223) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 the 15-year debentures ;;; the_DT_9_37; 15-year_JJ_10_41; debentures_NN_11_49 can be redeemed under ;;; can_MD_26_137; be_VB_27_141; redeemed_VBN_28_144 certain conditions ;;; certain_JJ_36_186; conditions_NN_37_194 1.00000 None Mark_said_0_0_8_8 1 nn(VIII_NNP_1_8, Michael_NNP_0_0); nsubj(struck_VBD_2_13, VIII_NNP_1_8); advmod(struck_VBD_2_13, back_RB_3_20); punct(struck_VBD_2_13, ,_,_4_25); prep(struck_VBD_2_13, by_IN_5_27); punct(struck_VBD_2_13, ._._28_162); pcomp(by_IN_5_27, marrying_VBG_6_30); dobj(marrying_VBG_6_30, Euphrosyne_NNP_10_65); prep(marrying_VBG_6_30, to_TO_11_76); poss(Euphrosyne_NNP_10_65, his_PRP$_7_39); amod(Euphrosyne_NNP_10_65, illegitimate_JJ_8_43); nn(Euphrosyne_NNP_10_65, daughter_NN_9_56); pobj(to_TO_11_76, Khan_NNP_13_85); nn(Khan_NNP_13_85, Nogai_NNP_12_79); prep(Khan_NNP_13_85, of_IN_14_90); punct(Khan_NNP_13_85, ,_,_18_110); rcmod(Khan_NNP_13_85, pillaged_VBD_20_116); pobj(of_IN_14_90, Horde_NNP_17_104); det(Horde_NNP_17_104, the_DT_15_93); nn(Horde_NNP_17_104, Golden_NNP_16_97); nsubj(pillaged_VBD_20_116, who_WP_19_112); dobj(pillaged_VBD_20_116, Bulgaria_NNP_21_125); prep(pillaged_VBD_20_116, as_IN_22_134); pobj(as_IN_22_134, ally_NN_25_149); det(ally_NN_25_149, a_DT_23_137); amod(ally_NN_25_149, Byzantine_JJ_24_139); prep(ally_NN_25_149, in_IN_26_154); pobj(in_IN_26_154, 1274_CD_27_157) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 Nogai Khan of the Golden Horde ;;; Nogai_NNP_12_79; Khan_NNP_13_85; of_IN_14_90; the_DT_15_93; Golden_NNP_16_97; Horde_NNP_17_104 pillaged Bulgaria as ;;; pillaged_VBD_20_116; Bulgaria_NNP_21_125 a Byzantine ally ;;; a_DT_23_137; Byzantine_JJ_24_139; ally_NN_25_149 0.02000 None None 1 nn(VIII_NNP_1_8, Michael_NNP_0_0); nsubj(struck_VBD_2_13, VIII_NNP_1_8); advmod(struck_VBD_2_13, back_RB_3_20); punct(struck_VBD_2_13, ,_,_4_25); prep(struck_VBD_2_13, by_IN_5_27); punct(struck_VBD_2_13, ._._28_162); pcomp(by_IN_5_27, marrying_VBG_6_30); dobj(marrying_VBG_6_30, Euphrosyne_NNP_10_65); prep(marrying_VBG_6_30, to_TO_11_76); poss(Euphrosyne_NNP_10_65, his_PRP$_7_39); amod(Euphrosyne_NNP_10_65, illegitimate_JJ_8_43); nn(Euphrosyne_NNP_10_65, daughter_NN_9_56); pobj(to_TO_11_76, Khan_NNP_13_85); nn(Khan_NNP_13_85, Nogai_NNP_12_79); prep(Khan_NNP_13_85, of_IN_14_90); punct(Khan_NNP_13_85, ,_,_18_110); rcmod(Khan_NNP_13_85, pillaged_VBD_20_116); pobj(of_IN_14_90, Horde_NNP_17_104); det(Horde_NNP_17_104, the_DT_15_93); nn(Horde_NNP_17_104, Golden_NNP_16_97); nsubj(pillaged_VBD_20_116, who_WP_19_112); dobj(pillaged_VBD_20_116, Bulgaria_NNP_21_125); prep(pillaged_VBD_20_116, as_IN_22_134); pobj(as_IN_22_134, ally_NN_25_149); det(ally_NN_25_149, a_DT_23_137); amod(ally_NN_25_149, Byzantine_JJ_24_139); prep(ally_NN_25_149, in_IN_26_154); pobj(in_IN_26_154, 1274_CD_27_157) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Bulgaria ;;; Bulgaria_NNP_21_125 be pillaged as ;;; pillaged_VBD_20_116 a Byzantine ally ;;; a_DT_23_137; Byzantine_JJ_24_139; ally_NN_25_149 0.01550 None None 1 nn(VIII_NNP_1_8, Michael_NNP_0_0); nsubj(struck_VBD_2_13, VIII_NNP_1_8); advmod(struck_VBD_2_13, back_RB_3_20); punct(struck_VBD_2_13, ,_,_4_25); prep(struck_VBD_2_13, by_IN_5_27); punct(struck_VBD_2_13, ._._28_162); pcomp(by_IN_5_27, marrying_VBG_6_30); dobj(marrying_VBG_6_30, Euphrosyne_NNP_10_65); prep(marrying_VBG_6_30, to_TO_11_76); poss(Euphrosyne_NNP_10_65, his_PRP$_7_39); amod(Euphrosyne_NNP_10_65, illegitimate_JJ_8_43); nn(Euphrosyne_NNP_10_65, daughter_NN_9_56); pobj(to_TO_11_76, Khan_NNP_13_85); nn(Khan_NNP_13_85, Nogai_NNP_12_79); prep(Khan_NNP_13_85, of_IN_14_90); punct(Khan_NNP_13_85, ,_,_18_110); rcmod(Khan_NNP_13_85, pillaged_VBD_20_116); pobj(of_IN_14_90, Horde_NNP_17_104); det(Horde_NNP_17_104, the_DT_15_93); nn(Horde_NNP_17_104, Golden_NNP_16_97); nsubj(pillaged_VBD_20_116, who_WP_19_112); dobj(pillaged_VBD_20_116, Bulgaria_NNP_21_125); prep(pillaged_VBD_20_116, as_IN_22_134); pobj(as_IN_22_134, ally_NN_25_149); det(ally_NN_25_149, a_DT_23_137); amod(ally_NN_25_149, Byzantine_JJ_24_139); prep(ally_NN_25_149, in_IN_26_154); pobj(in_IN_26_154, 1274_CD_27_157) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 his illegitimate daughter Euphrosyne ;;; his_PRP$_7_39; illegitimate_JJ_8_43; daughter_NN_9_56; Euphrosyne_NNP_10_65 be marrying to ;;; marrying_VBG_6_30 Nogai Khan of the Golden Horde ;;; Nogai_NNP_12_79; Khan_NNP_13_85; of_IN_14_90; the_DT_15_93; Golden_NNP_16_97; Horde_NNP_17_104 0.00790 None None 1 possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.2444 it ;;; it_PRP_26_148 continues to suffer from ;;; continues_VBZ_27_151; to_TO_28_161; suffer_VB_29_164 the high cost carrying nonperforming assets ;;; the_DT_31_176; high_JJ_32_180; cost_NN_33_185; carrying_VBG_35_193; nonperforming_VBG_36_202; assets_NN_37_216 0.24440 None Moody_said_0_0_2_2 1 possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) Template {rel} {arg1} dobj> {arg2} 0.1473 Valley National , of Phoenix ;;; Valley_NNP_5_25; National_NNP_6_32; ,_,_7_41; of_IN_8_43; Phoenix_NNP_9_46 to make ;;; to_TO_14_64; make_VB_15_67 substantial further provisions ;;; substantial_JJ_16_72; further_JJ_17_84; provisions_NN_18_92 0.14730 None None 0 possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1443 it ;;; it_PRP_26_148 expects to make ;;; expects_VBZ_4_17; to_TO_14_64; make_VB_15_67 substantial further provisions ;;; substantial_JJ_16_72; further_JJ_17_84; provisions_NN_18_92 0.14430 None Moody_said_0_0_2_2 1 possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0067 it ;;; it_PRP_26_148 to suffer from ;;; to_TO_28_161; suffer_VB_29_164 the high cost carrying nonperforming assets ;;; the_DT_31_176; high_JJ_32_180; cost_NN_33_185; carrying_VBG_35_193; nonperforming_VBG_36_202; assets_NN_37_216 0.00670 None None 0 possessive(Moody_NNP_0_0, 's_POS_1_6); nsubj(said_VBD_2_9, Moody_NNP_0_0); ccomp(said_VBD_2_9, expects_VBZ_4_17); punct(said_VBD_2_9, ._._44_260); nsubj(expects_VBZ_4_17, it_PRP_3_14); xcomp(expects_VBZ_4_17, make_VB_15_67); punct(expects_VBZ_4_17, ,_,_23_137); cc(expects_VBZ_4_17, and_CC_24_139); conj(expects_VBZ_4_17, continues_VBZ_27_151); nn(National_NNP_6_32, Valley_NNP_5_25); punct(National_NNP_6_32, ,_,_7_41); prep(National_NNP_6_32, of_IN_8_43); punct(National_NNP_6_32, ._._12_60); punct(National_NNP_6_32, ,_,_13_62); pobj(of_IN_8_43, Phoenix_NNP_9_46); punct(Phoenix_NNP_9_46, ,_,_10_54); appos(Phoenix_NNP_9_46, Ariz_NNP_11_56); nsubj(make_VB_15_67, National_NNP_6_32); aux(make_VB_15_67, to_TO_14_64); dobj(make_VB_15_67, provisions_NNS_18_92); amod(provisions_NNS_18_92, substantial_JJ_16_72); amod(provisions_NNS_18_92, further_JJ_17_84); prep(provisions_NNS_18_92, against_IN_19_103); pobj(against_IN_19_103, portfolio_NN_22_127); poss(portfolio_NN_22_127, its_PRP$_20_111); nn(portfolio_NN_22_127, real-estate_NN_21_115); complm(continues_VBZ_27_151, that_IN_25_143); nsubj(continues_VBZ_27_151, it_PRP_26_148); xcomp(continues_VBZ_27_151, suffer_VB_29_164); punct(continues_VBZ_27_151, ,_,_38_223); cc(continues_VBZ_27_151, and_CC_39_225); conj(continues_VBZ_27_151, from_IN_40_229); aux(suffer_VB_29_164, to_TO_28_161); prep(suffer_VB_29_164, from_IN_30_171); pobj(from_IN_30_171, cost_NN_33_185); det(cost_NN_33_185, the_DT_31_176); amod(cost_NN_33_185, high_JJ_32_180); prep(cost_NN_33_185, of_IN_34_190); pcomp(of_IN_34_190, carrying_VBG_35_193); dobj(carrying_VBG_35_193, assets_NNS_37_216); amod(assets_NNS_37_216, nonperforming_VBG_36_202); pobj(from_IN_40_229, provisions_NNS_43_249); amod(provisions_NNS_43_249, high_JJ_41_234); nn(provisions_NNS_43_249, loan-loss_NN_42_239) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0057 Valley National , of Phoenix ;;; Valley_NNP_5_25; National_NNP_6_32; ,_,_7_41; of_IN_8_43; Phoenix_NNP_9_46 be substantial further provisions against ;;; substantial_JJ_16_72; further_JJ_17_84; provisions_NN_18_92 its real-estate portfolio ;;; its_PRP$_20_111; real-estate_NN_21_115; portfolio_NN_22_127 0.00570 None None 1 amod(scyphozoans_NNS_2_13, Most_JJS_0_0); amod(scyphozoans_NNS_2_13, coastal_JJ_1_5); nsubj(go_VBP_3_25, scyphozoans_NNS_2_13); prep(go_VBP_3_25, through_IN_4_28); prep(go_VBP_3_25, as_IN_7_44); punct(go_VBP_3_25, ,_,_14_84); prep(go_VBP_3_25, whereas_IN_15_86); punct(go_VBP_3_25, ._._29_170); pobj(through_IN_4_28, stage_NN_6_38); det(stage_NN_6_38, a_DT_5_36); pobj(as_IN_7_44, polyps_NNS_9_53); amod(polyps_NNS_9_53, small_JJ_8_47); prep(polyps_NNS_9_53, during_IN_10_60); pobj(during_IN_10_60, cycle_NN_13_78); poss(cycle_NN_13_78, their_PRP$_11_67); nn(cycle_NN_13_78, life_NN_12_73); pobj(whereas_IN_15_86, those_DT_16_94); rcmod(those_DT_16_94, live_VBP_18_105); nsubj(live_VBP_18_105, that_WDT_17_100); prep(live_VBP_18_105, in_IN_19_110); dep(live_VBP_18_105, lack_VBP_24_138); pobj(in_IN_19_110, ocean_NN_22_122); det(ocean_NN_22_122, the_DT_20_113); amod(ocean_NN_22_122, open_JJ_21_117); advmod(lack_VBP_24_138, generally_RB_23_128); dobj(lack_VBP_24_138, stage_NN_27_153); advmod(lack_VBP_24_138, altogether_RB_28_159); det(stage_NN_27_153, the_DT_25_143); nn(stage_NN_27_153, polyp_NN_26_147) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 Most coastal scyphozoans ;;; Most_JJ_0_0; coastal_JJ_1_5; scyphozoans_NN_2_13 go as ;;; go_VBP_3_25 small polyps ;;; small_JJ_8_47; polyps_NN_9_53 0.03070 None None 1 amod(scyphozoans_NNS_2_13, Most_JJS_0_0); amod(scyphozoans_NNS_2_13, coastal_JJ_1_5); nsubj(go_VBP_3_25, scyphozoans_NNS_2_13); prep(go_VBP_3_25, through_IN_4_28); prep(go_VBP_3_25, as_IN_7_44); punct(go_VBP_3_25, ,_,_14_84); prep(go_VBP_3_25, whereas_IN_15_86); punct(go_VBP_3_25, ._._29_170); pobj(through_IN_4_28, stage_NN_6_38); det(stage_NN_6_38, a_DT_5_36); pobj(as_IN_7_44, polyps_NNS_9_53); amod(polyps_NNS_9_53, small_JJ_8_47); prep(polyps_NNS_9_53, during_IN_10_60); pobj(during_IN_10_60, cycle_NN_13_78); poss(cycle_NN_13_78, their_PRP$_11_67); nn(cycle_NN_13_78, life_NN_12_73); pobj(whereas_IN_15_86, those_DT_16_94); rcmod(those_DT_16_94, live_VBP_18_105); nsubj(live_VBP_18_105, that_WDT_17_100); prep(live_VBP_18_105, in_IN_19_110); dep(live_VBP_18_105, lack_VBP_24_138); pobj(in_IN_19_110, ocean_NN_22_122); det(ocean_NN_22_122, the_DT_20_113); amod(ocean_NN_22_122, open_JJ_21_117); advmod(lack_VBP_24_138, generally_RB_23_128); dobj(lack_VBP_24_138, stage_NN_27_153); advmod(lack_VBP_24_138, altogether_RB_28_159); det(stage_NN_27_153, the_DT_25_143); nn(stage_NN_27_153, polyp_NN_26_147) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 Most coastal scyphozoans ;;; Most_JJ_0_0; coastal_JJ_1_5; scyphozoans_NN_2_13 go through ;;; go_VBP_3_25 a stage ;;; a_DT_5_36; stage_NN_6_38 0.03070 None None 1 nn(Allday_NNP_1_4, Mr._NNP_0_0); possessive(Allday_NNP_1_4, 's_POS_2_11); poss(appointment_NN_3_14, Allday_NNP_1_4); nsubj(subject_JJ_5_29, appointment_NN_3_14); cop(subject_JJ_5_29, is_VBZ_4_26); prep(subject_JJ_5_29, to_TO_6_37); punct(subject_JJ_5_29, ._._11_67); pobj(to_TO_6_37, confirmation_NN_7_40); prep(confirmation_NN_7_40, by_IN_8_53); pobj(by_IN_8_53, Senate_NNP_10_60); det(Senate_NNP_10_60, the_DT_9_56) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 Mr. Allday 's appointment ;;; Mr._NNP_0_0; Allday_NNP_1_4; 's_POS_2_11; appointment_NN_3_14 is subject to ;;; is_VBZ_4_26; subject_JJ_5_29 confirmation ;;; confirmation_NN_7_40 0.04780 None None 0 nn(Allday_NNP_1_4, Mr._NNP_0_0); possessive(Allday_NNP_1_4, 's_POS_2_11); poss(appointment_NN_3_14, Allday_NNP_1_4); nsubj(subject_JJ_5_29, appointment_NN_3_14); cop(subject_JJ_5_29, is_VBZ_4_26); prep(subject_JJ_5_29, to_TO_6_37); punct(subject_JJ_5_29, ._._11_67); pobj(to_TO_6_37, confirmation_NN_7_40); prep(confirmation_NN_7_40, by_IN_8_53); pobj(by_IN_8_53, Senate_NNP_10_60); det(Senate_NNP_10_60, the_DT_9_56) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Mr. Allday 's appointment ;;; Mr._NNP_0_0; Allday_NNP_1_4; 's_POS_2_11; appointment_NN_3_14 is ;;; is_VBZ_4_26 subject ;;; subject_JJ_5_29 0.00840 None None 1 nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.2444 he ;;; he_PRP_3_16 expects to name a new group president to head that operation following ;;; expects_VBZ_4_19; to_TO_5_27; name_VB_6_30; a_DT_7_35; new_JJ_8_37; group_NN_9_41; president_NN_10_47; to_TO_11_57; head_VB_12_60; that_DT_13_65; operation_NN_14_70 the Nov. 8 board meeting ;;; the_DT_16_90; Nov._NNP_17_94; 8_CD_18_99; board_NN_19_101; meeting_NN_20_107 0.24440 None Mr. Bailey_said_0_1_2_2 1 nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1443 he ;;; he_PRP_3_16 expects to name ;;; expects_VBZ_4_19; to_TO_5_27; name_VB_6_30 a new group president to head that operation ;;; a_DT_7_35; new_JJ_8_37; group_NN_9_41; president_NN_10_47; to_TO_11_57; head_VB_12_60; that_DT_13_65; operation_NN_14_70 0.14430 None Mr. Bailey_said_0_1_2_2 1 nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a new group president to head that operation ;;; a_DT_7_35; new_JJ_8_37; group_NN_9_41; president_NN_10_47; to_TO_11_57; head_VB_12_60; that_DT_13_65; operation_NN_14_70 to be name following ;;; to_TO_5_27; name_VB_6_30 the Nov. 8 board meeting ;;; the_DT_16_90; Nov._NNP_17_94; 8_CD_18_99; board_NN_19_101; meeting_NN_20_107 0.01320 None None 1 nn(Bailey_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_11, Bailey_NNP_1_4); ccomp(said_VBD_2_11, expects_VBZ_4_19); punct(said_VBD_2_11, ._._21_115); nsubj(expects_VBZ_4_19, he_PRP_3_16); xcomp(expects_VBZ_4_19, name_VB_6_30); aux(name_VB_6_30, to_TO_5_27); dobj(name_VB_6_30, president_NN_10_47); prep(name_VB_6_30, following_VBG_15_80); det(president_NN_10_47, a_DT_7_35); amod(president_NN_10_47, new_JJ_8_37); nn(president_NN_10_47, group_NN_9_41); infmod(president_NN_10_47, head_VB_12_60); aux(head_VB_12_60, to_TO_11_57); dobj(head_VB_12_60, operation_NN_14_70); det(operation_NN_14_70, that_DT_13_65); pobj(following_VBG_15_80, meeting_NN_20_107); det(meeting_NN_20_107, the_DT_16_90); nn(meeting_NN_20_107, Nov._NNP_17_94); num(meeting_NN_20_107, 8_CD_18_99); nn(meeting_NN_20_107, board_NN_19_101) Template {rel} {prep} {arg1} xcomp> {rel:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.0067 he ;;; he_PRP_3_16 to name a new group president to head that operation following ;;; to_TO_5_27; name_VB_6_30; a_DT_7_35; new_JJ_8_37; group_NN_9_41; president_NN_10_47; to_TO_11_57; head_VB_12_60; that_DT_13_65; operation_NN_14_70 the Nov. 8 board meeting ;;; the_DT_16_90; Nov._NNP_17_94; 8_CD_18_99; board_NN_19_101; meeting_NN_20_107 0.00670 None None 1 nn(Fournier_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_13, Fournier_NNP_1_4); ccomp(said_VBD_2_13, prohibited_VBN_11_60); punct(said_VBD_2_13, ._._28_187); pobj(as_IN_4_23, chairman_NN_7_43); nn(chairman_NN_7_43, Navigation_NNP_5_26); nn(chairman_NN_7_43, Mixte_NNP_6_37); complm(prohibited_VBN_11_60, that_IN_3_18); prep(prohibited_VBN_11_60, as_IN_4_23); punct(prohibited_VBN_11_60, ,_,_8_52); nsubjpass(prohibited_VBN_11_60, he_PRP_9_54); auxpass(prohibited_VBN_11_60, is_VBZ_10_57); prep(prohibited_VBN_11_60, by_IN_12_71); prep(prohibited_VBN_11_60, from_IN_15_95); pobj(by_IN_12_71, regulations_NNS_14_83); nn(regulations_NNS_14_83, takeover_NN_13_74); pcomp(from_IN_15_95, organizing_VBG_16_100); dobj(organizing_VBG_16_100, defense_NN_19_119); cc(organizing_VBG_16_100, or_CC_20_127); conj(organizing_VBG_16_100, doing_VBG_21_130); poss(defense_NN_19_119, his_PRP$_17_111); amod(defense_NN_19_119, own_JJ_18_115); dobj(doing_VBG_21_130, anything_NN_22_136); prep(anything_NN_22_136, besides_IN_23_145); pcomp(besides_IN_23_145, managing_VBG_24_153); dobj(managing_VBG_24_153, business_NN_27_178); amod(business_NN_27_178, current_JJ_25_162); nn(business_NN_27_178, company_NN_26_170) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_9_54 is prohibited as ;;; is_VBZ_10_57; prohibited_VBN_11_60 Navigation Mixte chairman ;;; Navigation_NNP_5_26; Mixte_NNP_6_37; chairman_NN_7_43 1.00000 None Mr. Fournier_said_0_1_2_2 1 nn(Fournier_NNP_1_4, Mr._NNP_0_0); nsubj(said_VBD_2_13, Fournier_NNP_1_4); ccomp(said_VBD_2_13, prohibited_VBN_11_60); punct(said_VBD_2_13, ._._28_187); pobj(as_IN_4_23, chairman_NN_7_43); nn(chairman_NN_7_43, Navigation_NNP_5_26); nn(chairman_NN_7_43, Mixte_NNP_6_37); complm(prohibited_VBN_11_60, that_IN_3_18); prep(prohibited_VBN_11_60, as_IN_4_23); punct(prohibited_VBN_11_60, ,_,_8_52); nsubjpass(prohibited_VBN_11_60, he_PRP_9_54); auxpass(prohibited_VBN_11_60, is_VBZ_10_57); prep(prohibited_VBN_11_60, by_IN_12_71); prep(prohibited_VBN_11_60, from_IN_15_95); pobj(by_IN_12_71, regulations_NNS_14_83); nn(regulations_NNS_14_83, takeover_NN_13_74); pcomp(from_IN_15_95, organizing_VBG_16_100); dobj(organizing_VBG_16_100, defense_NN_19_119); cc(organizing_VBG_16_100, or_CC_20_127); conj(organizing_VBG_16_100, doing_VBG_21_130); poss(defense_NN_19_119, his_PRP$_17_111); amod(defense_NN_19_119, own_JJ_18_115); dobj(doing_VBG_21_130, anything_NN_22_136); prep(anything_NN_22_136, besides_IN_23_145); pcomp(besides_IN_23_145, managing_VBG_24_153); dobj(managing_VBG_24_153, business_NN_27_178); amod(business_NN_27_178, current_JJ_25_162); nn(business_NN_27_178, company_NN_26_170) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_9_54 is prohibited by ;;; is_VBZ_10_57; prohibited_VBN_11_60 takeover regulations ;;; takeover_NN_13_74; regulations_NN_14_83 1.00000 None Mr. Fournier_said_0_1_2_2 0 nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Conn ;;; Conn_NNP_10_59 acquired most of its stake in ;;; acquired_VBD_13_67; most_JJ_14_76; of_IN_15_81; its_PRP$_16_84; stake_NN_17_88 an $ 11-a-share tender offer ;;; an_DT_21_109; $_$_22_112; 11-a-share_JJ_23_114; tender_NN_24_125; offer_NN_25_132 0.73450 None None 1 nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Newport ;;; Newport_NNP_27_142 be a maker of ;;; a_DT_29_152; maker_NN_30_154 electronic-measuring devices ;;; electronic-measuring_JJ_32_163; devices_NN_33_184 0.40310 None None 0 nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) Template {rel} {arg1} dobj> {arg2} 0.3797 Conn ;;; Conn_NNP_10_59 acquired ;;; acquired_VBD_13_67 most of its stake ;;; most_JJ_14_76; of_IN_15_81; its_PRP$_16_84; stake_NN_17_88 0.37970 None None 1 nn(Hollander_NNP_1_4, Mr._NNP_0_0); possessive(Hollander_NNP_1_4, 's_POS_2_14); poss(Co._NNP_6_41, Hollander_NNP_1_4); nn(Co._NNP_6_41, High_NNP_3_17); nn(Co._NNP_6_41, Technology_NNP_4_22); nn(Co._NNP_6_41, Holding_NNP_5_33); prep(Co._NNP_6_41, of_IN_7_45); punct(Co._NNP_6_41, ._._34_192); pobj(of_IN_7_45, Stamford_NNP_8_48); punct(Stamford_NNP_8_48, ,_,_9_57); rcmod(Stamford_NNP_8_48, acquired_VBD_13_67); nsubj(acquired_VBD_13_67, Conn_NNP_10_59); punct(acquired_VBD_13_67, ._._11_63); punct(acquired_VBD_13_67, ,_,_12_65); dobj(acquired_VBD_13_67, most_JJS_14_76); tmod(acquired_VBD_13_67, August_NNP_19_99); prep(acquired_VBD_13_67, in_IN_20_106); prep(most_JJS_14_76, of_IN_15_81); pobj(of_IN_15_81, stake_NN_17_88); poss(stake_NN_17_88, its_PRP$_16_84); amod(August_NNP_19_99, last_JJ_18_94); pobj(in_IN_20_106, offer_NN_25_132); dep($_$_22_112, 11-a-share_JJ_23_114); det(offer_NN_25_132, an_DT_21_109); amod(offer_NN_25_132, $_$_22_112); nn(offer_NN_25_132, tender_NN_24_125); prep(offer_NN_25_132, for_IN_26_138); pobj(for_IN_26_138, Newport_NNP_27_142); punct(Newport_NNP_27_142, ,_,_28_150); appos(Newport_NNP_27_142, maker_NN_30_154); det(maker_NN_30_154, a_DT_29_152); prep(maker_NN_30_154, of_IN_31_160); pobj(of_IN_31_160, devices_NNS_33_184); amod(devices_NNS_33_184, electronic-measuring_JJ_32_163) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 most of its stake ;;; most_JJ_14_76; of_IN_15_81; its_PRP$_16_84; stake_NN_17_88 be acquired in ;;; acquired_VBD_13_67 an $ 11-a-share tender offer ;;; an_DT_21_109; $_$_22_112; 11-a-share_JJ_23_114; tender_NN_24_125; offer_NN_25_132 0.01550 None None 1 nn(Coleman_NNP_1_5, Mrs._NNP_0_0); punct(Coleman_NNP_1_5, ,_,_2_13); appos(Coleman_NNP_1_5, 73_CD_3_15); punct(Coleman_NNP_1_5, ,_,_4_18); rcmod(Coleman_NNP_1_5, declined_VBD_6_24); punct(Coleman_NNP_1_5, ,_,_10_51); nsubj(declined_VBD_6_24, who_WP_5_20); xcomp(declined_VBD_6_24, interviewed_VBN_9_39); aux(interviewed_VBN_9_39, to_TO_7_33); auxpass(interviewed_VBN_9_39, be_VB_8_36); nsubj(strategist_NN_14_71, Coleman_NNP_1_5); cop(strategist_NN_14_71, is_VBZ_11_53); det(strategist_NN_14_71, the_DT_12_56); nn(strategist_NN_14_71, Maidenform_NNP_13_60); punct(strategist_NN_14_71, ._._15_82) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Mrs. Coleman ;;; Mrs._NNP_0_0; Coleman_NNP_1_5 is ;;; is_VBZ_11_53 the Maidenform strategist ;;; the_DT_12_56; Maidenform_NNP_13_60; strategist_NN_14_71 0.00840 None None 1 nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) Template be {rel} {arg1} dobj> {arg2} 0.0191 Nero ;;; Nero_NNP_0_0 was born ;;; was_VBD_1_5; born_VBN_2_9 Francesco Sparanero ;;; Francesco_NNP_3_14; Sparanero_NNP_4_24 0.01910 None None 0 nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) Template be {rel} {prep} {arg1} dobj> {rel:postag=NNP} >{prep:regex=prep_(.*)}> {arg2} 0.0124 Nero ;;; Nero_NNP_0_0 be Francesco Sparanero in ;;; Francesco_NNP_3_14; Sparanero_NNP_4_24 San Prospero ;;; San_NNP_6_37; Prospero_NNP_7_41 0.01240 None None 1 nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) Template be {rel} {prep} {rel:postag=VBN:regex=appoint|award|bear|call|elect|equip|find|hold|locate} >dobj> {arg1} >{prep:regex=prep_(.*)}> {arg2} 0.0083 Francesco Sparanero ;;; Francesco_NNP_3_14; Sparanero_NNP_4_24 was born in ;;; was_VBD_1_5; born_VBN_2_9 San Prospero ;;; San_NNP_6_37; Prospero_NNP_7_41 0.00830 None None 1 nsubjpass(born_VBN_2_9, Nero_NNP_0_0); auxpass(born_VBN_2_9, was_VBD_1_5); dobj(born_VBN_2_9, Sparanero_NNP_4_24); punct(born_VBN_2_9, ,_,_10_67); cc(born_VBN_2_9, and_CC_11_69); conj(born_VBN_2_9, grew_VBD_12_73); punct(born_VBN_2_9, ._._19_105); nn(Sparanero_NNP_4_24, Francesco_NNP_3_14); prep(Sparanero_NNP_4_24, in_IN_5_34); pobj(in_IN_5_34, Prospero_NNP_7_41); nn(Prospero_NNP_7_41, San_NNP_6_37); punct(Prospero_NNP_7_41, ,_,_8_50); appos(Prospero_NNP_7_41, Emilia-Romagna_NNP_9_52); prt(grew_VBD_12_73, up_RP_13_78); prep(grew_VBD_12_73, in_IN_14_81); pobj(in_IN_14_81, Bedonia_NNP_15_84); cc(in_IN_14_81, and_CC_16_92); conj(in_IN_14_81, in_IN_17_96); pobj(in_IN_17_96, Milan_NNP_18_99) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0052 Nero ;;; Nero_NNP_0_0 grew up in ;;; grew_VBD_12_73; up_RP_13_78 Bedonia and in Milan ;;; Bedonia_NNP_15_84; and_CC_16_92; in_IN_17_96; Milan_NNP_18_99 0.00520 None None 1 mark(choose_VB_3_13, Next_IN_0_0); nsubj(choose_VB_3_13, we_PRP_1_5); aux(choose_VB_3_13, must_MD_2_8); dobj(choose_VB_3_13, method_NN_5_22); punct(choose_VB_3_13, ._._13_85); det(method_NN_5_22, a_DT_4_20); prep(method_NN_5_22, of_IN_6_29); pcomp(of_IN_6_29, inferring_VBG_7_32); dobj(inferring_VBG_7_32, phylogeny_NN_8_42); prep(inferring_VBG_7_32, from_IN_9_52); pobj(from_IN_9_52, characters_NNS_12_74); det(characters_NNS_12_74, these_DT_10_57); amod(characters_NNS_12_74, homologous_JJ_11_63) Template {rel} {arg1} dobj> {arg2} 0.1473 we ;;; we_PRP_1_5 must choose ;;; must_MD_2_8; choose_VB_3_13 a method inferring phylogeny from these homologous characters ;;; a_DT_4_20; method_NN_5_22; inferring_VBG_7_32; phylogeny_NN_8_42; from_IN_9_52; these_DT_10_57; homologous_JJ_11_63; characters_NN_12_74 0.14730 None None 1 mark(choose_VB_3_13, Next_IN_0_0); nsubj(choose_VB_3_13, we_PRP_1_5); aux(choose_VB_3_13, must_MD_2_8); dobj(choose_VB_3_13, method_NN_5_22); punct(choose_VB_3_13, ._._13_85); det(method_NN_5_22, a_DT_4_20); prep(method_NN_5_22, of_IN_6_29); pcomp(of_IN_6_29, inferring_VBG_7_32); dobj(inferring_VBG_7_32, phylogeny_NN_8_42); prep(inferring_VBG_7_32, from_IN_9_52); pobj(from_IN_9_52, characters_NNS_12_74); det(characters_NNS_12_74, these_DT_10_57); amod(characters_NNS_12_74, homologous_JJ_11_63) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 phylogeny ;;; phylogeny_NN_8_42 be inferring from ;;; inferring_VBG_7_32 these homologous characters ;;; these_DT_10_57; homologous_JJ_11_63; characters_NN_12_74 0.00790 None None 1 nn(Luffenham_NNP_1_6, North_NNP_0_0); nsubj(village_NN_4_21, Luffenham_NNP_1_6); cop(village_NN_4_21, is_VBZ_2_16); det(village_NN_4_21, a_DT_3_19); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_7_40); prep(village_NN_4_21, in_IN_8_42); punct(village_NN_4_21, ._._14_74); pobj(in_IN_5_29, Rutland_NNP_6_32); pobj(in_IN_8_42, Midlands_NNP_11_54); det(Midlands_NNP_11_54, the_DT_9_45); nn(Midlands_NNP_11_54, East_NNP_10_49); prep(Midlands_NNP_11_54, of_IN_12_63); pobj(of_IN_12_63, England_NNP_13_66) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 North Luffenham ;;; North_NNP_0_0; Luffenham_NNP_1_6 is a village in ;;; is_VBZ_2_16; a_DT_3_19; village_NN_4_21 Rutland ;;; Rutland_NNP_6_32 0.95550 None None 1 nn(Luffenham_NNP_1_6, North_NNP_0_0); nsubj(village_NN_4_21, Luffenham_NNP_1_6); cop(village_NN_4_21, is_VBZ_2_16); det(village_NN_4_21, a_DT_3_19); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_7_40); prep(village_NN_4_21, in_IN_8_42); punct(village_NN_4_21, ._._14_74); pobj(in_IN_5_29, Rutland_NNP_6_32); pobj(in_IN_8_42, Midlands_NNP_11_54); det(Midlands_NNP_11_54, the_DT_9_45); nn(Midlands_NNP_11_54, East_NNP_10_49); prep(Midlands_NNP_11_54, of_IN_12_63); pobj(of_IN_12_63, England_NNP_13_66) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 North Luffenham ;;; North_NNP_0_0; Luffenham_NNP_1_6 is a village in ;;; is_VBZ_2_16; a_DT_3_19; village_NN_4_21 the East Midlands of England ;;; the_DT_9_45; East_NNP_10_49; Midlands_NNP_11_54; of_IN_12_63; England_NNP_13_66 0.95550 None None 1 nn(Luffenham_NNP_1_6, North_NNP_0_0); nsubj(village_NN_4_21, Luffenham_NNP_1_6); cop(village_NN_4_21, is_VBZ_2_16); det(village_NN_4_21, a_DT_3_19); prep(village_NN_4_21, in_IN_5_29); punct(village_NN_4_21, ,_,_7_40); prep(village_NN_4_21, in_IN_8_42); punct(village_NN_4_21, ._._14_74); pobj(in_IN_5_29, Rutland_NNP_6_32); pobj(in_IN_8_42, Midlands_NNP_11_54); det(Midlands_NNP_11_54, the_DT_9_45); nn(Midlands_NNP_11_54, East_NNP_10_49); prep(Midlands_NNP_11_54, of_IN_12_63); pobj(of_IN_12_63, England_NNP_13_66) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 North Luffenham ;;; North_NNP_0_0; Luffenham_NNP_1_6 is ;;; is_VBZ_2_16 a village ;;; a_DT_3_19; village_NN_4_21 0.00840 None None 1 advmod(learned_VBN_4_17, Now_RB_0_0); dep(learned_VBN_4_17, that_IN_1_4); nsubj(learned_VBN_4_17, you_PRP_2_9); aux(learned_VBN_4_17, 've_VBP_3_13); prep(learned_VBN_4_17, about_IN_5_25); pobj(about_IN_5_25, enzymes_NNS_7_43); nn(enzymes_NNS_7_43, restriction_NN_6_31); cc(enzymes_NNS_7_43, and_CC_8_51); conj(enzymes_NNS_7_43, ligase_NN_10_59); nn(ligase_NN_10_59, DNA_NNP_9_55); ccomp(see_VB_14_75, learned_VBN_4_17); punct(see_VB_14_75, ,_,_11_66); nsubj(see_VB_14_75, we_PRP_12_68); aux(see_VB_14_75, can_MD_13_71); ccomp(see_VB_14_75, cloned_VBN_18_93); punct(see_VB_14_75, ._._21_112); advmod(cloned_VBN_18_93, how_WRB_15_79); nsubjpass(cloned_VBN_18_93, genes_NNS_16_83); auxpass(cloned_VBN_18_93, are_VBP_17_89); prep(cloned_VBN_18_93, in_IN_19_100); pobj(in_IN_19_100, plasmids_NNS_20_103) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 genes ;;; genes_NN_16_83 are cloned in ;;; are_VBP_17_89; cloned_VBN_18_93 plasmids ;;; plasmids_NN_20_103 1.00000 None we_can see_12_12_13_14 1 advmod(learned_VBN_4_17, Now_RB_0_0); dep(learned_VBN_4_17, that_IN_1_4); nsubj(learned_VBN_4_17, you_PRP_2_9); aux(learned_VBN_4_17, 've_VBP_3_13); prep(learned_VBN_4_17, about_IN_5_25); pobj(about_IN_5_25, enzymes_NNS_7_43); nn(enzymes_NNS_7_43, restriction_NN_6_31); cc(enzymes_NNS_7_43, and_CC_8_51); conj(enzymes_NNS_7_43, ligase_NN_10_59); nn(ligase_NN_10_59, DNA_NNP_9_55); ccomp(see_VB_14_75, learned_VBN_4_17); punct(see_VB_14_75, ,_,_11_66); nsubj(see_VB_14_75, we_PRP_12_68); aux(see_VB_14_75, can_MD_13_71); ccomp(see_VB_14_75, cloned_VBN_18_93); punct(see_VB_14_75, ._._21_112); advmod(cloned_VBN_18_93, how_WRB_15_79); nsubjpass(cloned_VBN_18_93, genes_NNS_16_83); auxpass(cloned_VBN_18_93, are_VBP_17_89); prep(cloned_VBN_18_93, in_IN_19_100); pobj(in_IN_19_100, plasmids_NNS_20_103) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 you ;;; you_PRP_2_9 Now 've learned about ;;; Now_RB_0_0; 've_VBP_3_13; learned_VBN_4_17 restriction enzymes and DNA ligase ;;; restriction_NN_6_31; enzymes_NN_7_43; and_CC_8_51; DNA_NNP_9_55; ligase_NN_10_59 0.04440 None we_can see_12_12_13_14 0 dep(Now_RB_0_0, with_IN_1_4); cc(Now_RB_0_0, and_CC_11_61); conj(Now_RB_0_0, keyboards_VBD_12_65); pobj(with_IN_1_4, Butterworth_NNP_3_13); dep(with_IN_1_4, on_IN_4_25); nn(Butterworth_NNP_3_13, Ian_NNP_2_9); pobj(on_IN_4_25, guitar_NN_5_28); cc(guitar_NN_5_28, and_CC_6_35); conj(guitar_NN_5_28, Wikeley_NNP_8_45); prep(guitar_NN_5_28, on_IN_9_53); nn(Wikeley_NNP_8_45, Roger_NNP_7_39); pobj(on_IN_9_53, bass_NN_10_56); dobj(keyboards_VBD_12_65, band_NN_14_79); det(band_NN_14_79, the_DT_13_75); advmod(performed_VBD_15_84, Now_RB_0_0); dobj(performed_VBD_15_84, show_NN_19_111); prep(performed_VBD_15_84, in_IN_20_116); prep(performed_VBD_15_84, in_IN_28_173); prep(performed_VBD_15_84, followed_VBN_31_185); punct(performed_VBD_15_84, ._._46_267); poss(show_NN_19_111, their_PRP$_16_94); amod(show_NN_19_111, first_JJ_17_100); amod(show_NN_19_111, live_JJ_18_106); pobj(in_IN_20_116, decades_NNS_23_130); quantmod(two_CD_22_126, nearly_RB_21_119); num(decades_NNS_23_130, two_CD_22_126); prep(decades_NNS_23_130, at_IN_24_138); pobj(at_IN_24_138, hometown_NN_26_147); poss(hometown_NN_26_147, their_PRP$_25_141); dep(hometown_NN_26_147, Poulton-Le-Fylde_NNP_27_156); pobj(in_IN_28_173, May_NNP_29_176); num(May_NNP_29_176, 2006_CD_30_180); prep(followed_VBN_31_185, by_IN_32_194); pobj(by_IN_32_194, dates_NNS_33_197); prep(dates_NNS_33_197, in_IN_34_203); pobj(in_IN_34_203, Blackpool_NNP_35_206); punct(Blackpool_NNP_35_206, ,_,_36_216); conj(Blackpool_NNP_35_206, Paris_NNP_37_218); punct(Blackpool_NNP_35_206, ,_,_38_224); conj(Blackpool_NNP_35_206, Brussels_NNP_39_226); punct(Blackpool_NNP_35_206, ,_,_40_235); conj(Blackpool_NNP_35_206, Leicester_NNP_41_237); punct(Blackpool_NNP_35_206, ,_,_42_247); conj(Blackpool_NNP_35_206, London_NNP_43_249); cc(Blackpool_NNP_35_206, and_CC_44_256); conj(Blackpool_NNP_35_206, Athens_NNP_45_260) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 their first live show ;;; their_PRP$_16_94; first_JJ_17_100; live_JJ_18_106; show_NN_19_111 be Now with Ian Butterworth on guitar Roger Wikeley bass keyboards the band performed in ;;; Now_RB_0_0; with_IN_1_4; Ian_NNP_2_9; Butterworth_NNP_3_13; on_IN_4_25; guitar_NN_5_28; Roger_NNP_7_39; Wikeley_NNP_8_45; bass_NN_10_56; keyboards_VBD_12_65; the_DT_13_75; band_NN_14_79; performed_VBD_15_84 May 2006 ;;; May_NNP_29_176; 2006_CD_30_180 0.01550 None None 0 dep(Now_RB_0_0, with_IN_1_4); cc(Now_RB_0_0, and_CC_11_61); conj(Now_RB_0_0, keyboards_VBD_12_65); pobj(with_IN_1_4, Butterworth_NNP_3_13); dep(with_IN_1_4, on_IN_4_25); nn(Butterworth_NNP_3_13, Ian_NNP_2_9); pobj(on_IN_4_25, guitar_NN_5_28); cc(guitar_NN_5_28, and_CC_6_35); conj(guitar_NN_5_28, Wikeley_NNP_8_45); prep(guitar_NN_5_28, on_IN_9_53); nn(Wikeley_NNP_8_45, Roger_NNP_7_39); pobj(on_IN_9_53, bass_NN_10_56); dobj(keyboards_VBD_12_65, band_NN_14_79); det(band_NN_14_79, the_DT_13_75); advmod(performed_VBD_15_84, Now_RB_0_0); dobj(performed_VBD_15_84, show_NN_19_111); prep(performed_VBD_15_84, in_IN_20_116); prep(performed_VBD_15_84, in_IN_28_173); prep(performed_VBD_15_84, followed_VBN_31_185); punct(performed_VBD_15_84, ._._46_267); poss(show_NN_19_111, their_PRP$_16_94); amod(show_NN_19_111, first_JJ_17_100); amod(show_NN_19_111, live_JJ_18_106); pobj(in_IN_20_116, decades_NNS_23_130); quantmod(two_CD_22_126, nearly_RB_21_119); num(decades_NNS_23_130, two_CD_22_126); prep(decades_NNS_23_130, at_IN_24_138); pobj(at_IN_24_138, hometown_NN_26_147); poss(hometown_NN_26_147, their_PRP$_25_141); dep(hometown_NN_26_147, Poulton-Le-Fylde_NNP_27_156); pobj(in_IN_28_173, May_NNP_29_176); num(May_NNP_29_176, 2006_CD_30_180); prep(followed_VBN_31_185, by_IN_32_194); pobj(by_IN_32_194, dates_NNS_33_197); prep(dates_NNS_33_197, in_IN_34_203); pobj(in_IN_34_203, Blackpool_NNP_35_206); punct(Blackpool_NNP_35_206, ,_,_36_216); conj(Blackpool_NNP_35_206, Paris_NNP_37_218); punct(Blackpool_NNP_35_206, ,_,_38_224); conj(Blackpool_NNP_35_206, Brussels_NNP_39_226); punct(Blackpool_NNP_35_206, ,_,_40_235); conj(Blackpool_NNP_35_206, Leicester_NNP_41_237); punct(Blackpool_NNP_35_206, ,_,_42_247); conj(Blackpool_NNP_35_206, London_NNP_43_249); cc(Blackpool_NNP_35_206, and_CC_44_256); conj(Blackpool_NNP_35_206, Athens_NNP_45_260) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 their first live show ;;; their_PRP$_16_94; first_JJ_17_100; live_JJ_18_106; show_NN_19_111 be Now with Ian Butterworth on guitar Roger Wikeley bass keyboards the band performed in ;;; Now_RB_0_0; with_IN_1_4; Ian_NNP_2_9; Butterworth_NNP_3_13; on_IN_4_25; guitar_NN_5_28; Roger_NNP_7_39; Wikeley_NNP_8_45; bass_NN_10_56; keyboards_VBD_12_65; the_DT_13_75; band_NN_14_79; performed_VBD_15_84 nearly two decades ;;; nearly_RB_21_119; two_CD_22_126; decades_NN_23_130 0.01550 None None 1 pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Prince Kitashirakawa ;;; Prince_NNP_6_21; Kitashirakawa_NNP_7_28 married Princess Kane-no-Miya Fusako , the seventh daughter of Emperor Meiji on ;;; married_VBD_8_42; Princess_NNP_9_50; Kane-no-Miya_NNP_10_59; Fusako_NNP_11_72; ,_,_12_79; the_DT_13_81; seventh_JJ_14_85; daughter_NN_15_93; of_IN_16_102; Emperor_NNP_17_105; Meiji_NNP_18_113 April 29 , 1909 ;;; April_NNP_1_3; 29_CD_2_9; ,_,_3_12; 1909_CD_4_14 0.73450 None None 1 pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Princess Kane-no-Miya Fusako ;;; Princess_NNP_9_50; Kane-no-Miya_NNP_10_59; Fusako_NNP_11_72 be the seventh daughter of ;;; the_DT_13_81; seventh_JJ_14_85; daughter_NN_15_93 Emperor Meiji ;;; Emperor_NNP_17_105; Meiji_NNP_18_113 0.40310 None None 1 pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) Template {rel} {arg1} dobj> {arg2} 0.3797 Prince Kitashirakawa ;;; Prince_NNP_6_21; Kitashirakawa_NNP_7_28 married ;;; married_VBD_8_42 Princess Kane-no-Miya Fusako ;;; Princess_NNP_9_50; Kane-no-Miya_NNP_10_59; Fusako_NNP_11_72 0.37970 None None 1 pobj(On_IN_0_0, April_NNP_1_3); num(April_NNP_1_3, 29_CD_2_9); punct(April_NNP_1_3, ,_,_3_12); num(April_NNP_1_3, 1909_CD_4_14); nn(Kitashirakawa_NNP_7_28, Prince_NNP_6_21); prep(married_VBD_8_42, On_IN_0_0); punct(married_VBD_8_42, ,_,_5_19); nsubj(married_VBD_8_42, Kitashirakawa_NNP_7_28); dobj(married_VBD_8_42, Fusako_NNP_11_72); punct(married_VBD_8_42, ._._19_119); nn(Fusako_NNP_11_72, Princess_NNP_9_50); nn(Fusako_NNP_11_72, Kane-no-Miya_NNP_10_59); punct(Fusako_NNP_11_72, ,_,_12_79); appos(Fusako_NNP_11_72, daughter_NN_15_93); det(daughter_NN_15_93, the_DT_13_81); amod(daughter_NN_15_93, seventh_JJ_14_85); prep(daughter_NN_15_93, of_IN_16_102); pobj(of_IN_16_102, Meiji_NNP_18_113); nn(Meiji_NNP_18_113, Emperor_NNP_17_105) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Princess Kane-no-Miya Fusako ;;; Princess_NNP_9_50; Kane-no-Miya_NNP_10_59; Fusako_NNP_11_72 be married on ;;; married_VBD_8_42 April 29 , 1909 ;;; April_NNP_1_3; 29_CD_2_9; ,_,_3_12; 1909_CD_4_14 0.01550 None None 0 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_9_50 had three tackles including 1.5 sacks for a total of 10.5 yards in losses on ;;; had_VBD_10_53; three_CD_11_57; tackles_NN_12_63; including_VBG_13_71; 1.5_CD_14_81; sacks_NN_15_85; for_IN_16_91; a_DT_17_95; total_NN_18_97; of_IN_19_103; 10.5_CD_20_106; yards_NN_21_111; in_IN_22_117; losses_NN_23_120 December 10 ;;; December_NNP_1_3; 10_CD_2_12 0.73450 None None 0 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_9_50 had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing an 11-yard sack of Brady with ;;; had_VBD_10_53; three_CD_11_57; tackles_NN_12_63; including_VBG_13_71; 1.5_CD_14_81; sacks_NN_15_85; for_IN_16_91; a_DT_17_95; total_NN_18_97; of_IN_19_103; 10.5_CD_20_106; yards_NN_21_111; in_IN_22_117; losses_NN_23_120; sharing_VBG_34_185; an_DT_35_193; 11-yard_JJ_36_196; sack_NN_37_204; of_IN_38_209; Brady_NNP_39_212 defensive tackle Vonnie Holliday ;;; defensive_JJ_41_223; tackle_NN_42_233; Vonnie_NNP_43_240; Holliday_NNP_44_247 0.73450 None None 0 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_9_50 had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling quarterback Tom Brady for ;;; had_VBD_10_53; three_CD_11_57; tackles_NN_12_63; including_VBG_13_71; 1.5_CD_14_81; sacks_NN_15_85; for_IN_16_91; a_DT_17_95; total_NN_18_97; of_IN_19_103; 10.5_CD_20_106; yards_NN_21_111; in_IN_22_117; losses_NN_23_120; tackling_VBG_25_129; quarterback_NN_26_138; Tom_NNP_27_150; Brady_NNP_28_154 a five-yard loss ;;; a_DT_30_164; five-yard_JJ_31_166; loss_NN_32_176 0.73450 None None 0 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797 he ;;; he_PRP_9_50 had three tackles including 1.5 sacks for a total of 10.5 yards in losses sharing ;;; had_VBD_10_53; three_CD_11_57; tackles_NN_12_63; including_VBG_13_71; 1.5_CD_14_81; sacks_NN_15_85; for_IN_16_91; a_DT_17_95; total_NN_18_97; of_IN_19_103; 10.5_CD_20_106; yards_NN_21_111; in_IN_22_117; losses_NN_23_120; sharing_VBG_34_185 an 11-yard sack of Brady ;;; an_DT_35_193; 11-yard_JJ_36_196; sack_NN_37_204; of_IN_38_209; Brady_NNP_39_212 0.37970 None None 0 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797 he ;;; he_PRP_9_50 had three tackles including 1.5 sacks for a total of 10.5 yards in losses tackling ;;; had_VBD_10_53; three_CD_11_57; tackles_NN_12_63; including_VBG_13_71; 1.5_CD_14_81; sacks_NN_15_85; for_IN_16_91; a_DT_17_95; total_NN_18_97; of_IN_19_103; 10.5_CD_20_106; yards_NN_21_111; in_IN_22_117; losses_NN_23_120; tackling_VBG_25_129 quarterback Tom Brady ;;; quarterback_NN_26_138; Tom_NNP_27_150; Brady_NNP_28_154 0.37970 None None 1 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template {rel} {arg1} dobj> {arg2} 0.3797 he ;;; he_PRP_9_50 had ;;; had_VBD_10_53 three tackles ;;; three_CD_11_57; tackles_NN_12_63 0.37970 None None 1 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 three tackles ;;; three_CD_11_57; tackles_NN_12_63 be had on ;;; had_VBD_10_53 December 10 ;;; December_NNP_1_3; 10_CD_2_12 0.01550 None None 1 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 he ;;; he_PRP_9_50 be three tackles including ;;; three_CD_11_57; tackles_NN_12_63 1.5 sacks ;;; 1.5_CD_14_81; sacks_NN_15_85 0.01190 None None 1 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 an 11-yard sack of Brady ;;; an_DT_35_193; 11-yard_JJ_36_196; sack_NN_37_204; of_IN_38_209; Brady_NNP_39_212 be sharing with ;;; sharing_VBG_34_185 defensive tackle Vonnie Holliday ;;; defensive_JJ_41_223; tackle_NN_42_233; Vonnie_NNP_43_240; Holliday_NNP_44_247 0.00790 None None 1 pobj(On_IN_0_0, December_NNP_1_3); dep(On_IN_0_0, against_IN_3_15); num(December_NNP_1_3, 10_CD_2_12); pobj(against_IN_3_15, Patriots_NNP_7_39); det(Patriots_NNP_7_39, the_DT_4_23); nn(Patriots_NNP_7_39, New_NNP_5_27); nn(Patriots_NNP_7_39, England_NNP_6_31); prep(had_VBD_10_53, On_IN_0_0); punct(had_VBD_10_53, ,_,_8_48); nsubj(had_VBD_10_53, he_PRP_9_50); dobj(had_VBD_10_53, tackles_NNS_12_63); punct(had_VBD_10_53, ,_,_24_127); xcomp(had_VBD_10_53, tackling_VBG_25_129); punct(had_VBD_10_53, ._._45_256); num(tackles_NNS_12_63, three_CD_11_57); prep(tackles_NNS_12_63, including_VBG_13_71); pobj(including_VBG_13_71, sacks_NNS_15_85); num(sacks_NNS_15_85, 1.5_CD_14_81); prep(sacks_NNS_15_85, for_IN_16_91); pobj(for_IN_16_91, total_NN_18_97); det(total_NN_18_97, a_DT_17_95); prep(total_NN_18_97, of_IN_19_103); prep(total_NN_18_97, in_IN_22_117); pobj(of_IN_19_103, yards_NNS_21_111); num(yards_NNS_21_111, 10.5_CD_20_106); pobj(in_IN_22_117, losses_NNS_23_120); dobj(tackling_VBG_25_129, Brady_NNP_28_154); prep(tackling_VBG_25_129, for_IN_29_160); cc(tackling_VBG_25_129, and_CC_33_181); conj(tackling_VBG_25_129, sharing_VBG_34_185); nn(Brady_NNP_28_154, quarterback_NN_26_138); nn(Brady_NNP_28_154, Tom_NNP_27_150); pobj(for_IN_29_160, loss_NN_32_176); det(loss_NN_32_176, a_DT_30_164); amod(loss_NN_32_176, five-yard_JJ_31_166); dobj(sharing_VBG_34_185, sack_NN_37_204); prep(sharing_VBG_34_185, with_IN_40_218); det(sack_NN_37_204, an_DT_35_193); amod(sack_NN_37_204, 11-yard_JJ_36_196); prep(sack_NN_37_204, of_IN_38_209); pobj(of_IN_38_209, Brady_NNP_39_212); pobj(with_IN_40_218, Holliday_NNP_44_247); amod(Holliday_NNP_44_247, defensive_JJ_41_223); nn(Holliday_NNP_44_247, tackle_NN_42_233); nn(Holliday_NNP_44_247, Vonnie_NNP_43_240) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 quarterback Tom Brady ;;; quarterback_NN_26_138; Tom_NNP_27_150; Brady_NNP_28_154 be tackling for ;;; tackling_VBG_25_129 a five-yard loss ;;; a_DT_30_164; five-yard_JJ_31_166; loss_NN_32_176 0.00790 None None 1 pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_10_44 was traded as ;;; was_VBD_11_47; traded_VBN_12_51 a minor-leaguer ;;; a_DT_7_26; minor-leaguer_NN_8_28 1.00000 None None 1 pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_10_44 was traded by ;;; was_VBD_11_47; traded_VBN_12_51 the New York Yankees ;;; the_DT_14_61; New_NNP_15_65; York_NNP_16_69; Yankees_NN_17_74 1.00000 None None 1 pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_10_44 was traded for ;;; was_VBD_11_47; traded_VBN_12_51 Rickey Henderson , Bert Bradley , and cash ;;; Rickey_NNP_36_171; Henderson_NNP_37_178; ,_,_38_188; Bert_NNP_39_190; Bradley_NNP_40_195; ,_,_41_203; and_CC_42_205; cash_NN_43_209 1.00000 None None 1 pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_10_44 was traded on ;;; was_VBD_11_47; traded_VBN_12_51 December 5 , 1984 ;;; December_NNP_1_3; 5_CD_2_12; ,_,_3_14; 1984_CD_4_16 1.00000 None None 1 pobj(On_IN_0_0, December_NNP_1_3); num(December_NNP_1_3, 5_CD_2_12); punct(December_NNP_1_3, ,_,_3_14); num(December_NNP_1_3, 1984_CD_4_16); pobj(as_IN_6_23, minor-leaguer_NN_8_28); det(minor-leaguer_NN_8_28, a_DT_7_26); prep(traded_VBN_12_51, On_IN_0_0); punct(traded_VBN_12_51, ,_,_5_21); prep(traded_VBN_12_51, as_IN_6_23); punct(traded_VBN_12_51, ,_,_9_42); nsubjpass(traded_VBN_12_51, he_PRP_10_44); auxpass(traded_VBN_12_51, was_VBD_11_47); prep(traded_VBN_12_51, by_IN_13_58); prep(traded_VBN_12_51, to_TO_31_142); prep(traded_VBN_12_51, for_IN_35_167); punct(traded_VBN_12_51, ._._44_214); pobj(by_IN_13_58, Yankees_NNS_17_74); det(Yankees_NNS_17_74, the_DT_14_61); nn(Yankees_NNS_17_74, New_NNP_15_65); nn(Yankees_NNS_17_74, York_NNP_16_69); prep(Yankees_NNS_17_74, with_IN_18_82); pobj(with_IN_18_82, Birtsas_NNP_20_91); nn(Birtsas_NNP_20_91, Tim_NNP_19_87); punct(Birtsas_NNP_20_91, ,_,_21_99); conj(Birtsas_NNP_20_91, Howell_NNP_23_105); punct(Birtsas_NNP_20_91, ,_,_24_112); conj(Birtsas_NNP_20_91, Javier_NNP_26_119); punct(Birtsas_NNP_20_91, ,_,_27_126); cc(Birtsas_NNP_20_91, and_CC_28_128); conj(Birtsas_NNP_20_91, Rijo_NNP_30_137); nn(Howell_NNP_23_105, Jay_NNP_22_101); nn(Javier_NNP_26_119, Stan_NNP_25_114); nn(Rijo_NNP_30_137, Jose_NNP_29_132); pobj(to_TO_31_142, Athletics_NNP_34_157); det(Athletics_NNP_34_157, the_DT_32_145); nn(Athletics_NNP_34_157, Oakland_NNP_33_149); pobj(for_IN_35_167, Henderson_NNP_37_178); nn(Henderson_NNP_37_178, Rickey_NNP_36_171); punct(Henderson_NNP_37_178, ,_,_38_188); appos(Henderson_NNP_37_178, Bradley_NNP_40_195); punct(Henderson_NNP_37_178, ,_,_41_203); cc(Henderson_NNP_37_178, and_CC_42_205); conj(Henderson_NNP_37_178, cash_NN_43_209); nn(Bradley_NNP_40_195, Bert_NNP_39_190) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_10_44 was traded to ;;; was_VBD_11_47; traded_VBN_12_51 the Oakland Athletics ;;; the_DT_32_145; Oakland_NNP_33_149; Athletics_NNP_34_157 1.00000 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Hezbollah ;;; Hezbollah_NNP_5_18 transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in ;;; transferred_VBD_6_28; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109; ,_,_19_115; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 exchange ;;; exchange_NN_21_120 0.73450 None None 1 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Hezbollah ;;; Hezbollah_NNP_5_18 transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on ;;; transferred_VBD_6_28; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109; ,_,_19_115; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 July 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11 0.73450 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Hezbollah ;;; Hezbollah_NNP_5_18 transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in ;;; transferred_VBD_6_28; Eldad_NNP_17_103; Regev_NNP_18_109; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 exchange ;;; exchange_NN_21_120 0.73450 None None 1 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Hezbollah ;;; Hezbollah_NNP_5_18 transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on ;;; transferred_VBD_6_28; Eldad_NNP_17_103; Regev_NNP_18_109; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 July 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11 0.73450 None None 1 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Hezbollah ;;; Hezbollah_NNP_5_18 transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians in ;;; transferred_VBD_6_28; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 exchange ;;; exchange_NN_21_120 0.73450 None None 1 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Hezbollah ;;; Hezbollah_NNP_5_18 transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians on ;;; transferred_VBD_6_28; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 July 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11 0.73450 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template {rel} {arg1} dobj> {arg2} 0.3797 Hezbollah ;;; Hezbollah_NNP_5_18 transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians ;;; transferred_VBD_6_28; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109; ,_,_19_115; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 the coffins of captured Israeli soldiers ;;; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72 0.37970 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template {rel} {arg1} dobj> {arg2} 0.3797 Hezbollah ;;; Hezbollah_NNP_5_18 transferred Eldad Regev as well as the remains 199 Lebanese Palestinians ;;; transferred_VBD_6_28; Eldad_NNP_17_103; Regev_NNP_18_109; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 the coffins of captured Israeli soldiers ;;; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72 0.37970 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template {rel} {arg1} dobj> {arg2} 0.3797 Hezbollah ;;; Hezbollah_NNP_5_18 transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians ;;; transferred_VBD_6_28; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 Ehud Goldwasser and Eldad Regev ;;; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109 0.37970 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0961 Hezbollah ;;; Hezbollah_NNP_28_161 be members during ;;; members_NN_29_171 the 2006 Lebanon War ;;; the_DT_34_205; 2006_CD_35_209; Lebanon_NNP_36_214; War_NNP_37_222 0.09610 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Ehud Goldwasser and Eldad Regev ;;; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109 be transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians in ;;; transferred_VBD_6_28; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 exchange ;;; exchange_NN_21_120 0.01550 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Ehud Goldwasser and Eldad Regev ;;; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109 be transferred the coffins of captured Israeli soldiers as well as the remains 199 Lebanese Palestinians on ;;; transferred_VBD_6_28; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 July 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11 0.01550 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the coffins of captured Israeli soldiers ;;; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72 be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians in ;;; transferred_VBD_6_28; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109; ,_,_19_115; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 exchange ;;; exchange_NN_21_120 0.01550 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the coffins of captured Israeli soldiers ;;; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72 be transferred Ehud Goldwasser and Eldad Regev , as well as the remains 199 Lebanese Palestinians on ;;; transferred_VBD_6_28; Ehud_NNP_14_83; Goldwasser_NNP_15_88; and_CC_16_99; Eldad_NNP_17_103; Regev_NNP_18_109; ,_,_19_115; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 July 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11 0.01550 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the coffins of captured Israeli soldiers ;;; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72 be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians in ;;; transferred_VBD_6_28; Eldad_NNP_17_103; Regev_NNP_18_109; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 exchange ;;; exchange_NN_21_120 0.01550 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the coffins of captured Israeli soldiers ;;; the_DT_7_40; coffins_NN_8_44; of_IN_9_52; captured_VBN_10_55; Israeli_JJ_11_64; soldiers_NN_12_72 be transferred Eldad Regev as well as the remains 199 Lebanese Palestinians on ;;; transferred_VBD_6_28; Eldad_NNP_17_103; Regev_NNP_18_109; as_RB_39_228; well_RB_40_231; as_IN_41_236; the_DT_42_239; remains_NN_43_243; 199_CD_45_254; Lebanese_JJ_46_258; Palestinians_NNP_48_271 July 16 2008 ;;; July_NNP_1_3; 16_CD_2_8; 2008_CD_3_11 0.01550 None None 0 pobj(On_IN_0_0, July_NNP_1_3); num(July_NNP_1_3, 2008_CD_3_11); number(2008_CD_3_11, 16_CD_2_8); prep(transferred_VBD_6_28, On_IN_0_0); punct(transferred_VBD_6_28, ,_,_4_16); nsubj(transferred_VBD_6_28, Hezbollah_NNP_5_18); dobj(transferred_VBD_6_28, coffins_NNS_8_44); punct(transferred_VBD_6_28, ,_,_13_81); dobj(transferred_VBD_6_28, Goldwasser_NNP_15_88); prep(transferred_VBD_6_28, in_IN_20_117); punct(transferred_VBD_6_28, ,_,_38_226); advmod(transferred_VBD_6_28, well_RB_40_231); punct(transferred_VBD_6_28, ._._49_284); det(coffins_NNS_8_44, the_DT_7_40); prep(coffins_NNS_8_44, of_IN_9_52); pobj(of_IN_9_52, soldiers_NNS_12_72); amod(soldiers_NNS_12_72, captured_VBN_10_55); amod(soldiers_NNS_12_72, Israeli_JJ_11_64); nn(Goldwasser_NNP_15_88, Ehud_NNP_14_83); cc(Goldwasser_NNP_15_88, and_CC_16_99); conj(Goldwasser_NNP_15_88, Regev_NNP_18_109); punct(Goldwasser_NNP_15_88, ,_,_19_115); nn(Regev_NNP_18_109, Eldad_NNP_17_103); pobj(in_IN_20_117, exchange_NN_21_120); prep(exchange_NN_21_120, for_IN_22_129); pobj(for_IN_22_129, Kuntar_NNP_24_139); nn(Kuntar_NNP_24_139, Samir_NNP_23_133); cc(Kuntar_NNP_24_139, and_CC_25_146); conj(Kuntar_NNP_24_139, members_NNS_29_171); num(members_NNS_29_171, four_CD_26_150); amod(members_NNS_29_171, other_JJ_27_155); nn(members_NNS_29_171, Hezbollah_NNP_28_161); dep(members_NNS_29_171, captured_VBN_30_179); prep(members_NNS_29_171, during_IN_33_198); prep(captured_VBN_30_179, by_IN_31_188); pobj(by_IN_31_188, Israel_NNP_32_191); pobj(during_IN_33_198, War_NNP_37_222); det(War_NNP_37_222, the_DT_34_205); num(War_NNP_37_222, 2006_CD_35_209); nn(War_NNP_37_222, Lebanon_NNP_36_214); advmod(well_RB_40_231, as_RB_39_228); dep(well_RB_40_231, as_IN_41_236); dep(well_RB_40_231, remains_NNS_43_243); det(remains_NNS_43_243, the_DT_42_239); prep(remains_NNS_43_243, of_IN_44_251); pobj(of_IN_44_251, Lebanese_JJ_46_258); num(Lebanese_JJ_46_258, 199_CD_45_254); cc(Lebanese_JJ_46_258, and_CC_47_267); conj(Lebanese_JJ_46_258, Palestinians_NNPS_48_271) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0086 other ;;; other_JJ_27_155 be Hezbollah members during ;;; Hezbollah_NNP_28_161; members_NN_29_171 the 2006 Lebanon War ;;; the_DT_34_205; 2006_CD_35_209; Lebanon_NNP_36_214; War_NNP_37_222 0.00860 None None 1 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Manager Bill McKechnie ;;; Manager_NNP_26_131; Bill_NNP_27_139; McKechnie_NNP_28_144 called on ;;; called_VBD_29_154 Nuxhall ;;; Nuxhall_NNP_31_164 0.73450 None None 1 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 Manager Bill McKechnie ;;; Manager_NNP_26_131; Bill_NNP_27_139; McKechnie_NNP_28_144 called to enter ;;; called_VBD_29_154; to_TO_32_172; enter_VB_33_175 the game ;;; the_DT_34_181; game_NN_35_185 0.37970 None None 1 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393 the Reds ;;; the_DT_4_13; Reds_NN_5_17 trailing 13-0 in ;;; trailing_VBG_19_92; 13-0_CD_20_101 the ninth inning ;;; the_DT_22_109; ninth_JJ_23_113; inning_NN_24_119 0.03930 when_Manager Bill McKechnie called on Nuxhall to enter the game_25_35 None 1 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393 the Reds ;;; the_DT_4_13; Reds_NN_5_17 were playing the first place St . Louis Cardinals at ;;; were_VBD_6_22; playing_VBG_7_27; the_DT_8_35; first_JJ_9_39; place_NN_10_45; St_NNP_11_51; ._._12_53; Louis_NNP_13_55; Cardinals_NNP_14_61 Crosley Field ;;; Crosley_NNP_16_74; Field_NNP_17_82 0.03930 None None 1 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0393 the Reds ;;; the_DT_4_13; Reds_NN_5_17 were playing the first place St . Louis Cardinals on ;;; were_VBD_6_22; playing_VBG_7_27; the_DT_8_35; first_JJ_9_39; place_NN_10_45; St_NNP_11_51; ._._12_53; Louis_NNP_13_55; Cardinals_NNP_14_61 June 10 ;;; June_NNP_1_3; 10_CD_2_8 0.03930 None None 1 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template {rel} {arg1} dobj> {arg2} 0.0292 the Reds ;;; the_DT_4_13; Reds_NN_5_17 trailing ;;; trailing_VBG_19_92 13-0 ;;; 13-0_CD_20_101 0.02920 when_Manager Bill McKechnie called on Nuxhall to enter the game_25_35 None 1 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template {rel} {arg1} dobj> {arg2} 0.0292 the Reds ;;; the_DT_4_13; Reds_NN_5_17 were playing ;;; were_VBD_6_22; playing_VBG_7_27 the first place St . Louis Cardinals ;;; the_DT_8_35; first_JJ_9_39; place_NN_10_45; St_NNP_11_51; ._._12_53; Louis_NNP_13_55; Cardinals_NNP_14_61 0.02920 None None 0 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0195 Manager Bill McKechnie ;;; Manager_NNP_26_131; Bill_NNP_27_139; McKechnie_NNP_28_144 to enter ;;; to_TO_32_172; enter_VB_33_175 the game ;;; the_DT_34_181; game_NN_35_185 0.01950 None None 0 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 13-0 ;;; 13-0_CD_20_101 be trailing in ;;; trailing_VBG_19_92 the ninth inning ;;; the_DT_22_109; ninth_JJ_23_113; inning_NN_24_119 0.00790 when_Manager Bill McKechnie called on Nuxhall to enter the game_25_35 None 1 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 the first place St . Louis Cardinals ;;; the_DT_8_35; first_JJ_9_39; place_NN_10_45; St_NNP_11_51; ._._12_53; Louis_NNP_13_55; Cardinals_NNP_14_61 were playing at ;;; were_VBD_6_22; playing_VBG_7_27 Crosley Field ;;; Crosley_NNP_16_74; Field_NNP_17_82 0.00790 None None 1 pobj(On_IN_0_0, June_NNP_1_3); num(June_NNP_1_3, 10_CD_2_8); det(Reds_NNS_5_17, the_DT_4_13); prep(playing_VBG_7_27, On_IN_0_0); punct(playing_VBG_7_27, ,_,_3_11); nsubj(playing_VBG_7_27, Reds_NNS_5_17); aux(playing_VBG_7_27, were_VBD_6_22); dobj(playing_VBG_7_27, Cardinals_NNP_14_61); prep(playing_VBG_7_27, at_IN_15_71); cc(playing_VBG_7_27, and_CC_18_88); conj(playing_VBG_7_27, trailing_VBG_19_92); punct(playing_VBG_7_27, ._._36_190); det(Cardinals_NNP_14_61, the_DT_8_35); amod(Cardinals_NNP_14_61, first_JJ_9_39); nn(Cardinals_NNP_14_61, place_NN_10_45); nn(Cardinals_NNP_14_61, St_NNP_11_51); punct(Cardinals_NNP_14_61, ._._12_53); nn(Cardinals_NNP_14_61, Louis_NNP_13_55); pobj(at_IN_15_71, Field_NNP_17_82); nn(Field_NNP_17_82, Crosley_NNP_16_74); dobj(trailing_VBG_19_92, 13-0_CD_20_101); prep(trailing_VBG_19_92, in_IN_21_106); advcl(trailing_VBG_19_92, called_VBD_29_154); pobj(in_IN_21_106, inning_NN_24_119); det(inning_NN_24_119, the_DT_22_109); amod(inning_NN_24_119, ninth_JJ_23_113); nn(McKechnie_NNP_28_144, Manager_NNP_26_131); nn(McKechnie_NNP_28_144, Bill_NNP_27_139); advmod(called_VBD_29_154, when_WRB_25_126); nsubj(called_VBD_29_154, McKechnie_NNP_28_144); prep(called_VBD_29_154, on_IN_30_161); xcomp(called_VBD_29_154, enter_VB_33_175); pobj(on_IN_30_161, Nuxhall_NNP_31_164); aux(enter_VB_33_175, to_TO_32_172); dobj(enter_VB_33_175, game_NN_35_185); det(game_NN_35_185, the_DT_34_181) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 the first place St . Louis Cardinals ;;; the_DT_8_35; first_JJ_9_39; place_NN_10_45; St_NNP_11_51; ._._12_53; Louis_NNP_13_55; Cardinals_NNP_14_61 were playing on ;;; were_VBD_6_22; playing_VBG_7_27 June 10 ;;; June_NNP_1_3; 10_CD_2_8 0.00790 None None 1 pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_6_23 married natural resources attorney Susan Daggett in ;;; married_VBD_7_26; natural_JJ_8_34; resources_NN_9_42; attorney_NN_10_52; Susan_NNP_11_61; Daggett_NNP_12_67 Marianna ;;; Marianna_NNP_14_78 0.73450 None None 1 pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_6_23 married natural resources attorney Susan Daggett on ;;; married_VBD_7_26; natural_JJ_8_34; resources_NN_9_42; attorney_NN_10_52; Susan_NNP_11_61; Daggett_NNP_12_67 October 26 , 1997 ;;; October_NNP_1_3; 26_CD_2_11; ,_,_3_14; 1997_CD_4_16 0.73450 None None 1 pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) Template {rel} {arg1} dobj> {arg2} 0.3797 he ;;; he_PRP_6_23 married ;;; married_VBD_7_26 natural resources attorney Susan Daggett ;;; natural_JJ_8_34; resources_NN_9_42; attorney_NN_10_52; Susan_NNP_11_61; Daggett_NNP_12_67 0.37970 None None 1 pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 natural resources attorney Susan Daggett ;;; natural_JJ_8_34; resources_NN_9_42; attorney_NN_10_52; Susan_NNP_11_61; Daggett_NNP_12_67 be married in ;;; married_VBD_7_26 Marianna ;;; Marianna_NNP_14_78 0.01550 None None 1 pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 natural resources attorney Susan Daggett ;;; natural_JJ_8_34; resources_NN_9_42; attorney_NN_10_52; Susan_NNP_11_61; Daggett_NNP_12_67 be married on ;;; married_VBD_7_26 October 26 , 1997 ;;; October_NNP_1_3; 26_CD_2_11; ,_,_3_14; 1997_CD_4_16 0.01550 None None 1 pobj(On_IN_0_0, October_NNP_1_3); num(October_NNP_1_3, 26_CD_2_11); punct(October_NNP_1_3, ,_,_3_14); num(October_NNP_1_3, 1997_CD_4_16); prep(married_VBD_7_26, On_IN_0_0); punct(married_VBD_7_26, ,_,_5_21); nsubj(married_VBD_7_26, he_PRP_6_23); dobj(married_VBD_7_26, Daggett_NNP_12_67); prep(married_VBD_7_26, in_IN_13_75); punct(married_VBD_7_26, ._._17_97); amod(Daggett_NNP_12_67, natural_JJ_8_34); nn(Daggett_NNP_12_67, resources_NNS_9_42); nn(Daggett_NNP_12_67, attorney_NN_10_52); nn(Daggett_NNP_12_67, Susan_NNP_11_61); pobj(in_IN_13_75, Marianna_NNP_14_78); punct(Marianna_NNP_14_78, ,_,_15_86); appos(Marianna_NNP_14_78, Arkansas_NNP_16_88) Template {rel} {arg1} prep_in> {arg2} 0.0079 he ;;; he_PRP_6_23 married natural resources attorney Susan Daggett ;;; married_VBD_7_26; natural_JJ_8_34; resources_NN_9_42; attorney_NN_10_52; Susan_NNP_11_61; Daggett_NNP_12_67 Marianna ;;; Marianna_NNP_14_78 0.00790 None None 1 pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) Template {rel} {arg1} dobj> {arg2} 0.1473 we ;;; we_PRP_5_18 can not fully explain ;;; can_MD_6_21; not_RB_7_25; fully_RB_8_29; explain_VB_9_35 a higher level of order ;;; a_DT_10_43; higher_JJR_11_45; level_NN_12_52; of_IN_13_58; order_NN_14_61 0.14730 None None 0 pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 we ;;; we_PRP_5_18 can not fully explain a higher level of order on ;;; can_MD_6_21; not_RB_7_25; fully_RB_8_29; explain_VB_9_35; a_DT_10_43; higher_JJR_11_45; level_NN_12_52; of_IN_13_58; order_NN_14_61 the one hand ;;; the_DT_1_3; one_CD_2_7; hand_NN_3_11 0.13490 None None 0 pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a higher level of order ;;; a_DT_10_43; higher_JJR_11_45; level_NN_12_52; of_IN_13_58; order_NN_14_61 can be not fully explain on ;;; can_MD_6_21; not_RB_7_25; fully_RB_8_29; explain_VB_9_35 the one hand ;;; the_DT_1_3; one_CD_2_7; hand_NN_3_11 0.01320 None None 0 pobj(On_IN_0_0, hand_NN_3_11); det(hand_NN_3_11, the_DT_1_3); num(hand_NN_3_11, one_CD_2_7); prep(explain_VB_9_35, On_IN_0_0); punct(explain_VB_9_35, ,_,_4_16); nsubj(explain_VB_9_35, we_PRP_5_18); aux(explain_VB_9_35, can_MD_6_21); neg(explain_VB_9_35, not_RB_7_25); advmod(explain_VB_9_35, fully_RB_8_29); dobj(explain_VB_9_35, level_NN_12_52); prep(explain_VB_9_35, by_IN_15_67); punct(explain_VB_9_35, ._._22_102); det(level_NN_12_52, a_DT_10_43); amod(level_NN_12_52, higher_JJR_11_45); prep(level_NN_12_52, of_IN_13_58); pobj(of_IN_13_58, order_NN_14_61); pcomp(by_IN_15_67, breaking_VBG_16_70); dobj(breaking_VBG_16_70, it_PRP_17_79); advmod(breaking_VBG_16_70, down_IN_18_82); prep(breaking_VBG_16_70, into_IN_19_87); pobj(into_IN_19_87, parts_NNS_21_96); poss(parts_NNS_21_96, its_PRP$_20_92) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 it ;;; it_PRP_17_79 be breaking into ;;; breaking_VBG_16_70 its parts ;;; its_PRP$_20_92; parts_NN_21_96 0.00790 None None 1 nn(slits_NNS_1_11, Pharyngeal_NNP_0_0); nsubj(function_VBP_2_17, slits_NNS_1_11); prep(function_VBP_2_17, as_IN_3_26); punct(function_VBP_2_17, ._._10_87); pobj(as_IN_3_26, devices_NNS_5_48); amod(devices_NNS_5_48, suspension-feeding_JJ_4_29); prep(devices_NNS_5_48, in_IN_6_56); pobj(in_IN_6_56, chordates_NNS_9_77); amod(chordates_NNS_9_77, many_JJ_7_59); amod(chordates_NNS_9_77, invertebrate_JJ_8_64) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 Pharyngeal slits ;;; Pharyngeal_NNP_0_0; slits_NN_1_11 function as ;;; function_VBP_2_17 suspension-feeding devices ;;; suspension-feeding_JJ_4_29; devices_NN_5_48 0.03070 None None 1 nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 Plouzani ;;; Plouzani_NNP_0_0 is a commune in ;;; is_VBZ_1_9; a_DT_2_12; commune_NN_3_14 northwestern France ;;; northwestern_JJ_11_64; France_NNP_12_77 0.95550 None None 1 nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 Plouzani ;;; Plouzani_NNP_0_0 is a commune in ;;; is_VBZ_1_9; a_DT_2_12; commune_NN_3_14 the Finistre department ;;; the_DT_5_25; Finistre_NNP_6_29; department_NN_7_38 0.95550 None None 1 nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) Template be {rel} {prep} {arg1:postag=NNP} {prep:regex=prep_(.*)}> {arg2:postag=NNP} 0.0961 Finistre ;;; Finistre_NNP_6_29 be department in ;;; department_NN_7_38 Bretagne ;;; Bretagne_NNP_9_52 0.09610 None None 1 nsubj(commune_NN_3_14, Plouzani_NNP_0_0); cop(commune_NN_3_14, is_VBZ_1_9); det(commune_NN_3_14, a_DT_2_12); prep(commune_NN_3_14, in_IN_4_22); prep(commune_NN_3_14, in_IN_10_61); punct(commune_NN_3_14, ._._13_84); pobj(in_IN_4_22, department_NN_7_38); det(department_NN_7_38, the_DT_5_25); nn(department_NN_7_38, Finistre_NNP_6_29); prep(department_NN_7_38, in_IN_8_49); pobj(in_IN_8_49, Bretagne_NNP_9_52); pobj(in_IN_10_61, France_NNP_12_77); amod(France_NNP_12_77, northwestern_JJ_11_64) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Plouzani ;;; Plouzani_NNP_0_0 is ;;; is_VBZ_1_9 a commune ;;; a_DT_2_12; commune_NN_3_14 0.00840 None None 0 prep(Populations_NNS_0_0, of_IN_1_12); pobj(of_IN_1_12, species_NNS_3_19); det(species_NNS_3_19, all_DT_2_15); nsubj(have_VBP_4_27, Populations_NNS_0_0); dobj(have_VBP_4_27, potential_JJ_6_36); punct(have_VBP_4_27, ._._14_92); det(potential_JJ_6_36, the_DT_5_32); xcomp(potential_JJ_6_36, expand_VB_8_49); aux(expand_VB_8_49, to_TO_7_46); advmod(expand_VB_8_49, greatly_RB_9_56); advcl(expand_VB_8_49, abundant_JJ_13_83); advmod(abundant_JJ_13_83, when_WRB_10_64); nsubj(abundant_JJ_13_83, resources_NNS_11_69); cop(abundant_JJ_13_83, are_VBP_12_79) Template {rel} {arg1} dobj> {arg2} 0.0416 Populations of all species ;;; Populations_NN_0_0; of_IN_1_12; all_DT_2_15; species_NN_3_19 have ;;; have_VBP_4_27 the potential ;;; the_DT_5_32; potential_JJ_6_36 0.04160 None None 1 preconj(M_NNP_3_14, both_DT_2_9); cc(M_NNP_3_14, and_CC_4_16); conj(M_NNP_3_14, phenotypes_NNS_6_22); nn(phenotypes_NNS_6_22, N_NNP_5_20); advmod(exhibited_VBN_8_37, Rather_RB_0_0); punct(exhibited_VBN_8_37, ,_,_1_7); nsubjpass(exhibited_VBN_8_37, M_NNP_3_14); auxpass(exhibited_VBN_8_37, are_VBP_7_33); prep(exhibited_VBN_8_37, by_IN_9_47); punct(exhibited_VBN_8_37, ,_,_11_64); advcl(exhibited_VBN_8_37, present_JJ_16_91); punct(exhibited_VBN_8_37, ._._17_99); pobj(by_IN_9_47, heterozygotes_NNS_10_50); det(molecules_NNS_14_77, both_DT_13_72); mark(present_JJ_16_91, since_IN_12_66); nsubj(present_JJ_16_91, molecules_NNS_14_77); cop(present_JJ_16_91, are_VBP_15_87) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 M and N phenotypes ;;; M_NNP_3_14; and_CC_4_16; N_NNP_5_20; phenotypes_NN_6_22 Rather are exhibited by ;;; Rather_RB_0_0; are_VBP_7_33; exhibited_VBN_8_37 heterozygotes ;;; heterozygotes_NN_10_50 1.00000 since_both molecules are present_12_16 None 0 cc(Read_NNP_0_0, and_CC_1_5); conj(Read_NNP_0_0, analyze_VB_2_9); punct(Read_NNP_0_0, :_:_10_57); dep(Read_NNP_0_0, Papers_NNP_13_83); punct(Read_NNP_0_0, ._._14_90); dobj(analyze_VB_2_9, paper_NN_5_30); prep(analyze_VB_2_9, in_IN_6_36); det(paper_NN_5_30, the_DT_3_17); amod(paper_NN_5_30, original_JJ_4_21); pobj(in_IN_6_36, Inquiry_NNP_7_39); prep(Inquiry_NNP_7_39, in_IN_8_47); pobj(in_IN_8_47, Action_NNP_9_50); nn(Papers_NNP_13_83, Interpreting_NNP_11_59); nn(Papers_NNP_13_83, Scientific_NNP_12_72) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 the original paper ;;; the_DT_3_17; original_JJ_4_21; paper_NN_5_30 be analyze in ;;; analyze_VB_2_9 Inquiry ;;; Inquiry_NNP_7_39 0.01320 None None 1 prep(Relative_JJ_0_0, to_TO_1_9); pobj(to_TO_1_9, mammals_NNS_3_18); amod(mammals_NNS_3_18, other_JJ_2_12); dep(have_VBP_6_37, Relative_JJ_0_0); punct(have_VBP_6_37, ,_,_4_26); nsubj(have_VBP_6_37, primates_NNS_5_28); dobj(have_VBP_6_37, brain_NN_9_50); punct(have_VBP_6_37, ,_,_13_71); xcomp(have_VBP_6_37, giving_VBG_14_73); punct(have_VBP_6_37, ._._19_97); det(brain_NN_9_50, a_DT_7_42); amod(brain_NN_9_50, large_JJ_8_44); cc(brain_NN_9_50, and_CC_10_56); conj(brain_NN_9_50, jaws_NNS_12_66); amod(jaws_NNS_12_66, short_JJ_11_60); iobj(giving_VBG_14_73, them_PRP_15_80); dobj(giving_VBG_14_73, face_NN_18_92); det(face_NN_18_92, a_DT_16_85); amod(face_NN_18_92, flat_JJ_17_87) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.0416 primates ;;; primates_NN_5_28 have a large brain giving them ;;; have_VBP_6_37; a_DT_7_42; large_JJ_8_44; brain_NN_9_50; giving_VBG_14_73; them_PRP_15_80 a flat face ;;; a_DT_16_85; flat_JJ_17_87; face_NN_18_92 0.04160 None None 1 prep(Relative_JJ_0_0, to_TO_1_9); pobj(to_TO_1_9, mammals_NNS_3_18); amod(mammals_NNS_3_18, other_JJ_2_12); dep(have_VBP_6_37, Relative_JJ_0_0); punct(have_VBP_6_37, ,_,_4_26); nsubj(have_VBP_6_37, primates_NNS_5_28); dobj(have_VBP_6_37, brain_NN_9_50); punct(have_VBP_6_37, ,_,_13_71); xcomp(have_VBP_6_37, giving_VBG_14_73); punct(have_VBP_6_37, ._._19_97); det(brain_NN_9_50, a_DT_7_42); amod(brain_NN_9_50, large_JJ_8_44); cc(brain_NN_9_50, and_CC_10_56); conj(brain_NN_9_50, jaws_NNS_12_66); amod(jaws_NNS_12_66, short_JJ_11_60); iobj(giving_VBG_14_73, them_PRP_15_80); dobj(giving_VBG_14_73, face_NN_18_92); det(face_NN_18_92, a_DT_16_85); amod(face_NN_18_92, flat_JJ_17_87) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.0416 primates ;;; primates_NN_5_28 have short jaws giving them ;;; have_VBP_6_37; short_JJ_11_60; jaws_NN_12_66; giving_VBG_14_73; them_PRP_15_80 a flat face ;;; a_DT_16_85; flat_JJ_17_87; face_NN_18_92 0.04160 None None 1 prep(Relative_JJ_0_0, to_TO_1_9); pobj(to_TO_1_9, mammals_NNS_3_18); amod(mammals_NNS_3_18, other_JJ_2_12); dep(have_VBP_6_37, Relative_JJ_0_0); punct(have_VBP_6_37, ,_,_4_26); nsubj(have_VBP_6_37, primates_NNS_5_28); dobj(have_VBP_6_37, brain_NN_9_50); punct(have_VBP_6_37, ,_,_13_71); xcomp(have_VBP_6_37, giving_VBG_14_73); punct(have_VBP_6_37, ._._19_97); det(brain_NN_9_50, a_DT_7_42); amod(brain_NN_9_50, large_JJ_8_44); cc(brain_NN_9_50, and_CC_10_56); conj(brain_NN_9_50, jaws_NNS_12_66); amod(jaws_NNS_12_66, short_JJ_11_60); iobj(giving_VBG_14_73, them_PRP_15_80); dobj(giving_VBG_14_73, face_NN_18_92); det(face_NN_18_92, a_DT_16_85); amod(face_NN_18_92, flat_JJ_17_87) Template {rel} {arg1} dobj> {arg2} 0.0416 primates ;;; primates_NN_5_28 have ;;; have_VBP_6_37 a large brain and short jaws ;;; a_DT_7_42; large_JJ_8_44; brain_NN_9_50; and_CC_10_56; short_JJ_11_60; jaws_NN_12_66 0.04160 None None 1 prep(Researchers_NNS_0_0, with_IN_1_12); pobj(with_IN_1_12, Service_NNP_5_37); det(Service_NNP_5_37, the_DT_2_17); nn(Service_NNP_5_37, Canadian_NNP_3_21); nn(Service_NNP_5_37, Forest_NNP_4_30); nsubj(placed_VBD_6_45, Researchers_NNS_0_0); dobj(placed_VBD_6_45, samples_NNS_8_62); prep(placed_VBD_6_45, on_IN_15_103); punct(placed_VBD_6_45, ._._23_143); amod(samples_NNS_8_62, identical_JJ_7_52); prep(samples_NNS_8_62, of_IN_9_70); dep(samples_NNS_8_62, litter_JJ_13_93); pobj(of_IN_9_70, material_NN_11_81); amod(material_NN_11_81, organic_JJ_10_73); punct(litter_JJ_13_93, --_:_12_90); punct(litter_JJ_13_93, --_:_14_100); pobj(on_IN_15_103, ground_NN_17_110); det(ground_NN_17_110, the_DT_16_106); prep(ground_NN_17_110, in_IN_18_117); pobj(in_IN_18_117, sites_NNS_20_123); num(sites_NNS_20_123, 21_CD_19_120); prep(sites_NNS_20_123, across_IN_21_129); pobj(across_IN_21_129, Canada_NNP_22_136) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Researchers ;;; Researchers_NN_0_0 placed identical samples of organic material -- litter -- on ;;; placed_VBD_6_45; identical_JJ_7_52; samples_NN_8_62; of_IN_9_70; organic_JJ_10_73; material_NN_11_81; --_:_12_90; litter_JJ_13_93; --_:_14_100 the ground ;;; the_DT_16_106; ground_NN_17_110 0.73450 None None 1 prep(Researchers_NNS_0_0, with_IN_1_12); pobj(with_IN_1_12, Service_NNP_5_37); det(Service_NNP_5_37, the_DT_2_17); nn(Service_NNP_5_37, Canadian_NNP_3_21); nn(Service_NNP_5_37, Forest_NNP_4_30); nsubj(placed_VBD_6_45, Researchers_NNS_0_0); dobj(placed_VBD_6_45, samples_NNS_8_62); prep(placed_VBD_6_45, on_IN_15_103); punct(placed_VBD_6_45, ._._23_143); amod(samples_NNS_8_62, identical_JJ_7_52); prep(samples_NNS_8_62, of_IN_9_70); dep(samples_NNS_8_62, litter_JJ_13_93); pobj(of_IN_9_70, material_NN_11_81); amod(material_NN_11_81, organic_JJ_10_73); punct(litter_JJ_13_93, --_:_12_90); punct(litter_JJ_13_93, --_:_14_100); pobj(on_IN_15_103, ground_NN_17_110); det(ground_NN_17_110, the_DT_16_106); prep(ground_NN_17_110, in_IN_18_117); pobj(in_IN_18_117, sites_NNS_20_123); num(sites_NNS_20_123, 21_CD_19_120); prep(sites_NNS_20_123, across_IN_21_129); pobj(across_IN_21_129, Canada_NNP_22_136) Template {rel} {arg1} dobj> {arg2} 0.3797 Researchers ;;; Researchers_NN_0_0 placed ;;; placed_VBD_6_45 identical samples of organic material ;;; identical_JJ_7_52; samples_NN_8_62; of_IN_9_70; organic_JJ_10_73; material_NN_11_81 0.37970 None None 1 prep(Researchers_NNS_0_0, with_IN_1_12); pobj(with_IN_1_12, Service_NNP_5_37); det(Service_NNP_5_37, the_DT_2_17); nn(Service_NNP_5_37, Canadian_NNP_3_21); nn(Service_NNP_5_37, Forest_NNP_4_30); nsubj(placed_VBD_6_45, Researchers_NNS_0_0); dobj(placed_VBD_6_45, samples_NNS_8_62); prep(placed_VBD_6_45, on_IN_15_103); punct(placed_VBD_6_45, ._._23_143); amod(samples_NNS_8_62, identical_JJ_7_52); prep(samples_NNS_8_62, of_IN_9_70); dep(samples_NNS_8_62, litter_JJ_13_93); pobj(of_IN_9_70, material_NN_11_81); amod(material_NN_11_81, organic_JJ_10_73); punct(litter_JJ_13_93, --_:_12_90); punct(litter_JJ_13_93, --_:_14_100); pobj(on_IN_15_103, ground_NN_17_110); det(ground_NN_17_110, the_DT_16_106); prep(ground_NN_17_110, in_IN_18_117); pobj(in_IN_18_117, sites_NNS_20_123); num(sites_NNS_20_123, 21_CD_19_120); prep(sites_NNS_20_123, across_IN_21_129); pobj(across_IN_21_129, Canada_NNP_22_136) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 identical samples of organic material ;;; identical_JJ_7_52; samples_NN_8_62; of_IN_9_70; organic_JJ_10_73; material_NN_11_81 be placed on ;;; placed_VBD_6_45 the ground ;;; the_DT_16_106; ground_NN_17_110 0.01550 None None 1 nsubj(dropped_VBD_1_8, Revenue_NN_0_0); dobj(dropped_VBD_1_8, %_NN_3_20); prep(dropped_VBD_1_8, to_TO_4_22); prep(dropped_VBD_1_8, from_IN_8_40); punct(dropped_VBD_1_8, ._._12_60); num(%_NN_3_20, 5.4_CD_2_16); pobj(to_TO_4_22, $_$_5_25); number($_$_5_25, 3.48_CD_6_27); number($_$_5_25, billion_CD_7_32); pobj(from_IN_8_40, $_$_9_45); number($_$_9_45, 3.68_CD_10_47); number($_$_9_45, billion_CD_11_52) Template {rel} {arg1} dobj> {arg2} 0.3797 Revenue ;;; Revenue_NN_0_0 dropped ;;; dropped_VBD_1_8 5.4 % ;;; 5.4_CD_2_16; %_NN_3_20 0.37970 None None 1 nn(Sim_NNP_2_11, Richard_NNP_0_0); nn(Sim_NNP_2_11, G._NNP_1_8); punct(Sim_NNP_2_11, ,_,_3_15); det(man_NN_5_21, the_DT_4_17); nsubjpass(credited_VBD_6_25, Sim_NNP_2_11); nsubj(credited_VBD_6_25, man_NN_5_21); prep(credited_VBD_6_25, with_IN_7_34); punct(credited_VBD_6_25, ,_,_26_155); dep(credited_VBD_6_25, Corp_NNP_42_245); punct(credited_VBD_6_25, ._._43_250); pcomp(with_IN_7_34, transforming_VBG_8_39); dobj(transforming_VBG_8_39, Inc._NNP_11_66); prep(transforming_VBG_8_39, from_IN_12_71); prep(transforming_VBG_8_39, into_IN_15_93); prep(transforming_VBG_8_39, in_IN_19_114); nn(Inc._NNP_11_66, Applied_NNP_9_52); nn(Inc._NNP_11_66, Power_NNP_10_60); pobj(from_IN_12_71, underachiever_RB_14_79); det(underachiever_RB_14_79, an_DT_13_76); pobj(into_IN_15_93, player_NN_18_107); det(player_NN_18_107, a_DT_16_98); amod(player_NN_18_107, feisty_JJ_17_100); pobj(in_IN_19_114, market_NN_22_128); det(market_NN_22_128, the_DT_20_117); amod(market_NN_22_128, global_JJ_21_121); prep(market_NN_22_128, for_IN_23_135); pobj(for_IN_23_135, tools_NNS_25_149); amod(tools_NNS_25_149, hydraulic_JJ_24_139); xcomp(hopes_VBZ_27_157, guide_VB_29_166); aux(guide_VB_29_166, to_TO_28_163); dobj(guide_VB_29_166, turnaround_NN_32_182); prep(guide_VB_29_166, at_IN_33_193); det(turnaround_NN_32_182, a_DT_30_172); amod(turnaround_NN_32_182, similar_JJ_31_174); pobj(at_IN_33_193, acquisition_NN_38_218); det(company_NN_35_200, the_DT_34_196); possessive(company_NN_35_200, 's_POS_36_208); poss(acquisition_NN_38_218, company_NN_35_200); amod(acquisition_NN_38_218, latest_JJS_37_211); dep(Corp_NNP_42_245, hopes_VBZ_27_157); punct(Corp_NNP_42_245, ,_,_39_230); nn(Corp_NNP_42_245, Barry_NNP_40_232); nn(Corp_NNP_42_245, Wright_NNP_41_238) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 a similar turnaround ;;; a_DT_30_172; similar_JJ_31_174; turnaround_NN_32_182 to be guide at ;;; to_TO_28_163; guide_VB_29_166 the company 's latest acquisition ;;; the_DT_34_196; company_NN_35_200; 's_POS_36_208; latest_JJ_37_211; acquisition_NN_38_218 0.01320 None None 1 nn(Sim_NNP_2_11, Richard_NNP_0_0); nn(Sim_NNP_2_11, G._NNP_1_8); punct(Sim_NNP_2_11, ,_,_3_15); det(man_NN_5_21, the_DT_4_17); nsubjpass(credited_VBD_6_25, Sim_NNP_2_11); nsubj(credited_VBD_6_25, man_NN_5_21); prep(credited_VBD_6_25, with_IN_7_34); punct(credited_VBD_6_25, ,_,_26_155); dep(credited_VBD_6_25, Corp_NNP_42_245); punct(credited_VBD_6_25, ._._43_250); pcomp(with_IN_7_34, transforming_VBG_8_39); dobj(transforming_VBG_8_39, Inc._NNP_11_66); prep(transforming_VBG_8_39, from_IN_12_71); prep(transforming_VBG_8_39, into_IN_15_93); prep(transforming_VBG_8_39, in_IN_19_114); nn(Inc._NNP_11_66, Applied_NNP_9_52); nn(Inc._NNP_11_66, Power_NNP_10_60); pobj(from_IN_12_71, underachiever_RB_14_79); det(underachiever_RB_14_79, an_DT_13_76); pobj(into_IN_15_93, player_NN_18_107); det(player_NN_18_107, a_DT_16_98); amod(player_NN_18_107, feisty_JJ_17_100); pobj(in_IN_19_114, market_NN_22_128); det(market_NN_22_128, the_DT_20_117); amod(market_NN_22_128, global_JJ_21_121); prep(market_NN_22_128, for_IN_23_135); pobj(for_IN_23_135, tools_NNS_25_149); amod(tools_NNS_25_149, hydraulic_JJ_24_139); xcomp(hopes_VBZ_27_157, guide_VB_29_166); aux(guide_VB_29_166, to_TO_28_163); dobj(guide_VB_29_166, turnaround_NN_32_182); prep(guide_VB_29_166, at_IN_33_193); det(turnaround_NN_32_182, a_DT_30_172); amod(turnaround_NN_32_182, similar_JJ_31_174); pobj(at_IN_33_193, acquisition_NN_38_218); det(company_NN_35_200, the_DT_34_196); possessive(company_NN_35_200, 's_POS_36_208); poss(acquisition_NN_38_218, company_NN_35_200); amod(acquisition_NN_38_218, latest_JJS_37_211); dep(Corp_NNP_42_245, hopes_VBZ_27_157); punct(Corp_NNP_42_245, ,_,_39_230); nn(Corp_NNP_42_245, Barry_NNP_40_232); nn(Corp_NNP_42_245, Wright_NNP_41_238) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 Applied Power Inc. ;;; Applied_NNP_9_52; Power_NNP_10_60; Inc._NNP_11_66 be transforming in ;;; transforming_VBG_8_39 the global market ;;; the_DT_20_117; global_JJ_21_121; market_NN_22_128 0.00790 None None 1 nn(Sim_NNP_2_11, Richard_NNP_0_0); nn(Sim_NNP_2_11, G._NNP_1_8); punct(Sim_NNP_2_11, ,_,_3_15); det(man_NN_5_21, the_DT_4_17); nsubjpass(credited_VBD_6_25, Sim_NNP_2_11); nsubj(credited_VBD_6_25, man_NN_5_21); prep(credited_VBD_6_25, with_IN_7_34); punct(credited_VBD_6_25, ,_,_26_155); dep(credited_VBD_6_25, Corp_NNP_42_245); punct(credited_VBD_6_25, ._._43_250); pcomp(with_IN_7_34, transforming_VBG_8_39); dobj(transforming_VBG_8_39, Inc._NNP_11_66); prep(transforming_VBG_8_39, from_IN_12_71); prep(transforming_VBG_8_39, into_IN_15_93); prep(transforming_VBG_8_39, in_IN_19_114); nn(Inc._NNP_11_66, Applied_NNP_9_52); nn(Inc._NNP_11_66, Power_NNP_10_60); pobj(from_IN_12_71, underachiever_RB_14_79); det(underachiever_RB_14_79, an_DT_13_76); pobj(into_IN_15_93, player_NN_18_107); det(player_NN_18_107, a_DT_16_98); amod(player_NN_18_107, feisty_JJ_17_100); pobj(in_IN_19_114, market_NN_22_128); det(market_NN_22_128, the_DT_20_117); amod(market_NN_22_128, global_JJ_21_121); prep(market_NN_22_128, for_IN_23_135); pobj(for_IN_23_135, tools_NNS_25_149); amod(tools_NNS_25_149, hydraulic_JJ_24_139); xcomp(hopes_VBZ_27_157, guide_VB_29_166); aux(guide_VB_29_166, to_TO_28_163); dobj(guide_VB_29_166, turnaround_NN_32_182); prep(guide_VB_29_166, at_IN_33_193); det(turnaround_NN_32_182, a_DT_30_172); amod(turnaround_NN_32_182, similar_JJ_31_174); pobj(at_IN_33_193, acquisition_NN_38_218); det(company_NN_35_200, the_DT_34_196); possessive(company_NN_35_200, 's_POS_36_208); poss(acquisition_NN_38_218, company_NN_35_200); amod(acquisition_NN_38_218, latest_JJS_37_211); dep(Corp_NNP_42_245, hopes_VBZ_27_157); punct(Corp_NNP_42_245, ,_,_39_230); nn(Corp_NNP_42_245, Barry_NNP_40_232); nn(Corp_NNP_42_245, Wright_NNP_41_238) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 Applied Power Inc. ;;; Applied_NNP_9_52; Power_NNP_10_60; Inc._NNP_11_66 be transforming into ;;; transforming_VBG_8_39 a feisty player ;;; a_DT_16_98; feisty_JJ_17_100; player_NN_18_107 0.00790 None None 1 nn(meristems_NNS_2_12, Root_NNP_0_0); amod(meristems_NNS_2_12, apical_JJ_1_5); nsubj(produce_VBP_4_27, meristems_NNS_2_12); advmod(produce_VBP_4_27, also_RB_3_22); dobj(produce_VBP_4_27, auxin_NN_5_35); punct(produce_VBP_4_27, ,_,_6_41); advcl(produce_VBP_4_27, depends_VBZ_10_61); punct(produce_VBP_4_27, ._._19_104); det(root_NN_9_56, the_DT_8_52); mark(depends_VBZ_10_61, although_IN_7_43); nsubj(depends_VBZ_10_61, root_NN_9_56); prep(depends_VBZ_10_61, on_IN_11_69); pobj(on_IN_11_69, shoot_NN_13_76); det(shoot_NN_13_76, the_DT_12_72); prep(shoot_NN_13_76, for_IN_14_82); pobj(for_IN_14_82, much_JJ_15_86); prep(much_JJ_15_86, of_IN_16_91); pobj(of_IN_16_91, auxin_NN_18_98); poss(auxin_NN_18_98, its_PRP$_17_94) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 the root ;;; the_DT_8_52; root_NN_9_56 depends on ;;; depends_VBZ_10_61 the shoot ;;; the_DT_12_72; shoot_NN_13_76 0.24440 None None 1 nn(meristems_NNS_2_12, Root_NNP_0_0); amod(meristems_NNS_2_12, apical_JJ_1_5); nsubj(produce_VBP_4_27, meristems_NNS_2_12); advmod(produce_VBP_4_27, also_RB_3_22); dobj(produce_VBP_4_27, auxin_NN_5_35); punct(produce_VBP_4_27, ,_,_6_41); advcl(produce_VBP_4_27, depends_VBZ_10_61); punct(produce_VBP_4_27, ._._19_104); det(root_NN_9_56, the_DT_8_52); mark(depends_VBZ_10_61, although_IN_7_43); nsubj(depends_VBZ_10_61, root_NN_9_56); prep(depends_VBZ_10_61, on_IN_11_69); pobj(on_IN_11_69, shoot_NN_13_76); det(shoot_NN_13_76, the_DT_12_72); prep(shoot_NN_13_76, for_IN_14_82); pobj(for_IN_14_82, much_JJ_15_86); prep(much_JJ_15_86, of_IN_16_91); pobj(of_IN_16_91, auxin_NN_18_98); poss(auxin_NN_18_98, its_PRP$_17_94) Template {rel} {arg1} dobj> {arg2} 0.0416 Root apical meristems ;;; Root_NNP_0_0; apical_JJ_1_5; meristems_NN_2_12 also produce ;;; also_RB_3_22; produce_VBP_4_27 auxin ;;; auxin_NN_5_35 0.04160 although_the root depends on the shoot for much of its auxin_7_18 None 0 nsubj(appears_VBZ_1_4, She_PRP_0_0); ccomp(appears_VBZ_1_4, recorded_VBN_5_24); punct(appears_VBZ_1_4, ,_,_8_44); cc(appears_VBZ_1_4, and_CC_9_46); conj(appears_VBZ_1_4, spent_VBD_10_50); punct(appears_VBZ_1_4, ,_,_30_158); punct(appears_VBZ_1_4, ._._41_228); neg(recorded_VBN_5_24, not_RB_2_12); aux(recorded_VBN_5_24, to_TO_3_16); aux(recorded_VBN_5_24, have_VB_4_19); prep(recorded_VBN_5_24, after_IN_6_33); pobj(after_IN_6_33, 1935_CD_7_39); dobj(spent_VBD_10_50, time_NN_12_61); xcomp(spent_VBD_10_50, managing_VBG_13_66); punct(spent_VBD_10_50, ,_,_19_97); appos(spent_VBD_10_50, Busters_NNP_23_119); punct(spent_VBD_10_50, ,_,_24_127); prep(spent_VBD_10_50, before_IN_25_129); det(time_NN_12_61, some_DT_11_56); dobj(managing_VBG_13_66, group_NN_18_91); poss(son_NN_15_79, her_PRP$_14_75); possessive(son_NN_15_79, 's_POS_16_83); poss(group_NN_18_91, son_NN_15_79); nn(group_NN_18_91, jazz_NN_17_86); possessive(Bogan_NNP_20_99, 's_POS_21_105); poss(Busters_NNP_23_119, Bogan_NNP_20_99); nn(Busters_NNP_23_119, Birmingham_NNP_22_108); pcomp(before_IN_25_129, moving_VBG_26_136); prep(moving_VBG_26_136, to_TO_27_143); pobj(to_TO_27_143, Angeles_NNP_29_150); nn(Angeles_NNP_29_150, Los_NNP_28_146); dobj(,_,_30_158, California_NNP_31_160); prep(California_NNP_31_160, before_IN_33_179); prep(California_NNP_31_160, in_IN_39_220); dep(before_IN_33_179, shortly_RB_32_171); pobj(before_IN_33_179, death_NN_35_190); poss(death_NN_35_190, her_PRP$_34_186); prep(death_NN_35_190, from_IN_36_196); pobj(from_IN_36_196, sclerosis_NN_38_210); amod(sclerosis_NN_38_210, coronary_JJ_37_201); pobj(in_IN_39_220, 1948_CD_40_223) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797 She ;;; She_PRP_0_0 spent some time managing ;;; spent_VBD_10_50; some_DT_11_56; time_NN_12_61; managing_VBG_13_66 her son 's jazz group ;;; her_PRP$_14_75; son_NN_15_79; 's_POS_16_83; jazz_NN_17_86; group_NN_18_91 0.37970 None None 0 nsubj(appears_VBZ_1_4, She_PRP_0_0); ccomp(appears_VBZ_1_4, recorded_VBN_5_24); punct(appears_VBZ_1_4, ,_,_8_44); cc(appears_VBZ_1_4, and_CC_9_46); conj(appears_VBZ_1_4, spent_VBD_10_50); punct(appears_VBZ_1_4, ,_,_30_158); punct(appears_VBZ_1_4, ._._41_228); neg(recorded_VBN_5_24, not_RB_2_12); aux(recorded_VBN_5_24, to_TO_3_16); aux(recorded_VBN_5_24, have_VB_4_19); prep(recorded_VBN_5_24, after_IN_6_33); pobj(after_IN_6_33, 1935_CD_7_39); dobj(spent_VBD_10_50, time_NN_12_61); xcomp(spent_VBD_10_50, managing_VBG_13_66); punct(spent_VBD_10_50, ,_,_19_97); appos(spent_VBD_10_50, Busters_NNP_23_119); punct(spent_VBD_10_50, ,_,_24_127); prep(spent_VBD_10_50, before_IN_25_129); det(time_NN_12_61, some_DT_11_56); dobj(managing_VBG_13_66, group_NN_18_91); poss(son_NN_15_79, her_PRP$_14_75); possessive(son_NN_15_79, 's_POS_16_83); poss(group_NN_18_91, son_NN_15_79); nn(group_NN_18_91, jazz_NN_17_86); possessive(Bogan_NNP_20_99, 's_POS_21_105); poss(Busters_NNP_23_119, Bogan_NNP_20_99); nn(Busters_NNP_23_119, Birmingham_NNP_22_108); pcomp(before_IN_25_129, moving_VBG_26_136); prep(moving_VBG_26_136, to_TO_27_143); pobj(to_TO_27_143, Angeles_NNP_29_150); nn(Angeles_NNP_29_150, Los_NNP_28_146); dobj(,_,_30_158, California_NNP_31_160); prep(California_NNP_31_160, before_IN_33_179); prep(California_NNP_31_160, in_IN_39_220); dep(before_IN_33_179, shortly_RB_32_171); pobj(before_IN_33_179, death_NN_35_190); poss(death_NN_35_190, her_PRP$_34_186); prep(death_NN_35_190, from_IN_36_196); pobj(from_IN_36_196, sclerosis_NN_38_210); amod(sclerosis_NN_38_210, coronary_JJ_37_201); pobj(in_IN_39_220, 1948_CD_40_223) Template {rel} {arg1} dobj> {arg2} 0.3797 She ;;; She_PRP_0_0 spent ;;; spent_VBD_10_50 some time ;;; some_DT_11_56; time_NN_12_61 0.37970 None None 1 nsubj(served_VBN_3_13, She_PRP_0_0); aux(served_VBN_3_13, has_VBZ_1_4); advmod(served_VBN_3_13, also_RB_2_8); prep(served_VBN_3_13, on_IN_4_20); punct(served_VBN_3_13, ._._13_82); pobj(on_IN_4_20, forces_NNS_7_36); amod(forces_NNS_7_36, several_JJ_5_23); nn(forces_NNS_7_36, task_NN_6_31); prep(forces_NNS_7_36, on_IN_8_43); pobj(on_IN_8_43, syndrome_NN_12_73); amod(syndrome_NN_12_73, acquired_VBN_9_46); amod(syndrome_NN_12_73, immune_JJ_10_55); nn(syndrome_NN_12_73, deficiency_NN_11_62) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 She ;;; She_PRP_0_0 has also served on ;;; has_VBZ_1_4; also_RB_2_8; served_VBN_3_13 several task forces ;;; several_JJ_5_23; task_NN_6_31; forces_NN_7_36 0.04440 None None 1 nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) Template {rel} {arg1} dobj> {arg2} 0.0577 She ;;; She_PRP_0_0 has practiced ;;; has_VBZ_1_4; practiced_VBN_2_8 law ;;; law_NN_3_18 0.05770 None None 0 nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_141); cc(practiced_VBN_2_8, and_CC_28_143); conj(practiced_VBN_2_8, with_IN_29_147); punct(practiced_VBN_2_8, ._._42_225); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_33); conj(Boult_NNP_5_27, Cummings_NNP_7_35); punct(Boult_NNP_5_27, ,_,_8_44); conj(Boult_NNP_5_27, Conners_NNP_9_46); cc(Boult_NNP_5_27, &_CC_10_54); conj(Boult_NNP_5_27, Berry_NNP_11_56); punct(Boult_NNP_5_27, ,_,_12_62); appos(Boult_NNP_5_27, PLC_NNP_13_64); punct(Boult_NNP_5_27, :_:_16_81); dep(Boult_NNP_5_27, Cunningham_NNP_17_83); punct(Boult_NNP_5_27, ,_,_24_124); dep(Boult_NNP_5_27, in_IN_25_126); prep(PLC_NNP_13_64, in_IN_14_68); pobj(in_IN_14_68, Nashville_NNP_15_71); punct(Cunningham_NNP_17_83, ,_,_18_94); conj(Cunningham_NNP_17_83, Mitchell_NNP_19_96); punct(Cunningham_NNP_17_83, ,_,_20_105); conj(Cunningham_NNP_17_83, Hicks_NNP_21_107); cc(Cunningham_NNP_17_83, &_CC_22_113); conj(Cunningham_NNP_17_83, McMillan_NNP_23_115); pobj(in_IN_25_126, Clarksville_NNP_26_129); pobj(with_IN_29_147, husband_NN_31_156); poss(husband_NN_31_156, her_PRP$_30_152); prep(husband_NN_31_156, in_IN_32_164); pobj(in_IN_32_164, McMillan_NNP_33_167); cc(McMillan_NNP_33_167, and_CC_34_176); conj(McMillan_NNP_33_167, McMillan_NNP_35_180); punct(McMillan_NNP_33_167, ,_,_36_189); appos(McMillan_NNP_33_167, firm_NN_39_207); det(firm_NN_39_207, the_DT_37_191); nn(firm_NN_39_207, Clarksville_NNP_38_195); rcmod(firm_NN_39_207, founded_VBD_41_217); nsubj(founded_VBD_41_217, they_PRP_40_212) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109 McMillan and McMillan ;;; McMillan_NNP_33_167; and_CC_34_176; McMillan_NNP_35_180 be her husband in ;;; her_PRP$_30_152; husband_NN_31_156 the Clarksville firm ;;; the_DT_37_191; Clarksville_NNP_38_195; firm_NN_39_207 0.01090 None None 1 nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) Template {rel} {arg1} dobj> {arg2} 0.0577 She ;;; She_PRP_0_0 has practiced ;;; has_VBZ_1_4; practiced_VBN_2_8 law ;;; law_NN_3_18 0.05770 None None 0 nsubj(practiced_VBN_2_8, She_PRP_0_0); aux(practiced_VBN_2_8, has_VBZ_1_4); dobj(practiced_VBN_2_8, law_NN_3_18); prep(practiced_VBN_2_8, with_IN_4_22); punct(practiced_VBN_2_8, :_:_27_138); cc(practiced_VBN_2_8, and_CC_28_140); conj(practiced_VBN_2_8, with_IN_29_144); punct(practiced_VBN_2_8, ._._42_222); pobj(with_IN_4_22, Boult_NNP_5_27); punct(Boult_NNP_5_27, ,_,_6_32); conj(Boult_NNP_5_27, Cummings_NNP_7_34); punct(Boult_NNP_5_27, ,_,_8_42); conj(Boult_NNP_5_27, Conners_NNP_9_44); cc(Boult_NNP_5_27, &_CC_10_52); conj(Boult_NNP_5_27, Berry_NNP_11_54); punct(Boult_NNP_5_27, ,_,_12_59); appos(Boult_NNP_5_27, PLC_NNP_13_61); punct(Boult_NNP_5_27, :_:_16_78); dep(Boult_NNP_5_27, Cunningham_NNP_17_80); punct(Boult_NNP_5_27, ,_,_24_121); dep(Boult_NNP_5_27, in_IN_25_123); prep(PLC_NNP_13_61, in_IN_14_65); pobj(in_IN_14_65, Nashville_NNP_15_68); punct(Cunningham_NNP_17_80, ,_,_18_91); conj(Cunningham_NNP_17_80, Mitchell_NNP_19_93); punct(Cunningham_NNP_17_80, ,_,_20_102); conj(Cunningham_NNP_17_80, Hicks_NNP_21_104); cc(Cunningham_NNP_17_80, &_CC_22_110); conj(Cunningham_NNP_17_80, McMillan_NNP_23_112); pobj(in_IN_25_123, Clarksville_NNP_26_126); pobj(with_IN_29_144, husband_NN_31_153); poss(husband_NN_31_153, her_PRP$_30_149); prep(husband_NN_31_153, in_IN_32_161); pobj(in_IN_32_161, McMillan_NNP_33_164); cc(McMillan_NNP_33_164, and_CC_34_173); conj(McMillan_NNP_33_164, McMillan_NNP_35_177); punct(McMillan_NNP_33_164, ,_,_36_186); appos(McMillan_NNP_33_164, firm_NN_39_204); det(firm_NN_39_204, the_DT_37_188); nn(firm_NN_39_204, Clarksville_NNP_38_192); rcmod(firm_NN_39_204, founded_VBD_41_214); nsubj(founded_VBD_41_214, they_PRP_40_209) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109 McMillan and McMillan ;;; McMillan_NNP_33_164; and_CC_34_173; McMillan_NNP_35_177 be her husband in ;;; her_PRP$_30_149; husband_NN_31_153 the Clarksville firm ;;; the_DT_37_188; Clarksville_NNP_38_192; firm_NN_39_204 0.01090 None None 0 nsubj(said_VBD_1_4, She_PRP_0_0); ccomp(said_VBD_1_4, profitable_JJ_5_27); punct(said_VBD_1_4, ._._11_65); nn(Group_NNP_3_17, Wheeler_NNP_2_9); nsubj(profitable_JJ_5_27, Group_NNP_3_17); cop(profitable_JJ_5_27, was_VBD_4_23); cc(profitable_JJ_5_27, but_CC_6_38); conj(profitable_JJ_5_27, give_VB_9_52); aux(give_VB_9_52, would_MD_7_42); neg(give_VB_9_52, n't_RB_8_48); dobj(give_VB_9_52, figures_NNS_10_57) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 Wheeler Group ;;; Wheeler_NNP_2_9; Group_NNP_3_17 was ;;; was_VBD_4_23 profitable ;;; profitable_JJ_5_27 0.02160 None None 1 nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 She ;;; She_PRP_0_0 was born in ;;; was_VBD_1_4; born_VBN_2_8 Berkeley ;;; Berkeley_NNP_8_31 1.00000 None None 0 nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) Template be {rel} {prep} {rel:postag=VBN:regex=base|bear|border|compose|comprise|find|hold|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0901 Berkeley ;;; Berkeley_NNP_8_31 was born in ;;; was_VBD_1_4; born_VBN_2_8 California ;;; California_NNP_10_41 0.09010 None None 0 nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) Template be {rel} at {arg1} prep_in> {arg2} 0.0089 She ;;; She_PRP_0_0 was born at ;;; was_VBD_1_4; born_VBN_2_8 Berkeley ;;; Berkeley_NNP_8_31 0.00890 None None 0 nsubjpass(born_VBN_2_8, She_PRP_0_0); auxpass(born_VBN_2_8, was_VBD_1_4); tmod(born_VBN_2_8, April_NNP_3_13); prep(born_VBN_2_8, in_IN_7_28); punct(born_VBN_2_8, ._._11_52); num(April_NNP_3_13, 3_CD_4_19); punct(April_NNP_3_13, ,_,_5_21); num(April_NNP_3_13, 1951_CD_6_23); pobj(in_IN_7_28, Berkeley_NNP_8_31); punct(Berkeley_NNP_8_31, ,_,_9_39); appos(Berkeley_NNP_8_31, California_NNP_10_41) Template be {rel} on {arg1} prep_in> {arg2} 0.005 She ;;; She_PRP_0_0 was born on ;;; was_VBD_1_4; born_VBN_2_8 Berkeley ;;; Berkeley_NNP_8_31 0.00500 None None 1 nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Singer Bette Midler ;;; Singer_NNP_0_0; Bette_NNP_1_7; Midler_NNP_2_13 won a $ 400,000 federal court jury verdict against Young & Rubicam in ;;; won_VBD_3_20; a_DT_4_24; $_$_5_26; 400,000_CD_6_28; federal_JJ_7_36; court_NN_8_44; jury_NN_9_50; verdict_NN_10_55; against_IN_11_63; Young_NNP_12_71; &_CC_13_77; Rubicam_NNP_14_79 a case that threatens a popular advertising industry practice ;;; a_DT_16_90; case_NN_17_92; that_WDT_18_97; threatens_VBZ_19_102; a_DT_20_112; popular_JJ_21_114; advertising_NN_22_122; industry_NN_23_134; practice_NN_24_143 0.73450 None None 1 nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) Template {rel} {arg1} dobj> {arg2} 0.3797 Singer Bette Midler ;;; Singer_NNP_0_0; Bette_NNP_1_7; Midler_NNP_2_13 won ;;; won_VBD_3_20 a $ 400,000 federal court jury verdict ;;; a_DT_4_24; $_$_5_26; 400,000_CD_6_28; federal_JJ_7_36; court_NN_8_44; jury_NN_9_50; verdict_NN_10_55 0.37970 None None 1 nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 a $ 400,000 federal court jury verdict ;;; a_DT_4_24; $_$_5_26; 400,000_CD_6_28; federal_JJ_7_36; court_NN_8_44; jury_NN_9_50; verdict_NN_10_55 be won in ;;; won_VBD_3_20 a case that threatens a popular advertising industry practice ;;; a_DT_16_90; case_NN_17_92; that_WDT_18_97; threatens_VBZ_19_102; a_DT_20_112; popular_JJ_21_114; advertising_NN_22_122; industry_NN_23_134; practice_NN_24_143 0.01550 None None 0 nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 Singer Bette Midler ;;; Singer_NNP_0_0; Bette_NNP_1_7; Midler_NNP_2_13 be a $ 400,000 federal court jury verdict against ;;; a_DT_4_24; $_$_5_26; 400,000_CD_6_28; federal_JJ_7_36; court_NN_8_44; jury_NN_9_50; verdict_NN_10_55 Young ;;; Young_NNP_12_71 0.01190 None None 0 nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) Template {rel} {arg1} prep_in> {arg2} 0.0079 Singer Bette Midler ;;; Singer_NNP_0_0; Bette_NNP_1_7; Midler_NNP_2_13 won a $ 400,000 federal court jury verdict against Young & Rubicam ;;; won_VBD_3_20; a_DT_4_24; $_$_5_26; 400,000_CD_6_28; federal_JJ_7_36; court_NN_8_44; jury_NN_9_50; verdict_NN_10_55; against_IN_11_63; Young_NNP_12_71; &_CC_13_77; Rubicam_NNP_14_79 a case that threatens a popular advertising industry practice ;;; a_DT_16_90; case_NN_17_92; that_WDT_18_97; threatens_VBZ_19_102; a_DT_20_112; popular_JJ_21_114; advertising_NN_22_122; industry_NN_23_134; practice_NN_24_143 0.00790 None None 1 nn(Midler_NNP_2_13, Singer_NNP_0_0); nn(Midler_NNP_2_13, Bette_NNP_1_7); nsubj(won_VBD_3_20, Midler_NNP_2_13); dobj(won_VBD_3_20, verdict_NN_10_55); prep(won_VBD_3_20, in_IN_15_87); punct(won_VBD_3_20, ._._34_205); dep($_$_5_26, 400,000_CD_6_28); det(verdict_NN_10_55, a_DT_4_24); amod(verdict_NN_10_55, $_$_5_26); amod(verdict_NN_10_55, federal_JJ_7_36); nn(verdict_NN_10_55, court_NN_8_44); nn(verdict_NN_10_55, jury_NN_9_50); prep(verdict_NN_10_55, against_IN_11_63); pobj(against_IN_11_63, Young_NNP_12_71); cc(Young_NNP_12_71, &_CC_13_77); conj(Young_NNP_12_71, Rubicam_NNP_14_79); pobj(in_IN_15_87, case_NN_17_92); det(case_NN_17_92, a_DT_16_90); rcmod(case_NN_17_92, threatens_VBZ_19_102); nsubj(threatens_VBZ_19_102, that_WDT_18_97); dobj(threatens_VBZ_19_102, practice_NN_24_143); det(practice_NN_24_143, a_DT_20_112); amod(practice_NN_24_143, popular_JJ_21_114); nn(practice_NN_24_143, advertising_NN_22_122); nn(practice_NN_24_143, industry_NN_23_134); prep(practice_NN_24_143, of_IN_25_152); pcomp(of_IN_25_152, using_VBG_26_155); dobj(using_VBG_26_155, performers_NNS_30_177); xcomp(using_VBG_26_155, tout_VB_32_191); punct(performers_NNS_30_177, "_``_27_161); amod(performers_NNS_30_177, sound-alike_JJ_28_163); punct(performers_NNS_30_177, "_''_29_175); aux(tout_VB_32_191, to_TO_31_188); dobj(tout_VB_32_191, products_NNS_33_196) Template be {rel} by {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.1473 Social Security benefits ;;; Social_NNP_0_0; Security_NNP_1_7; benefits_NN_2_16 will rise 4.7 % boosting ;;; will_MD_3_25; rise_VB_4_30; 4.7_CD_5_35; %_NN_6_39; boosting_VBG_15_81 the average monthly benefit ;;; the_DT_16_90; average_JJ_17_94; monthly_JJ_18_102; benefit_NN_19_110 0.14730 None the Department of Health and Human Services_announced_27_33_34_34 1 nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1473 Social Security benefits ;;; Social_NNP_0_0; Security_NNP_1_7; benefits_NN_2_16 will rise 4.7 % to keep ;;; will_MD_3_25; rise_VB_4_30; 4.7_CD_5_35; %_NN_6_39; to_TO_9_51; keep_VB_10_54 pace ;;; pace_NN_11_59 0.14730 None the Department of Health and Human Services_announced_27_33_34_34 1 nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) Template {rel} {arg1} dobj> {arg2} 0.1473 Social Security benefits ;;; Social_NNP_0_0; Security_NNP_1_7; benefits_NN_2_16 will rise ;;; will_MD_3_25; rise_VB_4_30 4.7 % ;;; 4.7_CD_5_35; %_NN_6_39 0.14730 None the Department of Health and Human Services_announced_27_33_34_34 1 nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.1349 Social Security benefits ;;; Social_NNP_0_0; Security_NNP_1_7; benefits_NN_2_16 will rise 4.7 % to keep pace with ;;; will_MD_3_25; rise_VB_4_30; 4.7_CD_5_35; %_NN_6_39; to_TO_9_51; keep_VB_10_54; pace_NN_11_59 inflation ;;; inflation_NN_13_69 0.13490 None the Department of Health and Human Services_announced_27_33_34_34 1 nn(benefits_NNS_2_16, Social_NNP_0_0); nn(benefits_NNS_2_16, Security_NNP_1_7); nsubj(rise_VB_4_30, benefits_NNS_2_16); aux(rise_VB_4_30, will_MD_3_25); dobj(rise_VB_4_30, %_NN_6_39); tmod(rise_VB_4_30, year_NN_8_46); xcomp(rise_VB_4_30, keep_VB_10_54); punct(rise_VB_4_30, ,_,_14_79); xcomp(rise_VB_4_30, boosting_VBG_15_81); num(%_NN_6_39, 4.7_CD_5_35); amod(year_NN_8_46, next_JJ_7_41); aux(keep_VB_10_54, to_TO_9_51); dobj(keep_VB_10_54, pace_NN_11_59); prep(keep_VB_10_54, with_IN_12_64); pobj(with_IN_12_64, inflation_NN_13_69); dobj(boosting_VBG_15_81, benefit_NN_19_110); prep(boosting_VBG_15_81, to_TO_20_118); prep(boosting_VBG_15_81, from_IN_23_127); det(benefit_NN_19_110, the_DT_16_90); amod(benefit_NN_19_110, average_JJ_17_94); amod(benefit_NN_19_110, monthly_JJ_18_102); pobj(to_TO_20_118, $_$_21_121); num($_$_21_121, 566_CD_22_123); pobj(from_IN_23_127, $_$_24_132); num($_$_24_132, 541_CD_25_134); det(Department_NNP_28_144, the_DT_27_140); prep(Department_NNP_28_144, of_IN_29_155); pobj(of_IN_29_155, Services_NNP_33_175); cc(Health_NNP_30_158, and_CC_31_165); conj(Health_NNP_30_158, Human_NNP_32_169); nn(Services_NNP_33_175, Health_NNP_30_158); ccomp(announced_VBD_34_184, rise_VB_4_30); punct(announced_VBD_34_184, ,_,_26_138); nsubj(announced_VBD_34_184, Department_NNP_28_144); punct(announced_VBD_34_184, ._._35_194) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 pace ;;; pace_NN_11_59 to be keep with ;;; to_TO_9_51; keep_VB_10_54 inflation ;;; inflation_NN_13_69 0.01320 None None 1 det(dealers_NNS_1_5, Some_DT_0_0); nsubj(said_VBD_2_13, dealers_NNS_1_5); ccomp(said_VBD_2_13, reflects_VBZ_12_68); punct(said_VBD_2_13, ._._19_115); det(market_NN_5_27, the_DT_4_23); possessive(market_NN_5_27, 's_POS_6_34); poss(reaction_NN_8_44, market_NN_5_27); amod(reaction_NN_8_44, strong_JJ_7_37); prep(reaction_NN_8_44, to_TO_9_53); pobj(to_TO_9_53, Street_NNP_11_61); nn(Street_NNP_11_61, Wall_NNP_10_56); complm(reflects_VBZ_12_68, that_IN_3_18); nsubj(reflects_VBZ_12_68, reaction_NN_8_44); dobj(reflects_VBZ_12_68, uneasiness_NN_15_87); det(uneasiness_NN_15_87, a_DT_13_77); amod(uneasiness_NN_15_87, general_JJ_14_79); prep(uneasiness_NN_15_87, about_IN_16_98); pobj(about_IN_16_98, dollar_NN_18_108); det(dollar_NN_18_108, the_DT_17_104) Template {rel} {arg1} dobj> {arg2} 0.1443 the market 's strong reaction ;;; the_DT_4_23; market_NN_5_27; 's_POS_6_34; strong_JJ_7_37; reaction_NN_8_44 reflects ;;; reflects_VBZ_12_68 a general uneasiness ;;; a_DT_13_77; general_JJ_14_79; uneasiness_NN_15_87 0.14430 None Some dealers_said_0_1_2_2 1 nn(Corp._NNP_3_26, Sony_NNP_0_0); nn(Corp._NNP_3_26, Columbia_NNP_1_5); nn(Corp._NNP_3_26, Acquisition_NNP_2_14); punct(Corp._NNP_3_26, ,_,_4_32); nsubj(formed_VBD_5_34, Corp._NNP_3_26); prep(formed_VBD_5_34, for_IN_6_41); punct(formed_VBD_5_34, ,_,_10_63); conj(formed_VBD_5_34, take_VB_13_79); pobj(for_IN_6_41, deal_NN_9_58); det(deal_NN_9_58, the_DT_7_45); nn(deal_NN_9_58, Columbia_NNP_8_49); aux(take_VB_13_79, will_MD_11_65); advmod(take_VB_13_79, formally_RB_12_70); dobj(take_VB_13_79, ownership_NN_14_84); tmod(take_VB_13_79, month_NN_21_125); prep(ownership_NN_14_84, of_IN_15_94); pobj(of_IN_15_94, studio_NN_18_107); det(studio_NN_18_107, the_DT_16_97); nn(studio_NN_18_107, movie_NN_17_101); advmod(month_NN_21_125, later_RB_19_114); det(month_NN_21_125, this_DT_20_120); det(spokesman_NN_24_135, a_DT_23_133); ccomp(said_VBD_25_145, formed_VBD_5_34); punct(said_VBD_25_145, ,_,_22_131); nsubj(said_VBD_25_145, spokesman_NN_24_135); punct(said_VBD_25_145, ._._26_150) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Sony Columbia Acquisition Corp. ;;; Sony_NNP_0_0; Columbia_NNP_1_5; Acquisition_NNP_2_14; Corp._NNP_3_26 formed for ;;; formed_VBD_5_34 the Columbia deal ;;; the_DT_7_45; Columbia_NNP_8_49; deal_NN_9_58 0.73450 None a spokesman_said_23_24_25_25 0 nn(al_NN_5_22, Source_NN_0_0); nn(al_NN_5_22, C._NNP_1_7); nn(al_NN_5_22, S._NNP_2_10); nn(al_NN_5_22, Henry_NNP_3_13); nn(al_NN_5_22, et_NNP_4_19); punct(al_NN_5_22, ._._6_25); punct(al_NN_5_22, ,_,_7_27); appos(al_NN_5_22, inheritance_NN_9_33); punct(al_NN_5_22, ,_,_20_103); rcmod(al_NN_5_22, -289_-RRB-_24_123); punct(al_NN_5_22, ._._25_128); det(inheritance_NN_9_33, The_DT_8_29); prep(inheritance_NN_9_33, of_IN_10_45); pcomp(of_IN_10_45, mating_VBG_11_48); dobj(mating_VBG_11_48, songs_NNS_12_55); prep(mating_VBG_11_48, in_IN_13_61); punct(mating_VBG_11_48, ,_,_16_76); conj(mating_VBG_11_48, sibling_VBG_17_78); pobj(in_IN_13_61, two_CD_14_64); amod(two_CD_14_64, cryptic_JJ_15_68); dobj(sibling_VBG_17_78, species_NNS_19_95); nn(species_NNS_19_95, lacewing_NN_18_86); num(Genetica_NNP_21_105, :269_CD_23_118); number(:269_CD_23_118, 116_CD_22_114); nsubj(-289_-RRB-_24_123, Genetica_NNP_21_105) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 songs ;;; songs_NN_12_55 be mating in ;;; mating_VBG_11_48 two cryptic ;;; two_CD_14_64; cryptic_JJ_15_68 0.00790 None None 1 nn(Township_NNP_2_13, Spring_NNP_0_0); nn(Township_NNP_2_13, Creek_NNP_1_7); nsubj(one_CD_4_25, Township_NNP_2_13); cop(one_CD_4_25, is_VBZ_3_22); prep(one_CD_4_25, of_IN_5_29); punct(one_CD_4_25, ._._16_97); pobj(of_IN_5_29, townships_NNS_7_43); amod(townships_NNS_7_43, thirty-one_JJ_6_32); prep(townships_NNS_7_43, in_IN_8_53); pobj(in_IN_8_53, County_NNP_10_63); nn(County_NNP_10_63, Custer_NNP_9_56); punct(County_NNP_10_63, ,_,_11_70); conj(County_NNP_10_63, Nebraska_NNP_12_72); punct(County_NNP_10_63, ,_,_13_81); appos(County_NNP_10_63, States_NNP_15_90); nn(States_NNP_15_90, United_NNP_14_83) Template be {rel} {prep} {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locate|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109 Custer County ;;; Custer_NNP_9_56; County_NNP_10_63 be thirty-one townships in ;;; thirty-one_JJ_6_32; townships_NN_7_43 United States ;;; United_NNP_14_83; States_NNP_15_90 0.01090 None None 0 nn(Township_NNP_2_13, Spring_NNP_0_0); nn(Township_NNP_2_13, Creek_NNP_1_7); nsubj(one_CD_4_25, Township_NNP_2_13); cop(one_CD_4_25, is_VBZ_3_22); prep(one_CD_4_25, of_IN_5_29); punct(one_CD_4_25, ._._16_97); pobj(of_IN_5_29, townships_NNS_7_43); amod(townships_NNS_7_43, thirty-one_JJ_6_32); prep(townships_NNS_7_43, in_IN_8_53); pobj(in_IN_8_53, County_NNP_10_63); nn(County_NNP_10_63, Custer_NNP_9_56); punct(County_NNP_10_63, ,_,_11_70); conj(County_NNP_10_63, Nebraska_NNP_12_72); punct(County_NNP_10_63, ,_,_13_81); appos(County_NNP_10_63, States_NNP_15_90); nn(States_NNP_15_90, United_NNP_14_83) Template be {rel} {prep} {arg1} prep_of> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0095 Spring Creek Township ;;; Spring_NNP_0_0; Creek_NNP_1_7; Township_NNP_2_13 be thirty-one townships in ;;; thirty-one_JJ_6_32; townships_NN_7_43 Custer County ;;; Custer_NNP_9_56; County_NNP_10_63 0.00950 None None 1 nn(Township_NNP_2_13, Spring_NNP_0_0); nn(Township_NNP_2_13, Creek_NNP_1_7); nsubj(one_CD_4_25, Township_NNP_2_13); cop(one_CD_4_25, is_VBZ_3_22); prep(one_CD_4_25, of_IN_5_29); punct(one_CD_4_25, ._._16_97); pobj(of_IN_5_29, townships_NNS_7_43); amod(townships_NNS_7_43, thirty-one_JJ_6_32); prep(townships_NNS_7_43, in_IN_8_53); pobj(in_IN_8_53, County_NNP_10_63); nn(County_NNP_10_63, Custer_NNP_9_56); punct(County_NNP_10_63, ,_,_11_70); conj(County_NNP_10_63, Nebraska_NNP_12_72); punct(County_NNP_10_63, ,_,_13_81); appos(County_NNP_10_63, States_NNP_15_90); nn(States_NNP_15_90, United_NNP_14_83) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Spring Creek Township ;;; Spring_NNP_0_0; Creek_NNP_1_7; Township_NNP_2_13 is ;;; is_VBZ_3_22 one of thirty-one townships ;;; one_CD_4_25; of_IN_5_29; thirty-one_JJ_6_32; townships_NN_7_43 0.00840 None None 1 amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Such fibers ;;; Such_JJ_0_0; fibers_NN_1_5 are specialized in ;;; are_VBP_2_12; specialized_VBN_3_16 ways that enable them to make use of a steady energy supply ;;; ways_NN_5_31; that_WDT_6_36; enable_VBP_7_41; them_PRP_8_48; to_TO_9_53; make_VB_10_56; use_NN_11_61; of_IN_12_65; a_DT_13_68; steady_JJ_14_70; energy_NN_15_77; supply_NN_16_84 1.00000 None None 0 amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) Template {rel} {arg1} dobj> {arg2} 0.3797 They ;;; They_PRP_18_93 called ;;; called_VBD_36_193 myoglobin ;;; myoglobin_NN_37_200 0.37970 None None 0 amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) Template {rel} {arg1} dobj> {arg2} 0.3797 a large amount of an oxygen-storing protein ;;; a_DT_29_149; large_JJ_30_151; amount_NN_31_157; of_IN_32_164; an_DT_33_167; oxygen-storing_JJ_34_170; protein_NN_35_185 called ;;; called_VBD_36_193 myoglobin ;;; myoglobin_NN_37_200 0.37970 None None 1 amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) Template {rel} {arg1} dobj> {arg2} 0.0416 They ;;; They_PRP_18_93 have ;;; have_VBP_19_98 many mitochondria ;;; many_JJ_20_103; mitochondria_NN_21_108 0.04160 None None 0 amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) Template {rel} {arg1} dobj> {arg2} 0.0416 a large amount of an oxygen-storing protein ;;; a_DT_29_149; large_JJ_30_151; amount_NN_31_157; of_IN_32_164; an_DT_33_167; oxygen-storing_JJ_34_170; protein_NN_35_185 have ;;; have_VBP_19_98 many mitochondria ;;; many_JJ_20_103; mitochondria_NN_21_108 0.04160 None None 0 amod(fibers_NNS_1_5, Such_JJ_0_0); nsubjpass(specialized_VBN_3_16, fibers_NNS_1_5); auxpass(specialized_VBN_3_16, are_VBP_2_12); prep(specialized_VBN_3_16, in_IN_4_28); punct(specialized_VBN_3_16, :_:_17_91); parataxis(specialized_VBN_3_16, have_VBP_19_98); punct(specialized_VBN_3_16, ._._38_210); pobj(in_IN_4_28, ways_NNS_5_31); rcmod(ways_NNS_5_31, enable_VBP_7_41); nsubj(enable_VBP_7_41, that_WDT_6_36); xcomp(enable_VBP_7_41, make_VB_10_56); nsubj(make_VB_10_56, them_PRP_8_48); aux(make_VB_10_56, to_TO_9_53); xcomp(make_VB_10_56, use_NN_11_61); prep(use_NN_11_61, of_IN_12_65); pobj(of_IN_12_65, supply_NN_16_84); det(supply_NN_16_84, a_DT_13_68); amod(supply_NN_16_84, steady_JJ_14_70); nn(supply_NN_16_84, energy_NN_15_77); nsubj(have_VBP_19_98, They_PRP_18_93); dobj(have_VBP_19_98, mitochondria_NNS_21_108); punct(have_VBP_19_98, ,_,_27_143); cc(have_VBP_19_98, and_CC_28_145); conj(have_VBP_19_98, called_VBD_36_193); amod(mitochondria_NNS_21_108, many_JJ_20_103); punct(mitochondria_NNS_21_108, ,_,_22_121); conj(mitochondria_NNS_21_108, supply_NN_26_136); det(supply_NN_26_136, a_DT_23_123); amod(supply_NN_26_136, rich_JJ_24_125); nn(supply_NN_26_136, blood_NN_25_130); det(amount_NN_31_157, a_DT_29_149); amod(amount_NN_31_157, large_JJ_30_151); prep(amount_NN_31_157, of_IN_32_164); pobj(of_IN_32_164, protein_NN_35_185); det(protein_NN_35_185, an_DT_33_167); amod(protein_NN_35_185, oxygen-storing_JJ_34_170); nsubj(called_VBD_36_193, amount_NN_31_157); dobj(called_VBD_36_193, myoglobin_NN_37_200) Template be {rel} {prep} {arg1} nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.006 They ;;; They_PRP_18_93 be a large amount of ;;; a_DT_29_149; large_JJ_30_151; amount_NN_31_157 an oxygen-storing protein ;;; an_DT_33_167; oxygen-storing_JJ_34_170; protein_NN_35_185 0.00600 None None 0 dobj(Tell_VB_0_0, us_PRP_1_5); prep(Tell_VB_0_0, about_IN_2_8); punct(Tell_VB_0_0, ._._5_33); pobj(about_IN_2_8, restraint_NN_4_23); nn(restraint_NN_4_23, spending_NN_3_14) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 us ;;; us_PRP_1_5 be Tell about ;;; Tell_VB_0_0 spending restraint ;;; spending_NN_3_14; restraint_NN_4_23 0.01320 None None 1 nn(Haines_NNP_2_9, Terry_NNP_0_0); nn(Haines_NNP_2_9, L._NNP_1_6); punct(Haines_NNP_2_9, ,_,_3_16); appos(Haines_NNP_2_9, manager_NN_6_35); punct(Haines_NNP_2_9, ,_,_10_66); advmod(manager_NN_6_35, formerly_RB_4_18); amod(manager_NN_6_35, general_JJ_5_27); prep(manager_NN_6_35, of_IN_7_43); pobj(of_IN_7_43, operations_NNS_9_55); amod(operations_NNS_9_55, Canadian_JJ_8_46); nsubjpass(elected_VBN_12_72, Haines_NNP_2_9); auxpass(elected_VBN_12_72, was_VBD_11_68); prep(elected_VBN_12_72, to_TO_13_80); punct(elected_VBN_12_72, ,_,_20_118); punct(elected_VBN_12_72, ._._29_168); pobj(to_TO_13_80, position_NN_16_91); det(position_NN_16_91, the_DT_14_83); amod(position_NN_16_91, new_JJ_15_87); prep(position_NN_16_91, of_IN_17_100); pobj(of_IN_17_100, president_NN_19_108); nn(president_NN_19_108, vice_NN_18_103); dobj(,_,_20_118, sales_NNS_23_135); nn(sales_NNS_23_135, North_NNP_21_120); nn(sales_NNS_23_135, American_NNP_22_126); punct(sales_NNS_23_135, ,_,_24_141); prep(sales_NNS_23_135, of_IN_25_143); pobj(of_IN_25_143, concern_NN_28_160); det(concern_NN_28_160, this_DT_26_146); nn(concern_NN_28_160, plastics_NNS_27_151) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 Terry L. Haines ;;; Terry_NNP_0_0; L._NNP_1_6; Haines_NNP_2_9 was elected to ;;; was_VBD_11_68; elected_VBN_12_72 the new position of vice president ;;; the_DT_14_83; new_JJ_15_87; position_NN_16_91; of_IN_17_100; vice_NN_18_103; president_NN_19_108 1.00000 None None 1 nn(Haines_NNP_2_9, Terry_NNP_0_0); nn(Haines_NNP_2_9, L._NNP_1_6); punct(Haines_NNP_2_9, ,_,_3_16); appos(Haines_NNP_2_9, manager_NN_6_35); punct(Haines_NNP_2_9, ,_,_10_66); advmod(manager_NN_6_35, formerly_RB_4_18); amod(manager_NN_6_35, general_JJ_5_27); prep(manager_NN_6_35, of_IN_7_43); pobj(of_IN_7_43, operations_NNS_9_55); amod(operations_NNS_9_55, Canadian_JJ_8_46); nsubjpass(elected_VBN_12_72, Haines_NNP_2_9); auxpass(elected_VBN_12_72, was_VBD_11_68); prep(elected_VBN_12_72, to_TO_13_80); punct(elected_VBN_12_72, ,_,_20_118); punct(elected_VBN_12_72, ._._29_168); pobj(to_TO_13_80, position_NN_16_91); det(position_NN_16_91, the_DT_14_83); amod(position_NN_16_91, new_JJ_15_87); prep(position_NN_16_91, of_IN_17_100); pobj(of_IN_17_100, president_NN_19_108); nn(president_NN_19_108, vice_NN_18_103); dobj(,_,_20_118, sales_NNS_23_135); nn(sales_NNS_23_135, North_NNP_21_120); nn(sales_NNS_23_135, American_NNP_22_126); punct(sales_NNS_23_135, ,_,_24_141); prep(sales_NNS_23_135, of_IN_25_143); pobj(of_IN_25_143, concern_NN_28_160); det(concern_NN_28_160, this_DT_26_146); nn(concern_NN_28_160, plastics_NNS_27_151) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Terry L. Haines ;;; Terry_NNP_0_0; L._NNP_1_6; Haines_NNP_2_9 be formerly general manager of ;;; formerly_RB_4_18; general_JJ_5_27; manager_NN_6_35 Canadian operations ;;; Canadian_JJ_8_46; operations_NN_9_55 0.40310 None None 1 det(company_NN_3_26, The_DT_0_0); nn(company_NN_3_26, Breitling_NNP_1_4); nn(company_NN_3_26, watchmaking_NN_2_14); nsubjpass(founded_VBN_5_38, company_NN_3_26); auxpass(founded_VBN_5_38, was_VBD_4_34); prep(founded_VBN_5_38, in_IN_6_46); punct(founded_VBN_5_38, ,_,_8_61); cc(founded_VBN_5_38, but_CC_9_63); conj(founded_VBN_5_38, moved_VBD_10_67); punct(founded_VBN_5_38, ._._17_107); pobj(in_IN_6_46, Saint-Imier_NNP_7_49); prep(moved_VBD_10_67, to_TO_11_73); pobj(to_TO_11_73, Grenchen_NNP_12_76); punct(Grenchen_NNP_12_76, ,_,_13_85); appos(Grenchen_NNP_12_76, Canton_NNP_14_87); prep(Canton_NNP_14_87, of_IN_15_94); pobj(of_IN_15_94, Solothurn_NNP_16_97) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The Breitling watchmaking company ;;; The_DT_0_0; Breitling_NNP_1_4; watchmaking_NN_2_14; company_NN_3_26 was founded in ;;; was_VBD_4_34; founded_VBN_5_38 Saint-Imier ;;; Saint-Imier_NNP_7_49 1.00000 None None 1 det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 The Cancer Genome Atlas ;;; The_DT_0_0; Cancer_NNP_1_4; Genome_NNP_2_11; Atlas_NNP_3_18 is another example of ;;; is_VBZ_4_24; another_DT_5_27; example_NN_6_35 systems biology in which a large group of interacting genes and gene products are analyzed together ;;; systems_NN_8_46; biology_NN_9_54; in_IN_10_62; which_WDT_11_65; a_DT_12_71; large_JJ_13_73; group_NN_14_79; of_IN_15_85; interacting_VBG_16_88; genes_NN_17_100; and_CC_18_106; gene_NN_19_110; products_NN_20_115; are_VBP_21_124; analyzed_VBN_22_128; together_RB_23_137 0.95550 None None 1 det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) Template be {rel} in {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0086 large ;;; large_JJ_13_73 be group of ;;; group_NN_14_79 interacting genes and gene products ;;; interacting_VBG_16_88; genes_NN_17_100; and_CC_18_106; gene_NN_19_110; products_NN_20_115 0.00860 None None 1 det(Atlas_NNP_3_18, The_DT_0_0); nn(Atlas_NNP_3_18, Cancer_NNP_1_4); nn(Atlas_NNP_3_18, Genome_NNP_2_11); nsubj(example_NN_6_35, Atlas_NNP_3_18); cop(example_NN_6_35, is_VBZ_4_24); det(example_NN_6_35, another_DT_5_27); prep(example_NN_6_35, of_IN_7_43); punct(example_NN_6_35, ._._24_146); pobj(of_IN_7_43, biology_NN_9_54); nn(biology_NN_9_54, systems_NNS_8_46); rcmod(biology_NN_9_54, analyzed_VBN_22_128); pobj(in_IN_10_62, which_WDT_11_65); det(group_NN_14_79, a_DT_12_71); amod(group_NN_14_79, large_JJ_13_73); prep(group_NN_14_79, of_IN_15_85); pobj(of_IN_15_85, genes_NNS_17_100); amod(genes_NNS_17_100, interacting_VBG_16_88); cc(genes_NNS_17_100, and_CC_18_106); conj(genes_NNS_17_100, products_NNS_20_115); nn(products_NNS_20_115, gene_NN_19_110); rel(analyzed_VBN_22_128, in_IN_10_62); nsubjpass(analyzed_VBN_22_128, group_NN_14_79); auxpass(analyzed_VBN_22_128, are_VBP_21_124); advmod(analyzed_VBN_22_128, together_RB_23_137) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 The Cancer Genome Atlas ;;; The_DT_0_0; Cancer_NNP_1_4; Genome_NNP_2_11; Atlas_NNP_3_18 is ;;; is_VBZ_4_24 another example of systems biology ;;; another_DT_5_27; example_NN_6_35; of_IN_7_43; systems_NN_8_46; biology_NN_9_54 0.00840 None None 1 det(Commodore_NNP_1_4, The_DT_0_0); num(Commodore_NNP_1_4, 64_CD_2_14); cc(Commodore_NNP_1_4, and_CC_3_17); conj(Commodore_NNP_1_4, 128_CD_4_21); punct(Commodore_NNP_1_4, ,_,_5_25); partmod(Commodore_NNP_1_4, used_VBN_7_34); punct(Commodore_NNP_1_4, ,_,_15_86); advmod(used_VBN_7_34, mainly_RB_6_27); prep(used_VBN_7_34, for_IN_8_39); pobj(for_IN_8_39, software_NN_12_67); possessive(children_NNS_9_43, 's_POS_10_52); poss(software_NN_12_67, children_NNS_9_43); amod(software_NN_12_67, educational_JJ_11_55); cc(software_NN_12_67, and_CC_13_76); conj(software_NN_12_67, games_NNS_14_80); nsubj(surprised_VBN_17_92, Commodore_NNP_1_4); aux(surprised_VBN_17_92, had_VBD_16_88); dobj(surprised_VBN_17_92, researchers_NNS_19_109); prep(surprised_VBN_17_92, by_IN_20_121); punct(surprised_VBN_17_92, ._._43_267); nn(researchers_NNS_19_109, market_NN_18_102); pcomp(by_IN_20_121, continuing_VBG_21_124); xcomp(continuing_VBG_21_124, produce_VB_23_138); aux(produce_VB_23_138, to_TO_22_135); dobj(produce_VB_23_138, sales_NNS_25_153); dep(produce_VB_23_138, operate_VBP_33_211); amod(sales_NNS_25_153, strong_JJ_24_146); amod(computers_NNS_31_197, other_JJ_28_171); amod(computers_NNS_31_197, low-profit_JJ_29_177); amod(computers_NNS_31_197, personal_JJ_30_188); advmod(operate_VBP_33_211, even_RB_26_159); dep(operate_VBP_33_211, though_IN_27_164); nsubj(operate_VBP_33_211, computers_NNS_31_197); advmod(operate_VBP_33_211, now_RB_32_207); dobj(operate_VBP_33_211, times_NNS_35_227); amod(times_NNS_35_227, several_JJ_34_219); amod(times_NNS_35_227, fast_RB_37_236); advmod(fast_RB_37_236, as_RB_36_233); cc(fast_RB_37_236, and_CC_38_241); conj(fast_RB_37_236, have_VBP_39_245); dobj(have_VBP_39_245, memory_NN_42_260); advmod(more_JJR_41_255, much_RB_40_250); amod(memory_NN_42_260, more_JJR_41_255) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 The Commodore 64 and 128 ;;; The_DT_0_0; Commodore_NNP_1_4; 64_CD_2_14; and_CC_3_17; 128_CD_4_21 be mainly used for ;;; mainly_RB_6_27; used_VBN_7_34 children 's educational software and games ;;; children_NN_9_43; 's_POS_10_52; educational_JJ_11_55; software_NN_12_67; and_CC_13_76; games_NN_14_80 0.11100 None None 1 det(Commodore_NNP_1_4, The_DT_0_0); num(Commodore_NNP_1_4, 64_CD_2_14); cc(Commodore_NNP_1_4, and_CC_3_17); conj(Commodore_NNP_1_4, 128_CD_4_21); punct(Commodore_NNP_1_4, ,_,_5_25); partmod(Commodore_NNP_1_4, used_VBN_7_34); punct(Commodore_NNP_1_4, ,_,_15_86); advmod(used_VBN_7_34, mainly_RB_6_27); prep(used_VBN_7_34, for_IN_8_39); pobj(for_IN_8_39, software_NN_12_67); possessive(children_NNS_9_43, 's_POS_10_52); poss(software_NN_12_67, children_NNS_9_43); amod(software_NN_12_67, educational_JJ_11_55); cc(software_NN_12_67, and_CC_13_76); conj(software_NN_12_67, games_NNS_14_80); nsubj(surprised_VBN_17_92, Commodore_NNP_1_4); aux(surprised_VBN_17_92, had_VBD_16_88); dobj(surprised_VBN_17_92, researchers_NNS_19_109); prep(surprised_VBN_17_92, by_IN_20_121); punct(surprised_VBN_17_92, ._._43_267); nn(researchers_NNS_19_109, market_NN_18_102); pcomp(by_IN_20_121, continuing_VBG_21_124); xcomp(continuing_VBG_21_124, produce_VB_23_138); aux(produce_VB_23_138, to_TO_22_135); dobj(produce_VB_23_138, sales_NNS_25_153); dep(produce_VB_23_138, operate_VBP_33_211); amod(sales_NNS_25_153, strong_JJ_24_146); amod(computers_NNS_31_197, other_JJ_28_171); amod(computers_NNS_31_197, low-profit_JJ_29_177); amod(computers_NNS_31_197, personal_JJ_30_188); advmod(operate_VBP_33_211, even_RB_26_159); dep(operate_VBP_33_211, though_IN_27_164); nsubj(operate_VBP_33_211, computers_NNS_31_197); advmod(operate_VBP_33_211, now_RB_32_207); dobj(operate_VBP_33_211, times_NNS_35_227); amod(times_NNS_35_227, several_JJ_34_219); amod(times_NNS_35_227, fast_RB_37_236); advmod(fast_RB_37_236, as_RB_36_233); cc(fast_RB_37_236, and_CC_38_241); conj(fast_RB_37_236, have_VBP_39_245); dobj(have_VBP_39_245, memory_NN_42_260); advmod(more_JJR_41_255, much_RB_40_250); amod(memory_NN_42_260, more_JJR_41_255) Template {rel} {arg1} dobj> {arg2} 0.0577 The Commodore 64 and 128 ;;; The_DT_0_0; Commodore_NNP_1_4; 64_CD_2_14; and_CC_3_17; 128_CD_4_21 had surprised ;;; had_VBD_16_88; surprised_VBN_17_92 market researchers ;;; market_NN_18_102; researchers_NN_19_109 0.05770 None None 1 det(Commodore_NNP_1_4, The_DT_0_0); num(Commodore_NNP_1_4, 64_CD_2_14); cc(Commodore_NNP_1_4, and_CC_3_17); conj(Commodore_NNP_1_4, 128_CD_4_21); punct(Commodore_NNP_1_4, ,_,_5_25); partmod(Commodore_NNP_1_4, used_VBN_7_34); punct(Commodore_NNP_1_4, ,_,_15_86); advmod(used_VBN_7_34, mainly_RB_6_27); prep(used_VBN_7_34, for_IN_8_39); pobj(for_IN_8_39, software_NN_12_67); possessive(children_NNS_9_43, 's_POS_10_52); poss(software_NN_12_67, children_NNS_9_43); amod(software_NN_12_67, educational_JJ_11_55); cc(software_NN_12_67, and_CC_13_76); conj(software_NN_12_67, games_NNS_14_80); nsubj(surprised_VBN_17_92, Commodore_NNP_1_4); aux(surprised_VBN_17_92, had_VBD_16_88); dobj(surprised_VBN_17_92, researchers_NNS_19_109); prep(surprised_VBN_17_92, by_IN_20_121); punct(surprised_VBN_17_92, ._._43_267); nn(researchers_NNS_19_109, market_NN_18_102); pcomp(by_IN_20_121, continuing_VBG_21_124); xcomp(continuing_VBG_21_124, produce_VB_23_138); aux(produce_VB_23_138, to_TO_22_135); dobj(produce_VB_23_138, sales_NNS_25_153); dep(produce_VB_23_138, operate_VBP_33_211); amod(sales_NNS_25_153, strong_JJ_24_146); amod(computers_NNS_31_197, other_JJ_28_171); amod(computers_NNS_31_197, low-profit_JJ_29_177); amod(computers_NNS_31_197, personal_JJ_30_188); advmod(operate_VBP_33_211, even_RB_26_159); dep(operate_VBP_33_211, though_IN_27_164); nsubj(operate_VBP_33_211, computers_NNS_31_197); advmod(operate_VBP_33_211, now_RB_32_207); dobj(operate_VBP_33_211, times_NNS_35_227); amod(times_NNS_35_227, several_JJ_34_219); amod(times_NNS_35_227, fast_RB_37_236); advmod(fast_RB_37_236, as_RB_36_233); cc(fast_RB_37_236, and_CC_38_241); conj(fast_RB_37_236, have_VBP_39_245); dobj(have_VBP_39_245, memory_NN_42_260); advmod(more_JJR_41_255, much_RB_40_250); amod(memory_NN_42_260, more_JJR_41_255) Template {rel} {arg1} dobj> {arg2} 0.0416 other low-profit personal computers ;;; other_JJ_28_171; low-profit_JJ_29_177; personal_JJ_30_188; computers_NN_31_197 even now operate ;;; even_RB_26_159; now_RB_32_207; operate_VBP_33_211 several times as fast and have ;;; several_JJ_34_219; times_NN_35_227; as_RB_36_233; fast_RB_37_236; and_CC_38_241; have_VBP_39_245 0.04160 None None 1 det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 SirsiDynix ;;; SirsiDynix_NNP_9_48 was formed by ;;; was_VBD_10_59; formed_VBN_11_63 the merger of the Sirsi and Dynix corporations ;;; the_DT_13_73; merger_NN_14_77; of_IN_15_84; the_DT_16_87; Sirsi_NNP_17_91; and_CC_18_97; Dynix_NNP_19_101; corporations_NN_20_107 1.00000 None None 1 det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 SirsiDynix ;;; SirsiDynix_NNP_9_48 was formed in ;;; was_VBD_10_59; formed_VBN_11_63 June 2005 ;;; June_NNP_22_123; 2005_CD_23_128 1.00000 None None 0 det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 SirsiDynix ;;; SirsiDynix_NNP_9_48 was founded in ;;; was_VBD_3_22; founded_VBN_4_26 1983 ;;; 1983_CD_6_37 1.00000 None None 1 det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The Dynix corporation ;;; The_DT_0_0; Dynix_NNP_1_4; corporation_NN_2_10 was formed by ;;; was_VBD_10_59; formed_VBN_11_63 the merger of the Sirsi and Dynix corporations ;;; the_DT_13_73; merger_NN_14_77; of_IN_15_84; the_DT_16_87; Sirsi_NNP_17_91; and_CC_18_97; Dynix_NNP_19_101; corporations_NN_20_107 1.00000 None None 0 det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The Dynix corporation ;;; The_DT_0_0; Dynix_NNP_1_4; corporation_NN_2_10 was formed in ;;; was_VBD_10_59; formed_VBN_11_63 June 2005 ;;; June_NNP_22_123; 2005_CD_23_128 1.00000 None None 1 det(corporation_NN_2_10, The_DT_0_0); nn(corporation_NN_2_10, Dynix_NNP_1_4); nsubjpass(founded_VBN_4_26, corporation_NN_2_10); auxpass(founded_VBN_4_26, was_VBD_3_22); prep(founded_VBN_4_26, in_IN_5_34); punct(founded_VBN_4_26, ,_,_7_42); cc(founded_VBN_4_26, and_CC_8_44); conj(founded_VBN_4_26, formed_VBN_11_63); punct(founded_VBN_4_26, ._._24_133); pobj(in_IN_5_34, 1983_CD_6_37); nsubjpass(formed_VBN_11_63, SirsiDynix_NNP_9_48); auxpass(formed_VBN_11_63, was_VBD_10_59); prep(formed_VBN_11_63, by_IN_12_70); prep(formed_VBN_11_63, in_IN_21_120); pobj(by_IN_12_70, merger_NN_14_77); det(merger_NN_14_77, the_DT_13_73); prep(merger_NN_14_77, of_IN_15_84); pobj(of_IN_15_84, corporations_NNS_20_107); cc(Sirsi_NNP_17_91, and_CC_18_97); conj(Sirsi_NNP_17_91, Dynix_NNP_19_101); det(corporations_NNS_20_107, the_DT_16_87); nn(corporations_NNS_20_107, Sirsi_NNP_17_91); pobj(in_IN_21_120, June_NNP_22_123); num(June_NNP_22_123, 2005_CD_23_128) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The Dynix corporation ;;; The_DT_0_0; Dynix_NNP_1_4; corporation_NN_2_10 was founded in ;;; was_VBD_3_22; founded_VBN_4_26 1983 ;;; 1983_CD_6_37 1.00000 None None 1 det(House_NNP_4_21, The_DT_0_0); nn(House_NNP_4_21, Edward_NNP_1_4); nn(House_NNP_4_21, C._NNP_2_11); nn(House_NNP_4_21, Peters_NNP_3_14); punct(House_NNP_4_21, ,_,_5_27); nsubjpass(known_VBN_7_34, House_NNP_4_21); advmod(known_VBN_7_34, also_RB_6_29); prep(known_VBN_7_34, as_IN_8_40); parataxis(known_VBN_7_34, house_NN_17_76); punct(known_VBN_7_34, ._._22_102); pobj(as_IN_8_40, Hall_NNP_10_47); nn(Hall_NNP_10_47, Ivy_NNP_9_43); punct(house_NN_17_76, ,_,_11_52); cop(house_NN_17_76, is_VBZ_12_54); det(house_NN_17_76, a_DT_13_57); nn(house_NN_17_76, Queen_NNP_14_59); nn(house_NN_17_76, Anne_NNP_15_65); nn(house_NN_17_76, style_NN_16_70); prep(house_NN_17_76, in_IN_18_82); pobj(in_IN_18_82, Atlanta_NNP_19_85); punct(Atlanta_NNP_19_85, ,_,_20_92); appos(Atlanta_NNP_19_85, Georgia_NNP_21_94) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The Edward C. Peters House ;;; The_DT_0_0; Edward_NNP_1_4; C._NNP_2_11; Peters_NNP_3_14; House_NNP_4_21 be also known as ;;; also_RB_6_29; known_VBN_7_34 Ivy Hall ;;; Ivy_NNP_9_43; Hall_NNP_10_47 1.00000 None None 0 det(House_NNP_4_21, The_DT_0_0); nn(House_NNP_4_21, Edward_NNP_1_4); nn(House_NNP_4_21, C._NNP_2_11); nn(House_NNP_4_21, Peters_NNP_3_14); punct(House_NNP_4_21, ,_,_5_27); nsubjpass(known_VBN_7_34, House_NNP_4_21); advmod(known_VBN_7_34, also_RB_6_29); prep(known_VBN_7_34, as_IN_8_40); parataxis(known_VBN_7_34, house_NN_17_76); punct(known_VBN_7_34, ._._22_102); pobj(as_IN_8_40, Hall_NNP_10_47); nn(Hall_NNP_10_47, Ivy_NNP_9_43); punct(house_NN_17_76, ,_,_11_52); cop(house_NN_17_76, is_VBZ_12_54); det(house_NN_17_76, a_DT_13_57); nn(house_NN_17_76, Queen_NNP_14_59); nn(house_NN_17_76, Anne_NNP_15_65); nn(house_NN_17_76, style_NN_16_70); prep(house_NN_17_76, in_IN_18_82); pobj(in_IN_18_82, Atlanta_NNP_19_85); punct(Atlanta_NNP_19_85, ,_,_20_92); appos(Atlanta_NNP_19_85, Georgia_NNP_21_94) Template be {rel} {prep} {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locate|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109 Atlanta ;;; Atlanta_NNP_19_85 is a Queen Anne style house in ;;; is_VBZ_12_54; a_DT_13_57; Queen_NNP_14_59; Anne_NNP_15_65; style_NN_16_70; house_NN_17_76 Georgia ;;; Georgia_NNP_21_94 0.01090 None None 1 det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 an indoor arena ;;; an_DT_5_26; indoor_JJ_6_29; arena_NN_7_36 be located at ;;; located_VBN_8_42 the corner of Mount Royal ;;; the_DT_14_74; corner_NN_15_78; of_IN_16_85; Mount_NNP_17_88; Royal_NNP_18_94 0.11100 None None 1 det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 an indoor arena ;;; an_DT_5_26; indoor_JJ_6_29; arena_NN_7_36 be located in ;;; located_VBN_8_42 Montreal ;;; Montreal_NNP_10_53 0.11100 None None 1 det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) Template be {rel} {prep} {rel:postag=VBN:regex=base|bear|border|compose|comprise|find|hold|know|locate|publish|situate} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0901 Montreal ;;; Montreal_NNP_10_53 be located in ;;; located_VBN_8_42 Canada ;;; Canada_NNP_12_64 0.09010 None None 1 det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) Template be {rel} {prep} {arg1} partmod> {slot0:postag=VBN:regex=base|bear|beget|celebrate|found|grow|locate|nestle|place|publish|register|set|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2} 0.0254 The Mount Royal Arena ;;; The_DT_0_0; Mount_NNP_1_4; Royal_NNP_2_10; Arena_NNP_3_16 was an indoor arena at ;;; was_VBD_4_22; an_DT_5_26; indoor_JJ_6_29; arena_NN_7_36 the corner of Mount Royal ;;; the_DT_14_74; corner_NN_15_78; of_IN_16_85; Mount_NNP_17_88; Royal_NNP_18_94 0.02540 None None 1 det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) Template be {rel} {prep} {arg1} partmod> {slot0:postag=VBN:regex=base|bear|beget|celebrate|found|grow|locate|nestle|place|publish|register|set|situate|speak|use} >{prep:regex=prep_(.*)}> {arg2} 0.0254 The Mount Royal Arena ;;; The_DT_0_0; Mount_NNP_1_4; Royal_NNP_2_10; Arena_NNP_3_16 was an indoor arena in ;;; was_VBD_4_22; an_DT_5_26; indoor_JJ_6_29; arena_NN_7_36 Montreal ;;; Montreal_NNP_10_53 0.02540 None None 1 det(Arena_NNP_3_16, The_DT_0_0); nn(Arena_NNP_3_16, Mount_NNP_1_4); nn(Arena_NNP_3_16, Royal_NNP_2_10); nsubj(arena_NN_7_36, Arena_NNP_3_16); cop(arena_NN_7_36, was_VBD_4_22); det(arena_NN_7_36, an_DT_5_26); amod(arena_NN_7_36, indoor_JJ_6_29); partmod(arena_NN_7_36, located_VBN_8_42); punct(arena_NN_7_36, ._._24_122); prep(located_VBN_8_42, in_IN_9_50); prep(located_VBN_8_42, at_IN_13_71); pobj(in_IN_9_50, Montreal_NNP_10_53); punct(Montreal_NNP_10_53, ,_,_11_62); appos(Montreal_NNP_10_53, Canada_NNP_12_64); pobj(at_IN_13_71, corner_NN_15_78); det(corner_NN_15_78, the_DT_14_74); prep(corner_NN_15_78, of_IN_16_85); pobj(of_IN_16_85, Royal_NNP_18_94); nn(Royal_NNP_18_94, Mount_NNP_17_88); cc(Royal_NNP_18_94, and_CC_19_100); conj(Royal_NNP_18_94, Street_NNP_23_115); nn(Street_NNP_23_115, St_NNP_20_104); punct(Street_NNP_23_115, ._._21_106); nn(Street_NNP_23_115, Urbain_NNP_22_108) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 The Mount Royal Arena ;;; The_DT_0_0; Mount_NNP_1_4; Royal_NNP_2_10; Arena_NNP_3_16 was ;;; was_VBD_4_22 an indoor arena located in Montreal , Canada at the corner of Mount Royal and St . Urbain Street ;;; an_DT_5_26; indoor_JJ_6_29; arena_NN_7_36; located_VBN_8_42; in_IN_9_50; Montreal_NNP_10_53; ,_,_11_62; Canada_NNP_12_64; at_IN_13_71; the_DT_14_74; corner_NN_15_78; of_IN_16_85; Mount_NNP_17_88; Royal_NNP_18_94; and_CC_19_100; St_NNP_20_104; ._._21_106; Urbain_NNP_22_108; Street_NNP_23_115 0.02160 None None 1 det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The Notre Dame Academy and Convent ;;; The_DT_0_0; Notre_NNP_1_4; Dame_NNP_2_10; Academy_NNP_3_15; and_CC_4_23; Convent_NNP_5_27 is located at ;;; is_VBZ_6_35; located_VBN_7_38 3501 State Street ;;; 3501_CD_9_49; State_NNP_10_54; Street_NNP_11_60 1.00000 None None 1 det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The Notre Dame Academy and Convent ;;; The_DT_0_0; Notre_NNP_1_4; Dame_NNP_2_10; Academy_NNP_3_15; and_CC_4_23; Convent_NNP_5_27 is located in ;;; is_VBZ_6_35; located_VBN_7_38 the Florence neighborhood ;;; the_DT_13_70; Florence_NNP_14_74; neighborhood_NN_15_83 1.00000 None None 0 det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) Template be {rel} in {rel:postag=NN:regex=abbacy|abode|abutment|abysm|abyss|acme|addition|address|aerie|aerospace|aery|aim|air|airhead|airspace|airway|ambiance|ambience|anchorage|angle|anomaly|antapex|antinode|antipodes|aperture|apex|aphelion|apoapsis|apogee|apojove|apolune|aposelene|approach|apron|archbishopric|archdeaconry|archdiocese|archduchy|area|arena|arrowhead|ashram|asthenosphere|atelier|atmosphere|axil|axis|azimuth|back|backside|backwater|backwoods|backyard|bailiwick|bakehouse|bakery|bakeshop|barb|barony|barren|barrio|barycenter|base|basin|battlefield|battlefront|battleground|beachhead|beak|bearing|beat|bed|bedground|bedside|beehive|beeline|beginning|belly|bellybutton|belt|bent|benthos|berm|berth|bight|bilge|bilges|bilocation|bindery|biosphere|birthplace|bishopric|bitthead|bivouac|block|boatyard|bookbindery|boondocks|border|borderland|borderline|borough|bottom|bound|boundary|bounds|bourn|bourne|bowels|breach|breadbasket|break|brickfield|brickyard|bridgehead|brink|brokerage|brow|buffer|bull|burg|bush|cabstand|caliphate|cambium|camp|campground|campong|campsite|campus|canthus|canton|cap|capital|capitulum|carrefour|casbah|cavern|cavity|cell|cemetery|center|centerfield|central|centre|centrex|centroid|chap|chapiter|charnel|chasm|checkpoint|chink|chokepoint|chromosphere|churchyard|circle|circuit|circumference|circus|city|clear|clearing|cleft|cloverleaf|coalfield|coastline|col|colliery|colony|columbarium|common|commons|commonwealth|commune|community|compartment|confluence|conurbation|core|corium|corncob|corner|corneum|cornfield|country|countryside|county|course|court|cowtown|crack|cradle|cranny|crawlspace|creamery|crenel|crenelle|crest|crevasse|crevice|crinion|croft|crosscut|crossing|crossroad|crossway|crotch|crown|crud|crust|crypt|cubbyhole|culmination|curtilage|cusp|cuticle|dairy|danger|dark|darkness|dateline|dec|declination|defile|delimitation|demarcation|demesne|den|department|dependency|depth|derivation|derma|dermis|desert|desktop|destination|determinant|development|diamond|diastema|dig|diocese|dip|direction|distance|district|divide|dockside|dockyard|dogleg|domain|domicile|dominion|dooryard|downtown|drop|duchy|dukedom|dump|dumpsite|earldom|earreach|earshot|earth|east|ecliptic|edge|edging|element|emirate|empire|emptiness|empyrean|encampment|enclave|enclosure|end|endpoint|entrepot|environment|environs|eparchy|epicenter|epicentre|epidermis|episcopate|epitope|equator|equinoctial|equinox|exaltation|exarchate|excavation|exchange|exosphere|expanse|exterior|extreme|extremity|extremum|exurbia|eye|eyeshot|eyrie|eyry|face|fairground|fairway|farm|farmland|farmplace|farmstead|fatherland|faubourg|fault|faulting|fiefdom|field|fingertip|finish|firebreak|fireguard|fireside|firmament|fishery|fissure|flies|floor|flowerbed|fluke|flyway|focus|foot|foothold|foramen|forefront|forepart|forge|fork|fountainhead|fracture|fringe|front|frontier|funfair|gaff|gap|garden|gasfield|gasworks|geosphere|ghetto|glade|glassworks|goal|goldfield|gorge|grainfield|grange|grassland|grave|graveyard|green|greenbelt|greenway|gridiron|ground|grounds|grove|gulf|habitat|habitation|hairline|hamlet|hand|hangout|harbor|harborage|harbour|harbourage|hatchery|haunt|haven|hayfield|head|heading|headspring|headwater|hearing|heart|hearth|heartland|heath|heathland|heaven|heavens|heel|heights|heliopause|heliosphere|hell|hellhole|hem|hemisphere|hemline|here|heronry|hiatus|hideaway|hideout|high|hilltop|hilum|hinterland|hip|hipline|hole|hollow|holy|home|homeland|hometown|horizon|horst|hotbed|hotspot|house|hub|hydathode|hydrosphere|imperium|inclination|inferno|infield|innersole|inside|insole|interchange|interface|interior|intersection|ionosphere|ironworks|irredenta|irridenta|isarithm|island|isobar|isochrone|isoclinal|isogone|isogram|isohel|isopleth|isotherm|itinerary|job|junction|jungle|junkyard|jurisdiction|justiciary|juxtaposition|kampong|kasbah|key|khanate|kingdom|knothole|kraal|lab|laboratory|lair|land|landmark|landscape|landscaping|latitude|launderette|laundry|lawn|layer|lea|lead|leak|lee|leeward|left|leftfield|lenticel|ley|lie|light|limb|limit|line|lineation|lithosphere|locale|locality|location|locus|longitude|lookout|lot|loxodrome|luff|lumberyard|mandate|mandatory|mansion|mantle|march|marchland|mare|maria|mastaba|mastabah|masthead|matrix|mausoleum|maximum|meadow|mecca|medina|medium|meeting|megalopolis|meridian|mesosphere|mete|metropolis|micropyle|midair|midden|middle|midfield|midland|midpoint|midst|midstream|midway|minefield|minimum|molding|monument|moorage|mooring|motherland|moulding|mouth|municipality|nadir|nape|navel|necropolis|neighborhood|neighbourhood|nest|nib|nidus|nirvana|node|nombril|nook|north|northeast|northland|northwest|notch|nucha|nucleus|oasis|occident|oilfield|omphalos|omphalus|open|opening|orbit|orchard|orient|origin|orphrey|outback|outdoors|outfield|outline|outport|outpost|outside|outskirt|outskirts|outsole|outstation|overhead|overlook|ozonosphere|paddy|paint|palaestra|palate|palatinate|palestra|pallium|pampas|panhandle|paradise|parallel|parcel|paries|parish|park|parkland|part|parterre|parting|parts|pass|pasture|pastureland|patch|patchboard|pate|path|patisserie|patriarchate|pattern|peak|penetralia|perch|perforation|periapsis|perigee|perigon|perihelion|perijove|perilune|periselene|pesthole|photosphere|piazza|pigeonhole|piggery|pike|pinnacle|pinpoint|piscary|piste|pit|pitch|place|plantation|plate|playground|plaza|pleasance|plot|plugboard|pocket|point|pole|poll|polls|pool|pore|port|position|possession|post|pottery|pouch|prairie|precinct|prefecture|premises|presence|preserve|princedom|principality|property|proprioceptor|protectorate|provenance|provenience|province|proximity|puddle|pueblo|punctum|pupil|purlieu|qibla|quadrant|quarter|radius|railhead|railyard|ranch|range|rathole|reach|realm|rear|rearward|refuge|region|rendezvous|rent|repair|repository|reservation|reserve|residence|resort|retreat|rhumb|rift|right|rightfield|rip|roads|roadside|roadstead|rockery|rooftop|rookery|root|rootage|ropewalk|rotary|rough|round|roundabout|roundhouse|route|sac|sack|saddle|saddleback|saddlery|safety|sanctuary|sanctum|sandlot|savanna|savannah|scenario|scene|scenery|schoolyard|scissure|scour|scrapheap|scrubland|scruff|seafront|seam|seaport|seascape|seat|section|sector|see|seedbed|selvage|selvedge|semidesert|semitropics|separation|sepulcher|sepulchre|sepulture|setting|settlement|shadow|shantytown|sheeprun|sheepwalk|sheet|sheikdom|sheikhdom|shift|shipside|shipyard|shire|shop|shoreline|short|shoulder|showplace|shrubbery|side|sign|silhouette|site|situation|skyline|skyway|slack|slip|slit|slot|slum|smithy|snag|snow|sodom|soil|sole|solitude|somewhere|source|south|southeast|southland|southwest|spa|space|spearhead|spearpoint|sphere|spike|split|spoor|spot|sprawl|spread|spring|square|stage|stand|state|station|steps|stoma|stomate|stop|stopover|stratosphere|stratum|stretch|studio|subdivision|substrate|substratum|subtopia|subtropics|suburb|suburbia|sultanate|summit|superstrate|superstratum|surface|surround|surroundings|suzerainty|swath|switchboard|tack|tannery|tape|target|taxistand|tear|tee|telomere|tendency|tenderloin|terminal|termination|terminus|terrain|terreplein|territory|theater|theatre|there|thermosphere|thick|tiltyard|timberline|tip|tiptoe|tiptop|tomb|tonsure|top|topiary|town|township|track|tract|trail|trailhead|treetop|trend|trichion|tropic|tropics|tropopause|troposphere|trusteeship|turf|turnery|umbilicus|underbelly|underside|undersurface|unknown|upside|uptown|vacancy|vacuity|vacuum|vantage|variation|vault|veld|veldt|vent|venue|verge|vertex|viceroyalty|vicinity|view|viewpoint|village|vinery|vineyard|viscounty|void|volcano|wall|ward|warren|washhouse|waste|wasteland|wasteyard|waterfront|waterline|watermark|watershed|waterworks|wavefront|way|wayside|weald|wedge|welkin|wellhead|wellspring|west|wheatfield|whereabouts|wild|wilderness|window|windward|wing|wire|wold|woodlet|work|workplace|workshop|workspace|yard|yardarm|zenith|zodiac|zone} >prep_of> {arg1} >appos> {arg2} 0.036 Omaha ;;; Omaha_NNP_21_116 be the north end in ;;; the_DT_17_99; north_JJ_18_103; end_NN_19_109 Nebraska ;;; Nebraska_NNP_23_124 0.03600 None None 0 det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) Template be {rel} {prep} {rel:postag=NN:regex=abator|abbacy|abbe|abbess|abbot|abbreviator|abdicator|abductor|abecedarian|aberrant|abetter|abettor|abhorrer|abiogenist|abjurer|abnegator|abode|abolitionist|abomination|abominator|aboriginal|aborigine|abortionist|abridger|abrogator|absconder|abseiler|absentee|absolutist|absolver|abstainer|abstinent|abstracter|abstractionist|abstractor|abuser|abutment|abutter|abysm|abyss|academic|academician|acceptor|accessary|accessory|accommodator|accompanist|accompanyist|accomplice|accordionist|accoucheur|accoucheuse|accountant|accumulator|accused|accuser|ace|achiever|acme|acolyte|acoustician|acquaintance|acquirer|acrobat|active|activist|actor|actress|actuary|adapter|adder|addict|addition|addlehead|address|addressee|adducer|adept|adherent|adjudicator|adjunct|adjuster|adjustor|adjutant|adman|administrator|admiral|admirer|admonisher|adolescent|adonis|adoptee|adopter|adorer|adulator|adult|adulterator|adulterer|adulteress|advancer|adventurer|adventuress|adversary|advertiser|advertizer|advisee|adviser|advisor|advocate|advocator|aerialist|aerie|aeronaut|aerophile|aerospace|aery|aesthete|aesthetician|aetiologist|affiant|affiliate|affine|affirmer|affluent|aficionado|agent|aggravator|aggregator|aggressor|agitator|agnate|agnostic|agonist|agriculturalist|agriculturist|agronomist|aide|aim|air|aircraftman|aircraftsman|aircrewman|airhead|airman|airspace|airway|airwoman|alarmist|albino|alcalde|alchemist|alcoholic|alderman|alexic|algebraist|alien|alienator|alienee|alienist|alienor|aliterate|alky|allayer|allegoriser|allegorizer|allergist|alleviator|alliterator|allocator|ally|almoner|almsgiver|alphabetiser|alphabetizer|alpinist|alternate|alto|altoist|altruist|alum|alumna|alumnus|amah|amalgamator|amanuensis|amateur|amazon|ambassador|ambassadress|ambiance|ambience|ambler|ambusher|ameer|amigo|amir|amnesiac|amnesic|amora|amoralist|amorist|amputator|amputee|anachronism|anaesthetist|anagnost|analogist|analphabet|analphabetic|analysand|analyst|anarchist|anathema|anatomist|ancestor|ancestress|anchor|anchorage|anchorite|anchorman|anchorperson|ancient|androgyne|anecdotist|anesthesiologist|anesthetist|angel|angiologist|angle|angler|anglophil|anglophile|anglophobe|animator|animist|annalist|annihilator|annotator|announcer|annoyance|annoyer|annuitant|anointer|anomalist|anomaly|anorectic|anorexic|answerer|antagonist|antapex|antecedent|antediluvian|anthologist|anthropoid|anthropologist|anthropophagite|anthropophagus|anti|anticipant|anticipator|antifeminist|antinode|antinomian|antipodes|antipope|antiquarian|antiquary|antique|apache|ape|aper|aperture|apex|aphakic|aphasic|aphelion|aphorist|apiarist|apiculturist|apoapsis|apogee|apojove|apologist|apolune|aposelene|apostate|apostle|apothecary|apotheosis|apparatchik|appeaser|appellant|applauder|applicant|applier|appointee|appointment|appraiser|appreciator|apprehender|apprentice|approach|appropriator|approver|apron|aquanaut|arb|arbiter|arbitrager|arbitrageur|arbitrator|arboriculturist|arborist|archaeologist|archaist|archbishop|archbishopric|archdeacon|archdeaconry|archdiocese|archduchess|archduchy|archduke|archeologist|archer|archimandrite|architect|archivist|archpriest|area|arena|argonaut|arguer|arianist|aristocrat|arithmetician|armiger|armorer|armourer|arouser|arranger|arrival|arriver|arriviste|arrogator|arrowhead|arrowsmith|arsonist|arthritic|articulator|artificer|artilleryman|artisan|artist|artiste|ascendant|ascendent|ascender|ascetic|ashram|asker|aspirant|aspirer|ass|assailant|assassin|assassinator|assaulter|assayer|assemblyman|assemblywoman|assenter|asserter|assessee|assessor|asseverator|asshole|assignee|assignor|assimilator|assistant|associate|asthenosphere|asthmatic|astrogator|astrologer|astrologist|astronaut|astronomer|astrophysicist|atelier|atheist|athlete|atmosphere|attache|attacker|attempter|attendant|attendee|attender|attestant|attestator|attester|attestor|attorney|attracter|attraction|attractor|auctioneer|audile|auditor|augur|aunt|auntie|aunty|auspex|auteur|authenticator|author|authoress|authoriser|authoritarian|authority|authorizer|autobiographer|autochthon|autocrat|autodidact|automaton|auxiliary|avatar|avenger|aviator|aviatress|aviatrix|avower|axil|axis|ayah|ayatollah|azimuth|baas|babbler|babe|baboo|babu|baby|babyminder|babysitter|bacchanal|bacchant|bacchante|bachelor|bachelorette|back|backbencher|backbiter|backer|backpacker|backscratcher|backside|backslapper|backslider|backstop|backstroker|backup|backwater|backwoods|backwoodsman|backyard|bacteriologist|badgerer|bag|baggage|baggageman|bagger|bagman|bagpiper|bailee|bailiff|bailiwick|bailor|bairn|bakehouse|baker|bakery|bakeshop|balancer|baldhead|baldpate|baldy|balker|balladeer|ballerina|balletomane|balloonist|ballplayer|bambino|banderillero|bandit|bandleader|bandmaster|bandsman|banker|bankrupt|banneret|bantamweight|barb|barbarian|barber|bard|bargainer|bargee|bargeman|baritone|barkeep|barkeeper|barker|barmaid|barman|barnburner|barnstormer|baron|baroness|baronet|barony|barrater|barrator|barren|barrio|barrister|bartender|barterer|barycenter|barytone|base|basileus|basin|basketeer|basketmaker|basketweaver|bass|bassist|basso|bassoonist|bastard|baster|bather|batman|batsman|batter|battlefield|battlefront|battleground|battler|baulker|bawd|bawler|beachcomber|beachhead|beadle|beadsman|beak|bear|beard|bearer|bearing|beast|beat|beater|beatnik|beau|beautician|beauty|bed|bedesman|bedfellow|bedground|bedlamite|bedside|bedwetter|beefeater|beehive|beekeeper|beeline|begetter|beggar|beggarman|beggarwoman|beginner|beginning|beguiler|begum|behaviorist|behaviourist|behemoth|beholder|beldam|beldame|believer|bellboy|belle|bellhop|belligerent|bellman|bellower|bellwether|belly|bellyacher|bellybutton|beloved|belt|benedick|benedict|benefactor|benefactress|beneficiary|bent|benthos|bereaved|berk|berm|berserk|berserker|berth|besieger|best|bestower|betrayer|betrothed|better|bettor|bey|bibliographer|bibliophile|bibliopole|bibliopolist|bibliothec|bibliotist|bicycler|bicyclist|bidder|bigamist|bight|bigot|bigwig|bilge|bilges|bilingual|bilingualist|billionaire|bilocation|bimbo|bimetallist|bindery|binger|biochemist|biographer|biologist|biophysicist|biosphere|bird|birdbrain|birder|birth|birthplace|bisexual|bishop|bishopric|bitch|biter|bitthead|bivouac|blabber|blabbermouth|blackamoor|blackguard|blackleg|blackmailer|blacksmith|blade|blasphemer|blaster|bleacher|bleeder|blighter|block|blocker|blockhead|blogger|bloke|blond|blonde|blood|blowhard|blubberer|bludgeoner|bluecoat|bluejacket|bluenose|bluestocking|bluffer|blunderer|blusterer|boarder|boaster|boatbuilder|boater|boatman|boatswain|boatyard|bobby|bobbysoxer|bodybuilder|bodyguard|boffin|bohemian|bolshie|bolshy|bombardier|bomber|bombshell|bondholder|bondmaid|bondman|bondsman|bondswoman|bondwoman|bonehead|bonesetter|boniface|boob|booby|bookbinder|bookbindery|bookdealer|booker|bookie|bookkeeper|booklover|bookmaker|bookman|bookseller|bookworm|boomer|boondocks|boor|booster|bootblack|bootlegger|bootlicker|bootmaker|boozer|border|borderer|borderland|borderline|bore|borough|borrower|boss|bosun|botanist|botcher|bottom|boulevardier|bouncer|bound|boundary|bounder|bounds|bourgeois|bourn|bourne|bowdleriser|bowdlerizer|bowels|bowler|bowman|boxer|boy|boyfriend|bozo|bracero|brachycephalic|braggart|bragger|brahman|brahmin|brain|brainiac|brainworker|brakeman|brat|brave|bravo|brawler|breach|breadbasket|breadwinner|break|breaker|breaststroker|breeder|brewer|briber|brick|brickfield|bricklayer|brickyard|bride|bridegroom|bridesmaid|bridgehead|brigadier|brigand|brink|broad|broadcaster|broker|brokerage|broncobuster|brother|brow|browser|bruiser|brunet|brunette|brute|buccaneer|buckaroo|buckeroo|bucolic|buddy|buff|buffer|buffoon|bugger|bugler|bugologist|builder|bulimic|bull|bullfighter|bully|bullyboy|bum|bumbler|bumpkin|bungler|bunkmate|bunny|bunter|bureaucrat|burg|burgess|burgher|burglar|burgomaster|burgrave|bursar|busboy|bush|bushman|bushwhacker|businessman|businessperson|businesswoman|busker|buster|busybody|butch|butcher|butler|butt|butter|butterball|butterfingers|buttinsky|buyer|bystander|cabalist|cabinetmaker|cabstand|cad|caddie|cadet|cadger|caffer|caffre|cager|caitiff|calculator|calif|caliph|caliphate|caller|calligrapher|calligraphist|cambium|cameraman|camp|campaigner|camper|campground|campmate|campong|campsite|campus|canary|candidate|candlemaker|candymaker|cannibal|cannoneer|canoeist|canon|canonist|canthus|canton|cantor|canvasser|cap|capital|capitalist|capitulum|capo|captain|captive|captor|capturer|carabineer|carabinier|carbineer|card|cardholder|cardinal|cardiologist|cardsharp|cardsharper|careerist|caregiver|caretaker|carhop|caricaturist|carillonneur|caroler|caroller|carouser|carpenter|carper|carpetbagger|carrefour|carrier|carrottop|carter|cartographer|cartoonist|cartwright|carver|casbah|case|caseworker|cashier|castaway|caster|castrate|castrato|casualty|casuist|cat|cataleptic|cataloger|cataloguer|catamite|catch|catcher|catechist|catechumen|caterer|cattleman|cavalier|cavalryman|caveman|cavern|caviler|caviller|cavity|celebrant|celebrater|celebrator|celebrity|celibate|cell|cellist|cemetery|cenobite|censor|centenarian|center|centerfield|centerfielder|central|centre|centrex|centrist|centroid|centurion|ceramicist|ceramist|chachka|chair|chairman|chairperson|chairwoman|challenger|chamberlain|chambermaid|chameleon|champ|champion|chancellor|chandler|changeling|changer|chap|chapelgoer|chaperon|chaperone|chapiter|chaplain|chapman|char|character|charge|chargeman|charioteer|charlatan|charmer|charnel|chartist|charwoman|chased|chaser|chasm|chatelaine|chatterbox|chatterer|chauvinist|chawbacon|cheapjack|cheapskate|cheat|cheater|chebab|checker|checkpoint|cheerer|cheerleader|cheesemonger|chef|chela|chemist|cherub|chevalier|chewer|chichi|chick|chicken|chief|chieftain|child|chiliast|chimneysweep|chimneysweeper|chink|chiromancer|chiropodist|chiropractor|chiseler|chiseller|chit|choirboy|choirmaster|chokepoint|choker|chooser|choragus|choreographer|chorine|chorister|chosen|christ|chromosphere|chronicler|chum|chump|churchgoer|churchman|churchwarden|churchyard|churl|chutzpanik|cicerone|cinematographer|cipher|circle|circuit|circumference|circus|citizen|city|civilian|claimant|clairvoyant|clansman|clanswoman|clapper|clarinetist|clarinettist|classic|classicist|classifier|classmate|claustrophobe|cleaner|clear|clearing|cleft|clergyman|cleric|clericalist|clerk|client|climatologist|climber|clinician|cloakmaker|clockmaker|clocksmith|clod|clone|closer|clotheshorse|clothier|cloverleaf|clown|coach|coachbuilder|coachman|coadjutor|coalfield|coalman|coaster|coastguardsman|coastline|coauthor|coaxer|cobber|cobbler|cockscomb|cocksucker|coconspirator|cocotte|coddler|codefendant|coder|codetalker|codger|coenobite|coeval|cofounder|cog|cognate|cognoscente|coiffeur|coiffeuse|coiner|col|collaborationist|collaborator|colleague|collectivist|collector|colleen|collegian|collier|colliery|colonel|colonial|colonialist|coloniser|colonist|colonizer|colony|coloratura|colored|colorist|colossus|columbarium|columnist|combatant|comber|comedian|comedienne|comer|comforter|comic|commandant|commander|commando|commentator|commie|commissar|commissionaire|commissioner|committeeman|committeewoman|commodore|common|commoner|commons|commonwealth|commune|communicant|communicator|communist|community|commuter|companion|company|compartment|compatriot|compeer|compere|competition|competitor|compiler|complainant|complainer|complexifier|composer|compositor|compromiser|comptroller|compulsive|computer|comrade|con|conceiver|concessionaire|concessioner|conchologist|concierge|conciliator|concubine|conditioner|conductor|conductress|confectioner|confederate|conferee|conferrer|confessor|confidant|confidante|confluence|conformist|confrere|confuter|congregant|congressman|congresswoman|conjurer|conjuror|connection|connoisseur|conqueror|conquistador|conscript|conservationist|conservative|conservativist|conservator|consignee|consigner|consignor|consort|conspirator|constable|constituent|constitutionalist|constructivist|constructor|consul|consultant|consumer|consumptive|contact|contadino|contemplative|contemporary|contender|contestant|contestee|contester|contortionist|contrabandist|contractor|contralto|contrapuntist|contrarian|contributor|contriver|controller|controversialist|conurbation|convalescent|convener|conventioneer|conversationalist|conversationist|convert|conveyancer|conveyer|conveyor|convict|cook|cookie|cooky|coolie|cooly|coon|cooper|cooperator|coordinator|cop|copartner|copilot|copper|coppersmith|copycat|copyist|copyreader|copywriter|coquette|core|coreligionist|corespondent|corium|corncob|corner|cornerback|cornetist|corneum|cornfield|cornhusker|coroner|corporal|corporatist|correspondent|corsair|cosignatory|cosigner|cosmetician|cosmetologist|cosmographer|cosmographist|cosmologist|cosmonaut|cosmopolitan|cosmopolite|costermonger|costumer|costumier|cotenant|cottager|cottar|cotter|cottier|councillor|councilman|councilwoman|counsel|counsellor|counselor|count|counter|counterdemonstrator|counterfeiter|counterman|counterperson|counterrevolutionary|counterrevolutionist|counterspy|countertenor|counterterrorist|counterwoman|countess|country|countryman|countryside|countrywoman|county|courier|course|courser|court|courtesan|courtier|cousin|couturier|cow|coward|cowboy|cowgirl|cowhand|cowherd|cowman|cowpoke|cowpuncher|cowtown|cox|coxcomb|coxswain|coyote|crab|crack|cracker|crackerjack|crackpot|cracksman|cradle|crafter|craftsman|cragsman|crammer|craniologist|crank|cranny|crapshooter|crasher|craven|crawler|crawlspace|crazy|creamery|creator|creature|creditor|creep|creeper|crenel|crenelle|crest|cretin|crevasse|crevice|crewman|cricketer|crier|criminal|criminologist|crimp|crimper|crinion|criollo|cripple|critic|croft|crofter|crone|crony|crook|crookback|crooner|cropper|crossbencher|crosscut|crossing|crossover|crosspatch|crossroad|crossway|crotch|croupier|crown|crud|cruiserweight|crumb|crusader|crust|crybaby|crypt|cryptanalyst|cryptographer|cryptologist|crystallographer|cub|cubbyhole|cubist|cuckold|cuckoo|cuirassier|culmination|culprit|cultist|cultivator|cummings|cunctator|cunt|cupbearer|cur|curandera|curandero|curate|curator|curmudgeon|currier|curtilage|cusp|cuss|custodian|customer|cuticle|cutler|cutpurse|cutter|cutthroat|cybernaut|cyberpunk|cyborg|cyclist|cymbalist|cynic|cypher|cyprian|cytogeneticist|cytologist|czar|czarina|czaritza|dabbler|dacoit|dad|dada|daddy|dago|dairy|dairymaid|dairyman|dakoit|dalesman|dallier|dame|damoiselle|damosel|damozel|damsel|dancer|dandy|danger|danseur|danseuse|daredevil|dark|darkey|darkie|darkness|darky|darling|darner|dastard|date|dateline|dauber|daughter|dauphin|dawdler|dayboy|daydreamer|daygirl|deacon|deaconess|deadbeat|deadeye|deadhead|dealer|dean|dear|dearest|dearie|deary|deb|debaser|debater|debauchee|debaucher|debitor|debtor|debutante|dec|decadent|deceased|decedent|deceiver|decipherer|deckhand|declarer|declination|decoder|decorator|decoy|defalcator|defamer|defaulter|defeatist|defecator|defector|defendant|defender|defile|defiler|defrauder|degenerate|degrader|deification|deipnosophist|deist|delayer|delegate|delimitation|delinquent|deliverer|deliveryman|demagog|demagogue|demander|demarcation|demesne|demigod|demimondaine|democrat|demographer|demographist|demoiselle|demon|demoniac|demonstrator|den|denier|denizen|dentist|denturist|departed|departer|department|dependant|dependency|dependent|deponent|deportee|deposer|depositor|depreciator|depressive|depth|deputy|derelict|derivation|derma|dermatologist|dermis|dervish|descendant|descendent|descender|desert|deserter|designer|deskman|desktop|desperado|desperate|despoiler|despot|destination|destroyer|detainee|detective|determinant|determinist|detractor|developer|development|deviant|deviate|deviationist|devil|devisee|deviser|devisor|devotee|devourer|diabetic|diabolist|diagnostician|dialectician|diamond|diarist|diastema|dichromat|dick|dickhead|dictator|diehard|diemaker|diesinker|dieter|dietician|dietitian|differentiator|dig|digger|dignitary|dike|dilettante|dillydallier|dimwit|diner|dingbat|diocesan|diocese|dip|diplomat|diplomate|diplomatist|dipsomaniac|direction|director|disarmer|disbeliever|disburser|disciple|disciplinarian|discoverer|discriminator|discussant|disentangler|dish|dishwasher|disparager|dispatcher|dispenser|disprover|disputant|dissembler|disseminator|dissenter|dissident|dissimulator|distance|distiller|distortionist|distributer|distributor|district|disturber|diva|diver|diversionist|divide|divider|divine|diviner|divorcee|dj|doc|docent|docker|dockhand|dockside|dockworker|dockyard|doctor|doctrinaire|dodderer|dodger|dodo|doer|dog|doge|dogfighter|dogleg|dogmatist|dogsbody|dolichocephalic|doll|dolt|domain|domestic|domicile|dominatrix|domine|dominee|dominie|dominion|dominus|don|donee|donna|donor|doofus|doorkeeper|doorman|doormat|dooryard|dope|dork|dosser|dotard|double|doubter|doughboy|doula|dove|dowager|downtown|dowser|doxy|doyen|doyenne|draftee|drafter|draftsman|draftsperson|dragger|dragoman|dragon|dragoon|dramatist|draper|draughtsman|draw|drawee|drawer|drawler|dreamer|dresser|dressmaker|dribbler|drifter|drinker|driveller|driver|drone|drooler|drop|dropkicker|dropout|drover|drudge|druggist|drumbeater|drummer|drunk|drunkard|dry|dualist|duce|duchess|duchy|ducky|dud|dude|dueler|duelist|dueller|duellist|duenna|duffer|duke|dukedom|dulcinea|dullard|dumbass|dumbbell|dummy|dump|dumpsite|dunce|dunderhead|dunker|dupe|dustman|dwarf|dweeb|dweller|dyer|dyke|dynamiter|dynamitist|dynast|dyslectic|dyspeptic|earl|earldom|earner|earreach|earshot|earth|earthling|earthman|east|easterner|eater|eavesdropper|eccentric|ecclesiastic|ecdysiast|eclectic|eclecticist|ecliptic|ecologist|econometrician|econometrist|economiser|economist|economizer|ectomorph|edge|edger|edging|editor|editorialist|educatee|educationalist|educationist|educator|effecter|effector|effendi|egalitarian|egghead|egocentric|egoist|egomaniac|egotist|ejaculator|ejector|elder|eldest|elector|electrician|electrocutioner|electrologist|electroplater|electrotherapist|elegist|element|elitist|elocutionist|emancipationist|emancipator|embalmer|embassador|embezzler|embodiment|embroiderer|embroideress|embryologist|emcee|emeer|emeritus|emigrant|emigre|emigree|emir|emirate|emissary|emperor|empire|empiricist|employable|employee|employer|empress|emptiness|emptor|empyrean|emulator|enate|encampment|enchanter|enchantress|enclave|enclosure|encroacher|encyclopaedist|encyclopedist|end|endocrinologist|endodontist|endomorph|endorser|endpoint|enemy|energiser|energizer|enforcer|engineer|engraver|enjoyer|enlistee|enologist|enophile|enquirer|enrollee|ensign|enterpriser|entertainer|enthusiast|entomologist|entrant|entrepot|entrepreneur|enumerator|environment|environmentalist|environs|envoy|enzymologist|eparch|eparchy|epicene|epicenter|epicentre|epicure|epicurean|epidemiologist|epidermis|epigon|epigone|epileptic|episcopate|epistemologist|epitope|equal|equalitarian|equator|equerry|equestrian|equinoctial|equinox|equivocator|eradicator|eremite|eristic|erotic|escalader|escapee|escapist|escapologist|eschatologist|escort|esquire|essayer|essayist|esthete|esthetician|estimator|etcher|ethician|ethicist|ethnarch|ethnic|ethnographer|ethnologist|ethologist|etiologist|etymologist|eulogist|eunuch|evacuee|evaluator|evangelist|everyman|evildoer|evolutionist|ex|exaltation|examinee|examiner|exarch|exarchate|excavation|excavator|exchange|exchanger|exciseman|excogitator|excursionist|excuser|executant|executioner|executive|executor|executrix|exegete|exhibitioner|exhibitionist|exhibitor|exile|existentialist|exodontist|exorciser|exorcist|exosphere|expanse|expat|expatriate|expectorator|expender|experimenter|expert|exploiter|explorer|exponent|exporter|expositor|expounder|expressionist|expurgator|exterior|exterminator|extern|extoller|extortioner|extortionist|extra|extravert|extreme|extremist|extremity|extremum|extrovert|exurbia|eye|eyeful|eyeshot|eyewitness|eyrie|eyry|fabricator|fabulist|face|facilitator|factor|factotum|faddist|fag|faggot|fagot|failure|fairground|fairway|fairy|fake|fakeer|faker|fakir|falangist|falconer|faller|falsifier|familiar|family|famulus|fan|fanatic|fancier|fantasist|fantast|faqir|faquir|fare|farm|farmer|farmerette|farmhand|farmland|farmplace|farmstead|farrier|fascist|fascista|fashionmonger|fastener|fatalist|fathead|father|fatherland|fatso|fatty|faubourg|fault|faultfinder|faulting|fauvist|favorite|favourite|fawner|featherweight|federalist|feeder|fella|fellah|feller|fellow|felon|female|feminist|fence|fencer|fencesitter|fermentologist|ferryman|fetishist|feudatory|fiance|fiancee|fibber|fiddler|fiduciary|fiefdom|field|fielder|fieldhand|fieldsman|fieldworker|fiend|fighter|figure|figurehead|figurer|filer|filibuster|filibusterer|filicide|fille|filmmaker|finagler|finalist|financier|finder|fingertip|finish|finisher|fink|fireball|firebrand|firebreak|firebug|firefighter|fireguard|fireman|fireside|firmament|firstborn|fisher|fisherman|fishery|fishmonger|fishwife|fissure|fitter|fixer|fixture|flack|flagellant|flak|flake|flamen|flanker|flapper|flasher|flatfoot|flatmate|flatterer|flautist|fledgeling|fledgling|fleer|flibbertigibbet|flier|flies|flirt|floater|flogger|floor|floorwalker|floozie|floozy|flop|florist|flouter|flowerbed|fluke|flunkey|flunky|flutist|flyer|flyway|flyweight|focus|fodder|foe|foeman|fogey|fogy|follower|fomenter|fondler|foodie|fool|foot|footballer|footer|foothold|footman|footpad|footslogger|fop|forager|foramen|forbear|forebear|forecaster|forefather|forefront|foreigner|forelady|foreman|foremother|forepart|foreperson|forerunner|forester|forewoman|forge|forger|forgiver|fork|fornicator|fornicatress|fortuneteller|forward|fossil|fossilist|fosterling|founder|foundling|foundress|fountainhead|fowler|fox|fracture|framer|franklin|fratricide|fraud|freak|freebooter|freedman|freedwoman|freeholder|freelance|freelancer|freeloader|freeman|freethinker|freewheeler|freewoman|frequenter|fresher|freshman|friar|friend|fringe|frog|frogman|front|frontbencher|frontier|frontiersman|frontierswoman|frotteur|fruitcake|fruiterer|frump|fry|fucker|fuckhead|fuckup|fugitive|fugleman|fullback|fuller|fumbler|fumigator|funambulist|functionalist|functionary|fundamentalist|fundraiser|funfair|furrier|fusilier|fusspot|futurist|fuzz|gadabout|gadfly|gadgeteer|gaff|gaffer|gagman|gagster|gagwriter|gainer|gal|gallant|galoot|galvaniser|galvanizer|gambist|gambler|gamecock|gamekeeper|gamin|gamine|ganef|ganger|gangsta|gangster|ganof|gaolbird|gaoler|gap|garbageman|garden|gardener|garmentmaker|garnishee|garroter|garrotter|gasbag|gasfield|gasman|gastroenterologist|gastronome|gasworks|gatecrasher|gatekeeper|gatherer|gaucho|gawk|gawker|gay|gazetteer|geek|geezer|geisha|gem|gendarme|genealogist|general|generalissimo|generalist|generator|geneticist|genitor|genius|gent|gentile|gentleman|gentlewoman|geographer|geologist|geomancer|geometer|geometrician|geophysicist|geosphere|geriatrician|gerontologist|ghetto|ghost|ghostwriter|ghoul|giant|giggler|gigolo|gilder|gillie|ginzo|gipsy|girl|girlfriend|git|gitana|gitano|giver|glade|gladiator|glassblower|glassmaker|glassworker|glassworks|glazer|glazier|gleaner|globetrotter|glossarist|glutton|goal|goalie|goalkeeper|goaltender|goat|goatherd|gob|gobbler|god|godchild|goddaughter|godfather|godmother|godparent|godson|goer|gofer|goffer|goldbeater|goldbrick|goldfield|goldsmith|goldworker|golfer|goliard|goliath|gondolier|gondoliere|goner|gonif|goniff|goof|goofball|gook|goon|goose|gopher|gorge|gorger|gospeler|gospeller|gossip|gossiper|gossipmonger|gouger|gourmand|gourmandizer|gourmet|governess|governor|goy|grabber|grad|grader|graduate|grainfield|grammarian|gramps|gran|grandad|grandaunt|grandchild|granddad|granddaddy|granddaughter|grandee|grandfather|grandma|grandmaster|grandmother|grandnephew|grandniece|grandpa|grandparent|grandson|grandstander|granduncle|grange|granger|grannie|granny|grantee|granter|grantor|graphologist|grappler|grass|grassland|grave|gravedigger|graverobber|graveyard|gravida|graybeard|grazier|greaseball|greaser|great|green|greenbelt|greengrocer|greenhorn|greenskeeper|greenway|greeter|grenadier|greyback|greybeard|gridiron|griever|grifter|grind|gringo|grinner|griot|grip|groaner|grocer|groom|groomsman|grouch|ground|groundbreaker|groundkeeper|groundling|grounds|groundskeeper|groundsman|groupie|grove|groveler|groveller|grower|growler|grownup|grumbler|grump|grunt|grunter|guarantor|guard|guardian|guardsman|guerilla|guerrilla|guesser|guest|guestworker|guide|guitarist|gulf|gull|gulper|gumshoe|gun|gunman|gunner|gunrunner|gunslinger|gunsmith|guru|gutter|guttersnipe|guvnor|guy|guzzler|gymnast|gymnosophist|gynaecologist|gynandromorph|gynecologist|gypsy|haberdasher|habitant|habitat|habitation|habitue|hack|hacker|hadji|haematologist|haemophile|haemophiliac|hag|haggler|hagiographer|hagiographist|hagiologist|hairdresser|hairline|hairsplitter|hairstylist|haji|hajji|hakeem|hakim|halberdier|halfback|ham|hamlet|hammerhead|hand|handicapper|handler|handmaid|handmaiden|handyman|hanger|hangman|hangout|hangover|haranguer|harasser|harbor|harborage|harbour|harbourage|hardliner|hardwareman|harlequin|harlot|harmoniser|harmonizer|harper|harpist|harpooneer|harpooner|harpsichordist|harpy|harridan|harrier|harvester|hatchery|hatemonger|hater|hatmaker|hatter|hauler|haulier|haunt|have|haven|hawk|hawker|hawkshaw|hayfield|hayseed|hazan|head|headcounter|headhunter|heading|headliner|headman|headmaster|headmistress|headsman|headspring|headwaiter|headwater|healer|hearer|hearing|heart|heartbreaker|hearth|heartland|heartthrob|heath|heathen|heathland|heaven|heavens|heaver|heavy|heavyweight|heckler|hedger|hedonist|heel|heights|heir|heiress|heliopause|heliosphere|hell|hellcat|heller|hellhole|hellhound|hellion|helmsman|helot|help|helper|helpmate|helpmeet|hem|hematologist|hemiplegic|hemisphere|hemline|hemophile|hemophiliac|henchman|herald|herbalist|herder|herdsman|here|heretic|heritor|hermaphrodite|hermit|hero|heroine|heronry|herpetologist|hesitater|hesitator|heterosexual|hewer|hiatus|hick|hideaway|hideout|hierarch|high|highbinder|highbrow|highflier|highflyer|highjacker|highwayman|hijacker|hiker|hillbilly|hilltop|hilum|hinterland|hip|hipline|hippie|hippy|hipster|hire|hireling|hirer|hisser|histologist|historian|historiographer|histrion|hitchhiker|hitman|hitter|hoarder|hoaxer|hobbledehoy|hobbler|hobbyist|hobo|hodman|hog|holder|holdout|holdover|hole|holidaymaker|hollow|holy|hombre|home|homebody|homeboy|homebuilder|homegirl|homeland|homeless|homemaker|homeopath|homeowner|homesteader|hometown|homo|homoeopath|homophile|homophobe|homosexual|homunculus|honcho|honey|honeymooner|honkey|honkie|honky|honoree|hood|hoodlum|hoodoo|hoofer|hooker|hooligan|hope|hopeful|hoper|hopper|horizon|hornist|horologer|horologist|horseman|horseshoer|horsewoman|horst|horticulturist|hosier|host|hostage|hosteller|hostess|hostler|hotbed|hotdog|hotelier|hotelkeeper|hotelman|hothead|hotshot|hotspot|hotspur|hound|houri|house|housebreaker|housebuilder|housefather|houseguest|householder|househusband|housekeeper|housemaid|houseman|housemaster|housemate|housemother|housewife|housewrecker|hoyden|hub|hubby|huckster|huddler|hugger|hulk|humanist|humanitarian|humdinger|hummer|humorist|humourist|humpback|hunchback|hunk|hunter|huntress|huntsman|hurdler|hurler|husband|husbandman|hussar|hussy|hustler|hydathode|hydrologist|hydromancer|hydrosphere|hygienist|hymie|hyperope|hypertensive|hypnotiser|hypnotist|hypnotizer|hypochondriac|hypocrite|hypotensive|hysteric|ianfu|iceman|ichthyologist|iconoclast|ideal|idealist|idealogue|ideologist|ideologue|idiot|idler|idol|idolater|idolatress|idoliser|idolizer|ignoramus|illegitimate|illiterate|illusionist|illustrator|image|imam|imaum|imbecile|imbiber|imitator|immigrant|immortal|immune|immunologist|imp|imperialist|imperium|impersonator|import|importee|importer|imposter|impostor|impresario|impressionist|improver|inamorata|inamorato|incarnation|incendiary|inciter|inclination|incompetent|incubus|incumbent|incurable|independent|indexer|indigen|indigene|individual|individualist|indorser|inducer|inductee|industrialist|indweller|inebriate|infant|infanticide|infantryman|inferior|infernal|inferno|infidel|infield|infielder|infiltrator|informant|informer|ingenue|ingrate|inhabitant|inheritor|inheritress|inheritrix|initiate|initiator|inmate|innersole|innkeeper|innocent|innovator|inoculator|inpatient|inquirer|inquisitor|insect|inside|insider|insole|insolvent|insomniac|inspector|inspirer|instigant|instigator|instructor|instructress|instrument|instrumentalist|insured|insurgent|insurrectionist|intellect|intellectual|intercessor|interchange|interface|interior|interlocutor|interloper|intermediary|intermediator|intern|internationalist|interne|internee|internist|internuncio|interpreter|interrogator|intersection|intersex|intervenor|interviewee|interviewer|intimate|intriguer|introvert|intruder|invader|invalid|invalidator|inventor|investigator|investor|invigilator|invitee|ionosphere|ironist|ironman|ironmonger|ironside|ironworker|ironworks|irredenta|irredentist|irregular|irreligionist|irridenta|irridentist|isarithm|island|islander|isobar|isochrone|isoclinal|isogone|isogram|isohel|isolationist|isopleth|isotherm|issue|itinerant|itinerary|jabberer|jack|jackanapes|jackass|jade|jailbird|jailer|jailor|janissary|janitor|jawan|jaywalker|jazzman|jeerer|jerk|jerker|jester|jewel|jeweler|jeweller|jezebel|jigaboo|jilt|jimdandy|jimhickey|jingo|jingoist|jinx|job|jobber|jobholder|jock|jockey|jogger|john|joiner|joker|jokester|jonah|jongleur|journalist|journeyer|journeyman|judge|juggler|juicer|jumper|junction|jungle|junior|junkie|junky|junkyard|jurisdiction|jurist|juror|juryman|jurywoman|justice|justiciar|justiciary|justifier|juvenile|juxtaposition|kabbalist|kachina|kaffir|kafir|kalif|kaliph|kamikaze|kampong|kasbah|keeper|key|keyboardist|khalif|khalifah|khan|khanate|kibbutznik|kibitzer|kicker|kid|kiddy|kidnaper|kidnapper|kike|killer|killjoy|kin|kindergartener|kindergartner|king|kingdom|kingmaker|kingpin|kink|kinsman|kinsperson|kinswoman|kisser|kleptomaniac|klutz|knacker|knave|kneeler|knight|knitter|knocker|knockout|knothole|knower|knucklehead|kolkhoznik|kook|kraal|kvetch|lab|laboratory|laborer|labourer|lacer|lackey|lad|laddie|ladino|lady|ladylove|laggard|lagger|lair|laird|lama|lamb|lame|lamenter|laminator|lamplighter|lampooner|lancer|land|landgrave|landholder|landlady|landlord|landlubber|landman|landmark|landowner|landscape|landscaper|landscaping|landscapist|landsman|langlaufer|languisher|lapidarist|lapidary|lapidator|lapidist|larcener|larcenist|lascar|lasher|lass|lassie|latecomer|lather|latitude|latitudinarian|laudator|lauder|laugher|laughingstock|launderette|laundress|laundry|laundryman|laundrywoman|laureate|lawbreaker|lawgiver|lawmaker|lawman|lawn|lawyer|layabout|layer|layman|layperson|lazar|lazybones|lea|lead|leader|leak|leaker|leaper|learner|leaseholder|leatherneck|leaver|lech|lecher|lector|lecturer|ledgeman|lee|leech|leeward|left|leftfield|lefthander|leftist|lefty|legate|legatee|legionary|legionnaire|legislator|lender|lensman|lenticel|leper|lepidopterist|lepidopterologist|lesbian|lessee|lessor|letch|letter|letterer|letterman|leveler|leveller|lexicographer|lexicologist|ley|liar|libber|libeler|liberal|liberalist|liberator|libertarian|libertine|librarian|librettist|licensee|licenser|licentiate|lie|liege|liegeman|lieutenant|life|lifeguard|lifer|lifesaver|lifter|light|lighterman|lightweight|lilliputian|limb|limey|limit|limner|limnologist|limper|line|lineation|linebacker|lineman|linendraper|linesman|lingerer|linguist|linkboy|linkman|linksman|lion|liquidator|lisper|listener|lister|literate|lithographer|lithomancer|lithosphere|litigant|litigator|litterateur|litterbug|litterer|liturgist|liver|liveryman|lizard|loader|loafer|loaner|loather|lobbyist|lobsterback|lobsterman|locale|locality|locate|locater|location|locator|lockkeeper|lockman|lockmaster|locksmith|locum|locus|lodger|logger|loggerhead|logician|logistician|logomach|logomachist|loiterer|loner|longbowman|longer|longitude|longshoreman|looker|lookout|loon|looney|loony|looter|lord|loser|lot|loudmouth|lounger|louse|lout|love|lovely|lover|lowbrow|lowerclassman|lowlife|loxodrome|loyalist|lubber|luff|luger|lulu|lumberjack|lumberman|lumberyard|luminary|lummox|lump|lumper|lunatic|luncher|lunger|lunkhead|lurcher|lurker|lush|lutanist|lutenist|luthier|lutist|lyricist|lyrist|ma|macaroni|mace|macebearer|macer|machinator|machine|machinist|macho|macroeconomist|macushla|madam|madame|madcap|madman|madrigalist|madwoman|maenad|maestro|mafioso|magdalen|magician|magistrate|magnate|magnifico|magpie|magus|maharaja|maharajah|maharanee|maharani|mahatma|mahout|maid|maiden|maidservant|mailer|mailman|maimer|mainstay|maintainer|major|majorette|maker|malacologist|malahini|malcontent|male|malefactor|malfeasant|maligner|malik|malingerer|maltman|maltreater|maltster|mama|mamma|mammalogist|mammy|man|manager|manageress|manakin|mandarin|mandatary|mandate|mandator|mandatory|maneuverer|mangler|maniac|manicurist|manikin|manipulator|mannequin|mannikin|manoeuvrer|manservant|mansion|manslayer|mantle|mantrap|manufacturer|manumitter|mapper|marathoner|marauder|march|marcher|marchioness|marchland|mare|margrave|maria|marine|mariner|mark|marketer|marksman|maroon|marquess|marquis|marquise|married|marshal|marshall|martinet|martyr|marveller|masher|masker|masochist|mason|masquer|masquerader|massager|masseur|masseuse|mastaba|mastabah|master|mastermind|masthead|masturbator|matador|match|matcher|matchmaker|mate|mater|materfamilias|material|materialist|mathematician|matman|matriarch|matricide|matriculate|matrikin|matrisib|matrix|matron|mauler|mausoleum|maven|maverick|mavin|maximum|mayor|mayoress|meadow|meanie|meany|measurer|meatman|mecca|mechanic|mechanist|medalist|medallist|meddler|mediator|mediatrix|medic|medico|medina|mediocrity|medium|meeter|meeting|megalomaniac|megalopolis|melancholiac|melancholic|meliorist|melter|member|memoriser|memorizer|memsahib|mender|mendicant|menial|mensch|mensh|mentioner|mentor|mercenary|mercer|merchandiser|merchant|meridian|merrymaker|meshuggeneh|meshuggener|mesmerist|mesmerizer|mesomorph|mesosphere|messenger|messiah|messmate|mestiza|mestizo|metalhead|metallurgist|metalworker|mete|meteorologist|metic|metropolis|metropolitan|mezzo|microbiologist|microeconomist|micropyle|microscopist|midair|midden|middle|middlebrow|middleman|middleweight|midfield|midget|midinette|midland|midpoint|midshipman|midst|midstream|midway|midwife|migrant|migrator|mikado|miler|militant|militarist|militiaman|milkmaid|milkman|milksop|millenarian|millenarist|miller|milliner|millionaire|millionairess|millwright|milord|mime|mimer|mimic|mimicker|mind|minder|minefield|miner|mineralogist|mineworker|miniaturist|minimalist|minimum|minion|minister|ministrant|minor|minstrel|minter|minx|misanthrope|misanthropist|misbeliever|miscreant|miser|misfit|misleader|misogamist|misogynist|miss|missionary|missioner|missis|missus|missy|mistress|mixologist|mnemonist|moaner|mobster|mocker|mod|model|modeler|modeller|moderate|moderationist|moderator|modern|modernist|modifier|modiste|mogul|molding|mole|molester|moll|mollycoddle|mollycoddler|mom|momma|mommy|monarch|monarchist|monastic|monetarist|moneyer|moneygrubber|moneylender|moneymaker|moneyman|monger|mongoloid|monitor|monitrice|monk|monkey|monochromat|monogamist|monogynist|monolingual|monologist|monomaniac|monopoliser|monopolist|monopolizer|monotheist|monster|monument|mooch|moocher|moonlighter|moonshiner|moorage|mooring|mope|mopper|moppet|moralist|moron|morosoph|mortal|mortgagee|mortgager|mortgagor|mortician|mossback|mother|motherfucker|motherland|motile|motorcyclist|motormouth|moujik|moulding|mountaineer|mountebank|mounter|mourner|mouse|mouth|mouthpiece|mover|moviegoer|muadhdhin|muazzin|muckraker|mudslinger|muezzin|mufti|mug|muggee|mugger|muggins|mugwump|mujahid|mujik|mujtihad|mulatto|muleteer|muller|mum|mumbler|mummer|mummy|muncher|municipality|muralist|murderee|murderer|murderess|murmurer|muscle|musclebuilder|muscleman|muser|musher|musician|musicologist|musketeer|mute|mutilator|mutineer|mutterer|muttonhead|muzhik|muzjik|muzzler|mycologist|mycophage|mycophagist|myope|myrmidon|mystic|mythologist|nabob|nadir|nag|nagger|naif|nailer|name|namer|namesake|nan|nance|nanna|nanny|nanus|nape|naprapath|narc|narcissist|narcist|narcoleptic|nark|narrator|natator|national|nationalist|native|nativist|natural|naturalist|naturist|naturopath|navel|navigator|navvy|nawab|naysayer|nazi|nebbech|nebbish|necessitarian|necker|necromancer|necropolis|needer|needlewoman|needleworker|negativist|neglecter|negotiant|negotiator|negotiatress|negotiatrix|neighbor|neighborhood|neighbour|neighbourhood|neoclassicist|neocon|neoconservative|neoliberal|neologist|neonate|neophyte|nephew|nepotist|nerd|nest|nester|nestling|netkeeper|netminder|neurasthenic|neurobiologist|neurolinguist|neurologist|neuroscientist|neurosurgeon|neurotic|neutral|neutralist|newbie|newborn|newcomer|newlywed|newsagent|newsboy|newscaster|newsdealer|newsman|newsmonger|newspaperman|newspaperwoman|newsperson|newsreader|newsvendor|newswoman|newswriter|nib|nibbler|nidus|niece|nigga|niggard|nigger|niggler|nightbird|nighthawk|nightrider|nigra|nihilist|nincompoop|ninja|ninny|nipper|niqaabi|nirvana|nitpicker|nitwit|nob|noble|nobleman|noblewoman|nobody|noctambulist|node|nomad|nombril|nominalist|nominator|nominee|nonachiever|nonagenarian|nonattender|nonbeliever|noncandidate|noncitizen|noncom|noncombatant|noncompliant|nonconformist|nondescript|nondrinker|nondriver|nonentity|nonesuch|nonmember|nonpareil|nonparticipant|nonpartisan|nonpartizan|nonperson|nonreader|nonresident|nonsmoker|nonstarter|nonsuch|nonworker|nook|normaliser|normalizer|north|northeast|northland|northwest|nosher|notability|notable|notary|notch|noticer|novelist|novice|novillero|novitiate|nucha|nucleus|nude|nudger|nudist|nudnick|nudnik|nuisance|nullifier|nullipara|numerologist|numismatist|numismatologist|numskull|nun|nuncio|nurse|nurseling|nursemaid|nurser|nurseryman|nursling|nut|nutcase|nutritionist|nutter|nymph|nymphet|nympho|nympholept|nymphomaniac|oaf|oarsman|oarswoman|oasis|objector|oblate|obliger|oboist|obscurantist|observer|obsessive|obstetrician|obstructer|obstructionist|obstructor|occident|occultist|occupant|occupier|oceanaut|oceanographer|octogenarian|octoroon|oculist|odalisque|oddball|odist|oenologist|oenophile|offender|offerer|offeror|officeholder|officer|official|officiant|offspring|ogler|ogre|oiler|oilfield|oilman|oldster|oldtimer|oligarch|ombudsman|omnivore|omphalos|omphalus|onanist|oncologist|oneiromancer|onlooker|onomancer|open|opener|opening|operagoer|operative|operator|ophthalmologist|opponent|opportunist|opposer|opposite|opposition|oppressor|optician|optimist|optometrist|oracle|orator|orbit|orchard|orchestrator|ordainer|orderer|orderly|ordinand|ordinary|organiser|organist|organizer|orient|orientalist|origin|originator|ornamentalist|ornithologist|orphan|orphrey|orthodontist|orthoepist|orthopaedist|orthopedist|orthoptist|osculator|osteologer|osteologist|osteopath|osteopathist|ostiarius|ostiary|ostler|ostrich|otolaryngologist|otologist|otorhinolaryngologist|ouster|outback|outcast|outcaste|outdoors|outdoorsman|outdoorswoman|outfield|outfielder|outfitter|outgoer|outlander|outlaw|outlier|outline|outpatient|outport|outpost|outrider|outside|outsider|outskirt|outskirts|outsole|outstation|overachiever|overcomer|overhead|overlook|overlord|overnighter|overseer|owner|oyabun|ozonosphere|pa|pacha|pachuco|pacificist|pacifier|pacifist|packer|packman|packrat|padder|paddler|paddy|padre|padrone|paederast|paediatrician|paedophile|pagan|page|pageboy|pain|paint|painter|pal|paladin|palaeontologist|palaestra|palate|palatinate|palatine|paleface|paleographer|paleographist|paleontologist|palestra|pallbearer|pallium|palmist|palmister|palooka|palsgrave|pampas|pamperer|pamphleteer|pandar|pander|panderer|panegyrist|panelist|panellist|panhandle|panhandler|panjandrum|pansexual|pansy|pantheist|pantomimer|pantomimist|pantryman|pantywaist|papa|paparazzo|paperboy|paperer|paperhanger|papist|papoose|pappa|pappoose|para|parachuter|parachutist|parader|paradise|paragon|paragrapher|paralegal|parallel|paralytic|paramedic|paramedical|paramour|paranoiac|paranoid|paraplegic|paraprofessional|parapsychologist|parasite|paratrooper|parcel|pardner|pardoner|parent|parer|paretic|pariah|paries|parish|parishioner|park|parkland|parliamentarian|parlormaid|parlourmaid|parodist|parolee|parricide|parrot|parson|part|partaker|parterre|participant|parting|partisan|partitionist|partizan|partner|parts|party|partygoer|parvenu|pasha|pass|passenger|passer|passerby|paster|pastor|pasture|pastureland|patch|patchboard|pate|patentee|pater|paterfamilias|path|pathfinder|pathologist|patient|patisserie|patrial|patriarch|patriarchate|patrician|patricide|patrikin|patriot|patrioteer|patrisib|patroller|patrolman|patron|patroness|patronne|patsy|pattern|patternmaker|patzer|pauper|pawer|pawn|pawnbroker|payee|payer|paymaster|paynim|peacekeeper|peacemaker|peacenik|peach|peak|peanut|pearler|peasant|peculator|pedagog|pedagogue|pedaler|pedaller|pedant|peddler|pederast|pedestrian|pediatrician|pediatrist|pedlar|pedodontist|pedophile|peeler|peeper|peer|peeress|peewee|pelter|pendragon|penetralia|penetrator|penitent|penman|penologist|penpusher|pensionary|pensioner|pentathlete|peon|perceiver|perch|percher|percipient|percussionist|perfecter|perfectionist|perforation|performer|perfumer|peri|periapsis|perigee|perigon|perihelion|perijove|perilune|perinatologist|periodontist|peripatetic|periselene|perisher|perjurer|perpetrator|persecutor|person|personage|personality|personification|perspirer|persuader|pervert|peshmerga|pessimist|pest|pesterer|pesthole|pet|petitioner|petter|pettifogger|phalangist|pharisee|pharmacist|pharmacologist|philanderer|philanthropist|philatelist|philhellene|philhellenist|philistine|philologist|philologue|philomath|philosopher|philosophiser|philosophizer|phlebotomist|phoner|phonetician|phoney|phonologist|phony|photographer|photojournalist|photometrician|photometrist|photosphere|phrenologist|physician|physicist|physiologist|physiotherapist|phytochemist|phytologist|pianist|piazza|picador|picaninny|piccaninny|pickaninny|picker|picket|picklepuss|picknicker|pickpocket|pickup|picnicker|pig|pigeonhole|piggery|pigman|pigmy|pike|pilferer|pilgrim|pill|pillager|pillar|pillock|pilot|pimp|pinchgut|pinhead|pink|pinko|pinnacle|pinpoint|pioneer|piper|piranha|pirate|piscary|pisser|piste|pistoleer|pit|pitch|pitcher|pitchman|pitman|pivot|place|placeholder|placekicker|placeman|placeseeker|plagiariser|plagiarist|plagiarizer|plainclothesman|plainsman|plaintiff|plaiter|planet|planner|plant|plantation|planter|plantsman|plasterer|plate|platelayer|plater|platitudinarian|playactor|playboy|player|playfellow|playgoer|playground|playmaker|playmate|playwright|plaza|pleader|pleasance|pleaser|pleb|plebe|plebeian|pledge|pledgee|pledger|plenipotentiary|plier|plodder|plot|plotter|ploughboy|ploughman|ploughwright|plowboy|plower|plowman|plowwright|plugboard|plugger|plumber|plunderer|plunger|pluralist|plutocrat|plyer|poacher|pocket|podiatrist|poet|poetess|poetiser|poetizer|poilu|point|pointillist|pointsman|poisoner|poke|pol|polack|pole|polemic|polemicist|polemist|policeman|policewoman|policyholder|politician|politico|poll|polls|pollster|polluter|poltroon|polyandrist|polygamist|polyglot|polygynist|polymath|polytheist|pom|pommy|pomologist|ponce|ponderer|pontifex|pontiff|poof|pool|pooler|poop|poove|pop|pope|popinjay|populariser|popularizer|populist|pore|pornographer|port|porter|portraitist|portrayer|portwatcher|poser|poseur|poseuse|position|positivist|posseman|possession|possessor|possible|post|postdoc|poster|postgraduate|postilion|postillion|postman|postmaster|postmistress|postponer|postulant|postulator|posturer|potboy|potentate|pothead|potholer|pothunter|potman|potter|potterer|pottery|pouch|pouf|poulterer|poultryman|pouter|powderer|power|powerbroker|powerhouse|practician|practitioner|praetor|pragmatist|prairie|prankster|prater|prattler|prayer|preacher|prebendary|precentor|preceptor|precinct|precursor|predator|predecessor|predestinarian|predestinationist|predictor|preemie|preemptor|prefect|prefecture|prelate|premie|premier|premises|prentice|presbyope|presbyter|preschooler|presence|presenter|presentist|preservationist|preserve|preserver|president|pressman|prestidigitator|preteen|preteenager|pretender|preterist|pretor|prevaricator|prexy|prey|prick|prickteaser|priest|priestess|prig|primate|primigravida|primipara|primitive|primogenitor|primus|prince|princedom|princeling|princess|principal|principality|printer|printmaker|prior|prioress|prisoner|private|privateer|privateersman|prizefighter|pro|probable|probationer|processor|proconsul|procrastinator|proctologist|proctor|procurator|procurer|procuress|prodigal|prodigy|producer|prof|professional|professor|profiteer|profligate|progenitor|progeny|prognosticator|programmer|progressive|prohibitionist|projectionist|prole|proletarian|promisee|promiser|promisor|promoter|prompter|promulgator|proofreader|propagandist|propagator|property|prophesier|prophet|prophetess|propman|proponent|proposer|propositus|proprietor|proprietress|proprioceptor|prosecutor|proselyte|prospect|prospector|prosthetist|prosthodontist|prostitute|protagonist|protectionist|protector|protectorate|protege|protegee|protester|protozoologist|provenance|provenience|provider|province|provincial|provisioner|provocateur|provoker|provost|prowler|proximity|proxy|prude|pruner|psalmist|psephologist|pseud|pseudo|pseudohermaphrodite|psychiatrist|psychic|psycho|psychoanalyst|psycholinguist|psychologist|psychoneurotic|psychopath|psychophysicist|psychotherapist|psychotic|pteridologist|publican|publiciser|publicist|publicizer|publisher|puddle|puddler|pudge|pueblo|puerpera|pugilist|puke|puller|puncher|punctum|pundit|punk|punster|punter|pup|pupil|puppet|puppeteer|puppy|purchaser|purist|puritan|purlieu|purser|pursued|pursuer|purveyor|pusher|pushover|pussycat|putter|putterer|putz|pygmy|pyrographer|pyromancer|pyromaniac|qadi|qibla|quack|quad|quadrant|quadripara|quadriplegic|quadroon|quadruplet|quaestor|quaffer|quaker|qualifier|quarreler|quarreller|quarrier|quarry|quarryman|quarter|quarterback|quartermaster|queen|queer|querier|quester|questioner|quibbler|quidnunc|quietist|quin|quint|quintipara|quintuplet|quisling|quitter|quizmaster|quizzer|quoter|rabbi|racialist|racist|racker|racketeer|raconteur|radical|radiobiologist|radiochemist|radiographer|radiologist|radiotherapist|radius|rafter|raftman|raftsman|ragamuffin|ragpicker|ragsorter|raider|railbird|railhead|railroader|railwayman|railyard|rainmaker|raiser|raja|rajah|rake|rakehell|rambler|ramrod|ranch|rancher|ranee|range|ranger|rani|ranker|ranter|raper|rapist|rappeller|rapper|rapporteur|rapscallion|rascal|rat|ratepayer|rathole|ratifier|ratiocinator|rationalist|ratter|raver|ravisher|reach|reactionary|reader|realist|realm|reaper|rear|rearward|reasoner|rebel|rebuker|rebutter|receiver|receptionist|recidivist|recipient|recitalist|reciter|reckoner|recluse|reconciler|recorder|recoverer|recreant|recruit|recruiter|rectifier|rector|recusant|red|redact|redactor|redcap|redcoat|redeemer|redhead|redheader|redneck|reeler|reenactor|ref|referee|referral|refiner|refinisher|reformer|reformist|refuge|refugee|refuter|regent|regicide|region|registrant|registrar|regular|regulator|reincarnation|relation|relative|relief|reliever|religionist|religious|reminder|remover|remunerator|rendezvous|renegade|renovator|rent|renter|rentier|rep|repair|repairer|repairman|repatriate|repeater|replacement|reporter|repository|representative|reproacher|reprobate|reprover|republican|requester|rescuer|researcher|reservation|reserve|reservist|residence|resident|resister|resort|respecter|respondent|responder|restauranter|restaurateur|rester|restorer|restrainer|retailer|retainer|retaliator|retard|retiree|retreat|retreatant|reveler|reveller|revenant|revenuer|reverend|reversioner|reversionist|reviewer|reviser|revisionist|revivalist|revolutionary|revolutionist|rewriter|rhabdomancer|rhetorician|rheumatic|rheumatologist|rhinolaryngologist|rhumb|rhymer|rhymester|ribald|rider|ridiculer|rifleman|rift|rigger|right|rightfield|righthander|rightist|ringer|ringleader|ringmaster|rioter|rip|ripper|riser|ritualist|rival|riveter|rivetter|roadman|roads|roadside|roadstead|roamer|roarer|roaster|robber|rock|rocker|rockery|rogue|roisterer|rollerblader|romantic|romanticist|romp|romper|roofer|rooftop|rookery|rookie|roomer|roomie|roommate|roomy|root|rootage|rooter|ropedancer|ropemaker|roper|ropewalk|ropewalker|rosebud|rotary|rotter|roue|rough|roughneck|roughrider|round|roundabout|rounder|roundhead|roundhouse|roundsman|rouser|roustabout|route|router|rover|rowdy|rower|royalist|rubberneck|rubbernecker|rube|ruffian|ruiner|ruler|ruminator|rummy|rumormonger|rumourmonger|rumrunner|runaway|runner|runt|ruralist|rusher|rustic|rustler|saboteur|sabra|sac|sachem|sack|sacrificer|sacristan|saddhu|saddle|saddleback|saddler|saddlery|sadhu|sadist|sadomasochist|safebreaker|safecracker|safety|sagamore|sage|sahib|sailmaker|sailor|saint|salesclerk|salesgirl|saleslady|salesman|salesperson|saleswoman|salter|salutatorian|saluter|salvager|salvor|sampler|samurai|sanctuary|sanctum|sandbagger|sandboy|sandlot|sandwichman|sangoma|sannup|sannyasi|sannyasin|sanyasi|sap|saphead|sapper|sartor|satellite|satirist|satrap|satyr|saunterer|savage|savanna|savannah|savant|saver|savior|saviour|sawbones|sawyer|saxist|saxophonist|scab|scalawag|scallywag|scalper|scammer|scamp|scandalmonger|scanner|scapegoat|scapegrace|scaremonger|scatterbrain|scattergood|scavenger|scenario|scenarist|scene|scenery|sceneshifter|sceptic|schemer|schizophrenic|schlemiel|schlep|schlepper|schlimazel|schlockmeister|schmo|schmoozer|schmuck|schnook|schnorrer|scholar|scholastic|scholiast|schoolboy|schoolchild|schoolfellow|schoolfriend|schoolgirl|schoolman|schoolmarm|schoolmaster|schoolmate|schoolmistress|schoolteacher|schoolyard|scientist|sciolist|scion|scissure|scoffer|scofflaw|scold|scolder|scorekeeper|scorer|scorner|scoundrel|scour|scourer|scourge|scourger|scout|scouter|scoutmaster|scrag|scrambler|scrapheap|scrapper|scratch|scratcher|scrawler|screamer|screecher|screener|screenwriter|screw|screwball|screwballer|scribbler|scribe|scrimshanker|scriptwriter|scrivener|scrooge|scrounger|scrubber|scrubland|scruff|scrutineer|scrutiniser|scrutinizer|sculler|scullion|sculptor|sculptress|sculpturer|seafarer|seafront|sealer|seam|seaman|seamster|seamstress|seaport|searcher|seascape|seasonal|seasoner|seat|secessionist|second|seconder|secretary|sectarian|sectarist|sectary|section|sector|secular|secularist|secundigravida|securer|seducer|seductress|see|seed|seedbed|seeder|seedman|seedsman|seeker|seer|segregate|segregationist|segregator|seigneur|seignior|seismologist|seizer|selectman|selector|selectwoman|self|seller|selvage|selvedge|semanticist|semidesert|semifinalist|seminarian|seminarist|semiotician|semipro|semiprofessional|semitropics|sempstress|senator|sendee|sender|seneschal|senior|sensation|sensationalist|sensitive|sensualist|sentimentalist|sentinel|sentry|separation|separationist|separatist|septuagenarian|sepulcher|sepulchre|sepulture|serf|sergeant|sericulturist|serjeant|sermoniser|sermonizer|serologist|servant|server|serviceman|servitor|setter|setting|settlement|settler|settlor|sewer|sexagenarian|sexist|sexpot|sexton|shadow|shadower|shaheed|shaker|sham|shaman|shammer|shamus|shanghaier|shantytown|shaper|sharecropper|shareholder|shareowner|sharer|shark|sharper|sharpie|sharpshooter|sharpy|shaver|shearer|shedder|sheeny|sheep|sheepherder|sheepman|sheeprun|sheepwalk|sheet|shegetz|sheik|sheika|sheikdom|sheikh|sheikha|sheikhdom|sheller|shelver|shepherd|shepherdess|sheriff|sherlock|shielder|shift|shifter|shiksa|shikse|shill|shingler|shipbuilder|shipmate|shipowner|shipper|shipside|shipwright|shipyard|shire|shirker|shirtlifter|shirtmaker|shit|shithead|shitter|shlemiel|shlep|shlepper|shlimazel|shlockmeister|shmo|shmuck|shnook|shnorrer|shocker|shoeblack|shoemaker|shogun|shoofly|shooter|shop|shopaholic|shopkeeper|shoplifter|shopper|shopwalker|shoreline|short|shortstop|shot|shoulder|shouter|shoveler|shoveller|shover|shower|showgirl|showman|showplace|shrew|shrimp|shrink|shrubbery|shuffler|shutterbug|shylock|shyster|sib|sibling|sibyl|side|sidekick|sidesman|sightreader|sightseer|sign|signaler|signaller|signalman|signatory|signer|signior|signor|signora|signore|signorina|silhouette|silly|silversmith|silverworker|simperer|simple|simpleton|singer|sinner|sipper|sir|sirdar|sire|siren|sirrah|sis|sissy|sister|site|sitter|situation|skateboarder|skater|skeptic|sketcher|skidder|skier|skimmer|skinflint|skinhead|skinner|skipper|skirmisher|skirt|skivvy|skulker|skunk|skycap|skydiver|skyline|skyway|slack|slacker|slammer|slanderer|slapper|slasher|slattern|slaughterer|slave|slaveholder|slaver|slavey|slayer|sledder|sleeper|sleepwalker|sleepyhead|sleuth|sleuthhound|slicer|slicker|slider|slinger|slip|slipper|slit|slob|slobberer|sloganeer|slogger|slopseller|slot|slouch|sloucher|sloven|slowcoach|slowpoke|slug|slugabed|sluggard|slugger|slum|slumberer|slut|slyboots|smallholder|smarta|smasher|smiler|smirker|smith|smithy|smoker|smoothie|smoothy|smotherer|smuggler|snacker|snag|snake|snapper|snarer|snatcher|sneak|sneaker|sneerer|sneezer|sniffer|sniffler|sniper|snitch|snitcher|sniveler|sniveller|snob|snoop|snooper|snoot|snorer|snorter|snot|snow|snowboarder|snuffer|snuffler|soaker|sobersides|socialiser|socialist|socialite|socializer|sociobiologist|sociolinguist|sociologist|sociopath|sod|sodalist|sodbuster|sodom|sodomist|sodomite|softie|softy|soil|sojourner|solderer|soldier|sole|solicitor|solitary|solitude|solitudinarian|soloist|solon|solver|somebody|someone|somewhere|sommelier|somnambulist|somniloquist|son|songster|songstress|songwriter|sonneteer|sonny|soothsayer|soph|sophist|sophisticate|sophomore|soprano|sorcerer|sorceress|sorehead|sorrower|sort|sorter|sot|soubrette|soul|soundman|source|sourdough|sourpuss|souse|south|southeast|southland|southpaw|southwest|sovereign|sower|spa|space|spaceman|spacewalker|spade|spammer|spanker|sparer|spastic|speaker|spearhead|spearpoint|specialiser|specialist|specializer|specifier|spectator|speculator|speechifier|speechmaker|speechwriter|speedskater|spelaeologist|speleologist|spellbinder|speller|spelunker|spender|spendthrift|spewer|sphere|sphinx|spic|spick|spik|spike|spiller|spindlelegs|spindleshanks|spinmeister|spinner|spinster|spiritualist|spitfire|spitter|spiv|splicer|split|splitter|spoiler|spoilsport|spokesman|spokesperson|spokeswoman|sponge|sponger|sponsor|spook|spoor|sport|sportscaster|sportsman|sportswoman|sportswriter|spot|spotter|spouse|spouter|sprawl|sprawler|sprayer|spread|sprigger|spring|sprinter|sprog|spurner|spy|spymaster|squabbler|squanderer|square|squatter|squaw|squawker|squealer|squeeze|squinter|squire|squirmer|squirt|stabber|stableboy|stableman|stacker|staffer|stage|stagehand|stager|staggerer|stainer|stakeholder|stalker|stalwart|stammerer|stamper|stand|standardiser|standardizer|standby|star|starer|starets|stargazer|starlet|starter|starveling|state|stater|statesman|stateswoman|station|stationer|stationmaster|statistician|steady|stealer|steamfitter|steelmaker|steelman|steelworker|steeplejack|steerer|steersman|stemmer|stenographer|stentor|stepbrother|stepchild|stepdaughter|stepfather|stepmother|stepparent|stepper|steps|stepsister|stepson|stevedore|steward|stewardess|stickler|stiff|stifler|stigmatic|stigmatist|stinker|stinkpot|stinter|stipendiary|stippler|stirrer|stitcher|stockbroker|stockholder|stockist|stockjobber|stockman|stocktaker|stoic|stoker|stoma|stomate|stomper|stonecutter|stonemason|stoner|stonewaller|stooge|stoolie|stoolpigeon|stooper|stop|stopover|storekeeper|storyteller|stowaway|strafer|straggler|straight|stranger|strangler|straphanger|strapper|strategian|strategist|stratosphere|stratum|strawman|strayer|streaker|streetwalker|stretch|strider|strikebreaker|striker|stringer|striper|stripling|stripper|striptease|stripteaser|striver|stroke|stroller|strongman|struggler|strumpet|stud|student|studio|study|stuffer|stumblebum|stumbler|stunner|stupe|stupid|stutterer|styler|stylist|stylite|subaltern|subcontractor|subdeacon|subdivider|subdivision|subduer|subeditor|subject|subjectivist|subjugator|sublieutenant|submariner|submitter|subnormal|subordinate|suborner|subscriber|subsidiary|subsidiser|subsidizer|subsister|substitute|substrate|substratum|subtopia|subtracter|subtropics|suburb|suburbanite|suburbia|subversive|subverter|subvocaliser|subvocalizer|succeeder|success|successor|succorer|succourer|sucker|suckling|suer|sufferer|suffragan|suffragette|suffragist|suggester|suicide|suit|suitor|sultan|sultanate|summercater|summercaters|summit|sun|sunbather|sundowner|super|supercargo|supergrass|superintendent|superior|superman|supermarketeer|supermarketer|supermodel|supermom|supernumerary|superordinate|superstar|superstrate|superstratum|supervisor|supplanter|suppliant|supplicant|supplier|supporter|suppresser|suppressor|supremacist|suprematist|supremo|surety|surface|surfboarder|surfer|surgeon|surmounter|surpriser|surrealist|surrenderer|surrogate|surround|surroundings|surveyor|survivalist|survivor|suspect|sustainer|sutler|suzerainty|swagger|swaggerer|swaggie|swagman|swain|swami|swashbuckler|swath|swayer|swearer|sweater|sweep|sweeper|sweetheart|sweetie|swell|swellhead|swimmer|swindler|swineherd|swinger|switchboard|switcher|swordsman|swot|sybarite|sycophant|syllogiser|syllogist|syllogizer|sylph|symboliser|symbolist|symbolizer|sympathiser|sympathizer|symphonist|symposiarch|symposiast|syncopator|syndic|syndicalist|syndicator|synonymist|syntactician|synthesiser|synthesist|synthesizer|syphilitic|systematiser|systematist|systematizer|systemiser|systemizer|tablemate|tack|tacker|tackle|tackler|taco|tactician|tagalong|tagger|tail|tailback|tailor|taker|talebearer|talent|taleteller|talker|tallyman|tamer|tanker|tanner|tannery|tantaliser|tantalizer|taoiseach|tape|tapper|tapster|tar|target|tart|tartar|taskmaster|taskmistress|taster|tatterdemalion|tattler|tattletale|taxer|taxidermist|taxistand|taxman|taxonomer|taxonomist|taxpayer|tchotchke|tchotchkeleh|teacher|teammate|teamster|tear|tearaway|tease|teaser|tec|techie|technician|technocrat|technologist|technophile|technophobe|tee|teen|teenager|teetotaler|teetotalist|teetotaller|tekki|telecaster|teleologist|telepathist|telephoner|televangelist|teller|telltale|tellurian|telomere|temp|temporary|temporiser|temporizer|tempter|temptress|tenant|tendency|tender|tenderfoot|tenderloin|tenno|tenor|tenorist|tentmaker|tergiversator|termagant|termer|terminal|termination|terminator|terminus|terpsichorean|terrain|terreplein|territorial|territory|terror|terrorist|tertigravida|testate|testator|testatrix|testee|tester|testifier|thane|thatcher|thaumaturge|thaumaturgist|theater|theatergoer|theatre|theatregoer|theist|theologian|theologiser|theologist|theologizer|theoretician|theoriser|theorist|theorizer|theosophist|therapist|there|thermosphere|thespian|thick|thief|thinker|thirster|thoroughbred|thrall|threat|throttler|throwaway|thrower|throwster|thrush|thruster|thug|thurifer|thwarter|tiddler|tier|tiger|tightwad|tike|tiler|tiller|tilter|tiltyard|timberline|timberman|timekeeper|timer|timeserver|timpanist|tinker|tinkerer|tinner|tinsmith|tinter|tip|tipper|tippler|tipster|tiptoe|tiptop|tiro|titan|tither|titterer|toady|toast|toaster|toastmaster|tobacconist|tobogganist|toddler|toff|toiler|toller|tollgatherer|tollkeeper|tollman|tomb|tomboy|tomfool|tonsure|tool|toolmaker|top|toper|topiary|topper|torchbearer|toreador|torero|tormenter|tormentor|torpedo|tortfeasor|torturer|tosser|tot|totalitarian|totemist|toter|totterer|toucher|tough|toughie|tourer|tourist|tout|touter|tovarich|tovarisch|towhead|town|townee|towner|townie|township|townsman|towny|toxicologist|tracer|track|tracker|tracklayer|tract|trader|tradesman|traditionalist|traducer|trafficker|tragedian|tragedienne|trail|trailblazer|trailer|trailhead|trainbandsman|trainbearer|trainee|trainer|trainman|trainmaster|traitor|traitress|tramp|tramper|trampler|transactor|transalpine|transcendentalist|transcriber|transexual|transfer|transferee|transferer|transferor|transferrer|transgressor|transient|translator|transmigrante|transmitter|transplanter|transsexual|transvestite|trapper|trapshooter|traveler|traveller|traverser|trawler|treasonist|treasurer|treater|treetop|trekker|trembler|trencher|trencherman|trend|trespasser|tribade|tribesman|tribologist|tribune|trichion|trick|tricker|trickster|trier|trifler|triggerman|trigonometrician|trimmer|triplet|tripper|tritheist|triumvir|troglodyte|troller|trollop|trombonist|trooper|tropic|tropics|tropopause|troposphere|troubadour|troublemaker|troubler|troubleshooter|trouper|truant|truckler|trudger|truelove|trumpeter|trustbuster|trustee|trusteeship|truster|trustor|trusty|tsar|tsarina|tsaritsa|tsatske|tshatshke|tubercular|tucker|tugger|tumbler|tuner|turf|turkey|turncoat|turncock|turner|turnery|turnkey|turtler|tutee|tutor|twaddler|twat|twerp|twiddler|twin|twiner|twirler|twirp|twit|tycoon|tyke|tympanist|type|typesetter|typist|typographer|tyrant|tyro|tzar|tzarina|ultraconservative|ultramontane|umbilicus|ump|umpire|unbeliever|uncle|underachiever|underbelly|underboss|underclassman|underdog|undergrad|undergraduate|underling|underperformer|undersecretary|underseller|underside|understudy|undersurface|undertaker|underwriter|undesirable|undoer|unfastener|unfortunate|unicyclist|unilateralist|unionist|unknown|unperson|unraveler|unraveller|untier|untouchable|upbraider|upholder|upholsterer|uprooter|upsetter|upside|upstager|upstart|uptown|uranologist|urchin|urinator|urologist|user|usher|usherette|usufructuary|usurer|usurper|utiliser|utilitarian|utilizer|utterer|uxor|uxoricide|vacancy|vacationer|vacationist|vaccinator|vaccinee|vacillator|vacuity|vacuum|vagabond|vagrant|valedictorian|valentine|valet|valetudinarian|valuator|valuer|vamp|vamper|vandal|vanisher|vanquisher|vantage|vaquero|variation|varlet|varmint|varnisher|vassal|vaticinator|vaudevillian|vault|vaulter|vaunter|vegan|vegetarian|veld|veldt|vendee|vender|vendor|venerator|vent|venter|ventriloquist|venturer|venue|verbaliser|verbalizer|verge|verger|verifier|vermin|versifier|version|vertex|vestal|vestryman|vestrywoman|vet|veteran|veterinarian|veterinary|vexer|vibist|vibraphonist|vicar|vicegerent|vicereine|viceroy|viceroyalty|vicinity|victim|victimiser|victimizer|victor|victualer|victualler|view|viewer|viewpoint|vigilante|vilifier|village|villager|villain|villainess|villein|vindicator|vinery|vineyard|vintager|vintner|violator|violinist|violist|violoncellist|virago|virgin|virologist|virtuoso|viscount|viscountess|viscounty|visionary|visitant|visitor|visualiser|visualizer|vitaliser|vitalist|vitalizer|viticulturist|vivisectionist|vixen|vizier|vocaliser|vocalist|vocalizer|vociferator|voice|voicer|void|voider|volcano|voluntary|volunteer|voluptuary|vomiter|votary|voter|vouchee|voucher|vower|voyager|voyeur|vulcaniser|vulcanizer|vulgarian|vulgariser|vulgarizer|vulture|wacko|waddler|waffler|wag|wagerer|waggoner|waggonwright|wagoner|wagonwright|waif|wailer|wainwright|waiter|waitress|waker|walker|wall|wallah|wallflower|walloper|wallpaperer|wally|waltzer|wanderer|wangler|wanker|wannabe|wannabee|wanter|wanton|warbler|ward|warden|warder|wardress|warehouseman|warehouser|warhorse|warlord|warmonger|warner|warrantee|warranter|warrantor|warren|warrener|warrior|washer|washerman|washerwoman|washhouse|washout|washwoman|wassailer|waste|wasteland|waster|wasteyard|wastrel|watch|watchdog|watcher|watchmaker|watchman|watercolorist|watercolourist|waterer|waterfront|waterline|waterman|watermark|watershed|waterworks|wavefront|waver|waverer|way|wayfarer|wayside|weakling|weald|wearer|weasel|weatherman|weaver|webmaster|wedge|weeder|weekender|weeper|weigher|weightlifter|weirdie|weirdo|weirdy|weisenheimer|welcher|welcomer|welder|welkin|wellhead|wellspring|welsher|welterweight|wench|wencher|west|westerner|wetback|wetnurse|wetter|whacko|whale|whaler|wheatfield|wheedler|wheeler|wheelwright|whereabouts|whiffer|whiner|whip|whipper|whippersnapper|whirler|whisperer|whistleblower|whistler|whiteface|whitey|whittler|whiz|whizz|wholesaler|whore|whoremaster|whoremonger|whoreson|widow|widower|widowman|wife|wiggler|wight|wigmaker|wild|wildcat|wildcatter|wilderness|wimp|windbag|winder|window|windtalker|windward|winemaker|wing|wingback|winger|wingman|winker|winner|wino|wiper|wire|wireman|wirer|wiretapper|wiseacre|wisenheimer|wisp|wit|witch|withdrawer|withholder|withstander|witness|witnesser|wittol|wiz|wizard|wog|wold|wolf|woman|womaniser|womanizer|wonderer|wonk|woodcarver|woodcutter|woodlet|woodman|woodsman|woodworker|wooer|woolgatherer|woolsorter|wop|wordmonger|wordsmith|work|workaholic|worker|workfellow|workingman|workman|workmate|workplace|workshop|workspace|worldling|worm|worrier|worrywart|worshiper|worshipper|worthy|wrangler|wrecker|wrester|wrestler|wretch|wriggler|wright|writer|wrongdoer|wuss|xylophonist|yachtsman|yachtswoman|yahoo|yakuza|yanker|yard|yardarm|yardbird|yardie|yardman|yardmaster|yawner|yearling|yearner|yeller|yenta|yeoman|yid|yielder|yob|yobbo|yobo|yodeller|yogi|yokel|youngster|younker|youth|yuppie|zany|zealot|zenith|zodiac|zombi|zombie|zone|zoologist} >{prep:regex=prep_(.*)}> {arg1} >appos> {arg2} 0.0109 Omaha ;;; Omaha_NNP_21_116 be the north end of ;;; the_DT_17_99; north_JJ_18_103; end_NN_19_109 Nebraska ;;; Nebraska_NNP_23_124 0.01090 None None 1 det(Academy_NNP_3_15, The_DT_0_0); nn(Academy_NNP_3_15, Notre_NNP_1_4); nn(Academy_NNP_3_15, Dame_NNP_2_10); cc(Academy_NNP_3_15, and_CC_4_23); conj(Academy_NNP_3_15, Convent_NNP_5_27); nsubjpass(located_VBN_7_38, Academy_NNP_3_15); auxpass(located_VBN_7_38, is_VBZ_6_35); prep(located_VBN_7_38, at_IN_8_46); prep(located_VBN_7_38, in_IN_12_67); punct(located_VBN_7_38, ._._24_133); pobj(at_IN_8_46, Street_NNP_11_60); num(Street_NNP_11_60, 3501_CD_9_49); nn(Street_NNP_11_60, State_NNP_10_54); pobj(in_IN_12_67, neighborhood_NN_15_83); det(neighborhood_NN_15_83, the_DT_13_70); nn(neighborhood_NN_15_83, Florence_NNP_14_74); prep(neighborhood_NN_15_83, on_IN_16_96); pobj(on_IN_16_96, end_NN_19_109); det(end_NN_19_109, the_DT_17_99); amod(end_NN_19_109, north_JJ_18_103); prep(end_NN_19_109, of_IN_20_113); pobj(of_IN_20_113, Omaha_NNP_21_116); punct(Omaha_NNP_21_116, ,_,_22_122); appos(Omaha_NNP_21_116, Nebraska_NNP_23_124) Template be {rel} {prep} {arg1} prep_in> {slot0:postag=NN:regex=ad|area|basin|bc|build|cabin|cave|center|century|city|community|cottage|country|county|datacenter|deer|district|elk|entirety|fall|family|farmhouse|heart|herd|home|hospital|house|human|island|location|manger|morn|neighborhood|oasis|office|position|poverty|province|rectory|region|section|set|shack|situation|spring|story|summer|town|valley|village|war|year} >{prep:regex=prep_(.*)}> {arg2} 0.0057 The Notre Dame Academy and Convent ;;; The_DT_0_0; Notre_NNP_1_4; Dame_NNP_2_10; Academy_NNP_3_15; and_CC_4_23; Convent_NNP_5_27 is located on ;;; is_VBZ_6_35; located_VBN_7_38 the north end of Omaha ;;; the_DT_17_99; north_JJ_18_103; end_NN_19_109; of_IN_20_113; Omaha_NNP_21_116 0.00570 None None 1 det(company_NN_3_26, The_DT_0_0); amod(company_NN_3_26, Phoenix-based_JJ_1_4); nn(company_NN_3_26, holding_NN_2_18); prep(company_NN_3_26, for_IN_4_34); pobj(for_IN_4_34, bank_NN_8_57); possessive(Arizona_NNP_5_38, 's_POS_6_46); poss(bank_NN_8_57, Arizona_NNP_5_38); amod(bank_NN_8_57, largest_JJS_7_49); nsubj(said_VBD_9_62, company_NN_3_26); ccomp(said_VBD_9_62, added_VBD_11_70); punct(said_VBD_9_62, ._._27_153); nsubj(added_VBD_11_70, it_PRP_10_67); dobj(added_VBD_11_70, $_$_12_76); prep(added_VBD_11_70, to_TO_15_90); prep(added_VBD_11_70, for_IN_18_107); number($_$_12_76, 121_CD_13_78); number($_$_12_76, million_CD_14_82); pobj(to_TO_15_90, allowance_NN_17_97); poss(allowance_NN_17_97, its_PRP$_16_93); pobj(for_IN_18_107, losses_NNS_19_111); prep(losses_NNS_19_111, on_IN_20_118); pobj(on_IN_20_118, loans_NNS_21_121); cc(on_IN_20_118, and_CC_22_127); conj(on_IN_20_118, for_IN_23_131); pobj(for_IN_23_131, estate_NN_25_140); amod(estate_NN_25_140, real_JJ_24_135); partmod(estate_NN_25_140, owned_VBN_26_147) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 it ;;; it_PRP_10_67 added $ 121 million for ;;; added_VBD_11_70; $_$_12_76; 121_CD_13_78; million_CD_14_82 losses ;;; losses_NN_19_111 0.73450 None The Phoenix-based holding company_said_0_3_9_9 1 det(company_NN_3_26, The_DT_0_0); amod(company_NN_3_26, Phoenix-based_JJ_1_4); nn(company_NN_3_26, holding_NN_2_18); prep(company_NN_3_26, for_IN_4_34); pobj(for_IN_4_34, bank_NN_8_57); possessive(Arizona_NNP_5_38, 's_POS_6_46); poss(bank_NN_8_57, Arizona_NNP_5_38); amod(bank_NN_8_57, largest_JJS_7_49); nsubj(said_VBD_9_62, company_NN_3_26); ccomp(said_VBD_9_62, added_VBD_11_70); punct(said_VBD_9_62, ._._27_153); nsubj(added_VBD_11_70, it_PRP_10_67); dobj(added_VBD_11_70, $_$_12_76); prep(added_VBD_11_70, to_TO_15_90); prep(added_VBD_11_70, for_IN_18_107); number($_$_12_76, 121_CD_13_78); number($_$_12_76, million_CD_14_82); pobj(to_TO_15_90, allowance_NN_17_97); poss(allowance_NN_17_97, its_PRP$_16_93); pobj(for_IN_18_107, losses_NNS_19_111); prep(losses_NNS_19_111, on_IN_20_118); pobj(on_IN_20_118, loans_NNS_21_121); cc(on_IN_20_118, and_CC_22_127); conj(on_IN_20_118, for_IN_23_131); pobj(for_IN_23_131, estate_NN_25_140); amod(estate_NN_25_140, real_JJ_24_135); partmod(estate_NN_25_140, owned_VBN_26_147) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 it ;;; it_PRP_10_67 added $ 121 million to ;;; added_VBD_11_70; $_$_12_76; 121_CD_13_78; million_CD_14_82 its allowance ;;; its_PRP$_16_93; allowance_NN_17_97 0.73450 None The Phoenix-based holding company_said_0_3_9_9 1 det(King_NNP_2_13, The_DT_0_0); nn(King_NNP_2_13, Skeleton_NNP_1_4); nsubj(merged_VBD_4_24, King_NNP_2_13); advmod(merged_VBD_4_24, later_RB_3_18); prep(merged_VBD_4_24, with_IN_5_31); tmod(merged_VBD_4_24, Dark_NNP_8_46); punct(merged_VBD_4_24, ,_,_10_55); xcomp(merged_VBD_4_24, have_VB_13_65); punct(merged_VBD_4_24, ._._19_104); pobj(with_IN_5_31, demon_NN_7_40); det(demon_NN_7_40, the_DT_6_36); num(Dark_NNP_8_46, One_CD_9_51); advmod(have_VB_13_65, only_RB_11_57); aux(have_VB_13_65, to_TO_12_62); ccomp(have_VB_13_65, decapitated_VBN_15_74); nsubjpass(decapitated_VBN_15_74, him_PRP_14_70); prep(decapitated_VBN_15_74, by_IN_16_86); pobj(by_IN_16_86, Hyperforce_NNP_18_93); det(Hyperforce_NNP_18_93, the_DT_17_89) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 him ;;; him_PRP_14_70 be decapitated by ;;; decapitated_VBN_15_74 the Hyperforce ;;; the_DT_17_89; Hyperforce_NNP_18_93 1.00000 None None 1 det(King_NNP_2_13, The_DT_0_0); nn(King_NNP_2_13, Skeleton_NNP_1_4); nsubj(merged_VBD_4_24, King_NNP_2_13); advmod(merged_VBD_4_24, later_RB_3_18); prep(merged_VBD_4_24, with_IN_5_31); tmod(merged_VBD_4_24, Dark_NNP_8_46); punct(merged_VBD_4_24, ,_,_10_55); xcomp(merged_VBD_4_24, have_VB_13_65); punct(merged_VBD_4_24, ._._19_104); pobj(with_IN_5_31, demon_NN_7_40); det(demon_NN_7_40, the_DT_6_36); num(Dark_NNP_8_46, One_CD_9_51); advmod(have_VB_13_65, only_RB_11_57); aux(have_VB_13_65, to_TO_12_62); ccomp(have_VB_13_65, decapitated_VBN_15_74); nsubjpass(decapitated_VBN_15_74, him_PRP_14_70); prep(decapitated_VBN_15_74, by_IN_16_86); pobj(by_IN_16_86, Hyperforce_NNP_18_93); det(Hyperforce_NNP_18_93, the_DT_17_89) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 The Skeleton King ;;; The_DT_0_0; Skeleton_NNP_1_4; King_NNP_2_13 later merged with ;;; later_RB_3_18; merged_VBD_4_24 the demon ;;; the_DT_6_36; demon_NN_7_40 0.73450 None None 0 det(King_NNP_2_13, The_DT_0_0); nn(King_NNP_2_13, Skeleton_NNP_1_4); nsubj(merged_VBD_4_24, King_NNP_2_13); advmod(merged_VBD_4_24, later_RB_3_18); prep(merged_VBD_4_24, with_IN_5_31); tmod(merged_VBD_4_24, Dark_NNP_8_46); punct(merged_VBD_4_24, ,_,_10_55); xcomp(merged_VBD_4_24, have_VB_13_65); punct(merged_VBD_4_24, ._._19_104); pobj(with_IN_5_31, demon_NN_7_40); det(demon_NN_7_40, the_DT_6_36); num(Dark_NNP_8_46, One_CD_9_51); advmod(have_VB_13_65, only_RB_11_57); aux(have_VB_13_65, to_TO_12_62); ccomp(have_VB_13_65, decapitated_VBN_15_74); nsubjpass(decapitated_VBN_15_74, him_PRP_14_70); prep(decapitated_VBN_15_74, by_IN_16_86); pobj(by_IN_16_86, Hyperforce_NNP_18_93); det(Hyperforce_NNP_18_93, the_DT_17_89) Template {rel} in {arg1} tmod> {arg2} 0.0151 The Skeleton King ;;; The_DT_0_0; Skeleton_NNP_1_4; King_NNP_2_13 later merged in ;;; later_RB_3_18; merged_VBD_4_24 Dark One ;;; Dark_NNP_8_46; One_CD_9_51 0.01510 None None 1 det(Space_NN_1_4, The_DT_0_0); advcl(Space_NN_1_4, is_VBZ_3_18); punct(Space_NN_1_4, ._._12_62); mark(is_VBZ_3_18, Between_IN_2_10); nsubj(is_VBZ_3_18, song_NN_5_23); det(song_NN_5_23, a_DT_4_21); partmod(song_NN_5_23, written_VBN_6_28); prep(written_VBN_6_28, by_IN_7_36); pobj(by_IN_7_36, Band_NNP_11_57); det(Band_NNP_11_57, the_DT_8_39); nn(Band_NNP_11_57, Dave_NNP_9_43); nn(Band_NNP_11_57, Matthews_NNP_10_48) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 a song ;;; a_DT_4_21; song_NN_5_23 be written by ;;; written_VBN_6_28 the Dave Matthews Band ;;; the_DT_8_39; Dave_NNP_9_43; Matthews_NNP_10_48; Band_NNP_11_57 0.11100 None None 1 det(announcement_NN_1_4, The_DT_0_0); nsubj(follows_VBZ_2_17, announcement_NN_1_4); dobj(follows_VBZ_2_17, decline_NN_8_49); prep(follows_VBZ_2_17, to_TO_17_105); punct(follows_VBZ_2_17, ._._21_124); number($_$_5_35, 2.2_CD_6_37); number($_$_5_35, billion_CD_7_41); det(decline_NN_8_49, a_DT_3_25); amod(decline_NN_8_49, sharper_JJR_4_27); num(decline_NN_8_49, $_$_5_35); prep(decline_NN_8_49, in_IN_9_57); prep(decline_NN_8_49, in_IN_15_92); pobj(in_IN_9_57, reserves_NNS_14_83); det(country_NN_11_64, the_DT_10_60); possessive(country_NN_11_64, 's_POS_12_72); poss(reserves_NNS_14_83, country_NN_11_64); amod(reserves_NNS_14_83, foreign_JJ_13_75); pobj(in_IN_15_92, September_NNP_16_95); pobj(to_TO_17_105, $_$_18_108); number($_$_18_108, 86.12_CD_19_110); number($_$_18_108, billion_CD_20_116) Template {rel} {arg1} dobj> {arg2} 0.1443 The announcement ;;; The_DT_0_0; announcement_NN_1_4 follows ;;; follows_VBZ_2_17 a sharper $ 2.2 billion decline ;;; a_DT_3_25; sharper_JJR_4_27; $_$_5_35; 2.2_CD_6_37; billion_CD_7_41; decline_NN_8_49 0.14430 None None 1 det(band_NN_1_4, The_DT_0_0); nsubj(began_VBD_2_9, band_NN_1_4); xcomp(began_VBD_2_9, recording_VBG_3_15); punct(began_VBD_2_9, ._._17_94); dobj(recording_VBG_3_15, demos_NN_4_25); prep(recording_VBG_3_15, for_IN_5_31); pobj(for_IN_5_31, album_NN_8_46); poss(album_NN_8_46, their_PRP$_6_35); amod(album_NN_8_46, next_JJ_7_41); prep(album_NN_8_46, at_IN_9_52); pobj(at_IN_9_52, Studio_NNP_12_67); det(Studio_NNP_12_67, The_DT_10_55); nn(Studio_NNP_12_67, Gallows_NNP_11_59); prep(Studio_NNP_12_67, in_IN_13_74); pobj(in_IN_13_74, Muncie_NNP_14_77); punct(Muncie_NNP_14_77, ,_,_15_84); appos(Muncie_NNP_14_77, Indiana_NNP_16_86) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.7345 The band ;;; The_DT_0_0; band_NN_1_4 began recording demos for ;;; began_VBD_2_9; recording_VBG_3_15; demos_NN_4_25 their next album ;;; their_PRP$_6_35; next_JJ_7_41; album_NN_8_46 0.73450 None None 1 det(band_NN_1_4, The_DT_0_0); nsubj(began_VBD_2_9, band_NN_1_4); xcomp(began_VBD_2_9, recording_VBG_3_15); punct(began_VBD_2_9, ._._17_94); dobj(recording_VBG_3_15, demos_NN_4_25); prep(recording_VBG_3_15, for_IN_5_31); pobj(for_IN_5_31, album_NN_8_46); poss(album_NN_8_46, their_PRP$_6_35); amod(album_NN_8_46, next_JJ_7_41); prep(album_NN_8_46, at_IN_9_52); pobj(at_IN_9_52, Studio_NNP_12_67); det(Studio_NNP_12_67, The_DT_10_55); nn(Studio_NNP_12_67, Gallows_NNP_11_59); prep(Studio_NNP_12_67, in_IN_13_74); pobj(in_IN_13_74, Muncie_NNP_14_77); punct(Muncie_NNP_14_77, ,_,_15_84); appos(Muncie_NNP_14_77, Indiana_NNP_16_86) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797 The band ;;; The_DT_0_0; band_NN_1_4 began recording ;;; began_VBD_2_9; recording_VBG_3_15 demos ;;; demos_NN_4_25 0.37970 None None 1 det(band_NN_1_4, The_DT_0_0); nsubj(began_VBD_2_9, band_NN_1_4); xcomp(began_VBD_2_9, recording_VBG_3_15); punct(began_VBD_2_9, ._._17_94); dobj(recording_VBG_3_15, demos_NN_4_25); prep(recording_VBG_3_15, for_IN_5_31); pobj(for_IN_5_31, album_NN_8_46); poss(album_NN_8_46, their_PRP$_6_35); amod(album_NN_8_46, next_JJ_7_41); prep(album_NN_8_46, at_IN_9_52); pobj(at_IN_9_52, Studio_NNP_12_67); det(Studio_NNP_12_67, The_DT_10_55); nn(Studio_NNP_12_67, Gallows_NNP_11_59); prep(Studio_NNP_12_67, in_IN_13_74); pobj(in_IN_13_74, Muncie_NNP_14_77); punct(Muncie_NNP_14_77, ,_,_15_84); appos(Muncie_NNP_14_77, Indiana_NNP_16_86) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 demos ;;; demos_NN_4_25 be recording for ;;; recording_VBG_3_15 their next album ;;; their_PRP$_6_35; next_JJ_7_41; album_NN_8_46 0.00790 None None 1 det(board_NN_1_4, The_DT_0_0); nsubj(expanded_VBD_2_10, board_NN_1_4); prep(expanded_VBD_2_10, to_TO_3_19); punct(expanded_VBD_2_10, ._._6_31); pobj(to_TO_3_19, seats_NNS_5_25); num(seats_NNS_5_25, 17_CD_4_22) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 The board ;;; The_DT_0_0; board_NN_1_4 expanded to ;;; expanded_VBD_2_10 17 seats ;;; 17_CD_4_22; seats_NN_5_25 0.73450 None None 0 det(body_NN_1_4, The_DT_0_0); prep(body_NN_1_4, of_IN_2_9); pobj(of_IN_2_9, arthropod_NN_4_15); det(arthropod_NN_4_15, an_DT_3_12); nsubjpass(covered_VBN_7_39, body_NN_1_4); auxpass(covered_VBN_7_39, is_VBZ_5_25); advmod(covered_VBN_7_39, completely_RB_6_28); prep(covered_VBN_7_39, by_IN_8_47); punct(covered_VBN_7_39, ,_,_11_62); dobj(covered_VBN_7_39, exoskeleton_NN_13_67); punct(covered_VBN_7_39, ._._23_144); pobj(by_IN_8_47, cuticle_NN_10_54); det(cuticle_NN_10_54, the_DT_9_50); det(exoskeleton_NN_13_67, an_DT_12_64); partmod(exoskeleton_NN_13_67, constructed_VBN_14_79); cc(exoskeleton_NN_13_67, and_CC_19_114); conj(exoskeleton_NN_13_67, chitin_NN_22_137); prep(constructed_VBN_14_79, from_IN_15_91); pobj(from_IN_15_91, layers_NNS_16_96); prep(layers_NNS_16_96, of_IN_17_103); pobj(of_IN_17_103, protein_NN_18_106); det(chitin_NN_22_137, the_DT_20_118); nn(chitin_NN_22_137, polysaccharide_NN_21_122) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The body of an arthropod ;;; The_DT_0_0; body_NN_1_4; of_IN_2_9; an_DT_3_12; arthropod_NN_4_15 is completely covered an exoskeleton constructed from layers of protein by ;;; is_VBZ_5_25; completely_RB_6_28; covered_VBN_7_39; an_DT_12_64; exoskeleton_NN_13_67; constructed_VBN_14_79; from_IN_15_91; layers_NN_16_96; of_IN_17_103; protein_NN_18_106 the cuticle ;;; the_DT_9_50; cuticle_NN_10_54 1.00000 None None 0 det(body_NN_1_4, The_DT_0_0); prep(body_NN_1_4, of_IN_2_9); pobj(of_IN_2_9, arthropod_NN_4_15); det(arthropod_NN_4_15, an_DT_3_12); nsubjpass(covered_VBN_7_39, body_NN_1_4); auxpass(covered_VBN_7_39, is_VBZ_5_25); advmod(covered_VBN_7_39, completely_RB_6_28); prep(covered_VBN_7_39, by_IN_8_47); punct(covered_VBN_7_39, ,_,_11_62); dobj(covered_VBN_7_39, exoskeleton_NN_13_67); punct(covered_VBN_7_39, ._._23_144); pobj(by_IN_8_47, cuticle_NN_10_54); det(cuticle_NN_10_54, the_DT_9_50); det(exoskeleton_NN_13_67, an_DT_12_64); partmod(exoskeleton_NN_13_67, constructed_VBN_14_79); cc(exoskeleton_NN_13_67, and_CC_19_114); conj(exoskeleton_NN_13_67, chitin_NN_22_137); prep(constructed_VBN_14_79, from_IN_15_91); pobj(from_IN_15_91, layers_NNS_16_96); prep(layers_NNS_16_96, of_IN_17_103); pobj(of_IN_17_103, protein_NN_18_106); det(chitin_NN_22_137, the_DT_20_118); nn(chitin_NN_22_137, polysaccharide_NN_21_122) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The body of an arthropod ;;; The_DT_0_0; body_NN_1_4; of_IN_2_9; an_DT_3_12; arthropod_NN_4_15 is completely covered the polysaccharide chitin by ;;; is_VBZ_5_25; completely_RB_6_28; covered_VBN_7_39; the_DT_20_118; polysaccharide_NN_21_122; chitin_NN_22_137 the cuticle ;;; the_DT_9_50; cuticle_NN_10_54 1.00000 None None 0 det(body_NN_1_4, The_DT_0_0); prep(body_NN_1_4, of_IN_2_9); pobj(of_IN_2_9, arthropod_NN_4_15); det(arthropod_NN_4_15, an_DT_3_12); nsubjpass(covered_VBN_7_39, body_NN_1_4); auxpass(covered_VBN_7_39, is_VBZ_5_25); advmod(covered_VBN_7_39, completely_RB_6_28); prep(covered_VBN_7_39, by_IN_8_47); punct(covered_VBN_7_39, ,_,_11_62); dobj(covered_VBN_7_39, exoskeleton_NN_13_67); punct(covered_VBN_7_39, ._._23_144); pobj(by_IN_8_47, cuticle_NN_10_54); det(cuticle_NN_10_54, the_DT_9_50); det(exoskeleton_NN_13_67, an_DT_12_64); partmod(exoskeleton_NN_13_67, constructed_VBN_14_79); cc(exoskeleton_NN_13_67, and_CC_19_114); conj(exoskeleton_NN_13_67, chitin_NN_22_137); prep(constructed_VBN_14_79, from_IN_15_91); pobj(from_IN_15_91, layers_NNS_16_96); prep(layers_NNS_16_96, of_IN_17_103); pobj(of_IN_17_103, protein_NN_18_106); det(chitin_NN_22_137, the_DT_20_118); nn(chitin_NN_22_137, polysaccharide_NN_21_122) Template be {rel} {arg1} dobj> {arg2} 0.0191 The body of an arthropod ;;; The_DT_0_0; body_NN_1_4; of_IN_2_9; an_DT_3_12; arthropod_NN_4_15 is completely covered ;;; is_VBZ_5_25; completely_RB_6_28; covered_VBN_7_39 an exoskeleton constructed from layers of protein and the polysaccharide chitin ;;; an_DT_12_64; exoskeleton_NN_13_67; constructed_VBN_14_79; from_IN_15_91; layers_NN_16_96; of_IN_17_103; protein_NN_18_106; and_CC_19_114; the_DT_20_118; polysaccharide_NN_21_122; chitin_NN_22_137 0.01910 None None 1 det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 The car ;;; The_DT_0_0; car_NN_1_4 has had two revisions since ;;; has_VBZ_2_8; had_VBD_3_12; two_CD_4_16; revisions_NN_5_20 its inception ;;; its_PRP$_7_36; inception_NN_8_40 0.73450 None None 0 det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 borrowed spare grilles ;;; borrowed_VBN_15_80; spare_JJ_16_89; grilles_NN_17_95 left around from ;;; left_VBD_18_103; around_RB_19_108 the fourth generation ;;; the_DT_21_120; fourth_JJ_22_124; generation_NN_23_131 0.73450 None None 1 det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 borrowed spare grilles ;;; borrowed_VBN_15_80; spare_JJ_16_89; grilles_NN_17_95 left around in ;;; left_VBD_18_103; around_RB_19_108 1997 ;;; 1997_CD_27_163 0.73450 None None 1 det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) Template {rel} {arg1} dobj> {arg2} 0.3797 The car ;;; The_DT_0_0; car_NN_1_4 has had ;;; has_VBZ_2_8; had_VBD_3_12 two revisions ;;; two_CD_4_16; revisions_NN_5_20 0.37970 None None 0 det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 two revisions ;;; two_CD_4_16; revisions_NN_5_20 has had since ;;; has_VBZ_2_8; had_VBD_3_12 its inception ;;; its_PRP$_7_36; inception_NN_8_40 0.01550 None None 0 det(car_NN_1_4, The_DT_0_0); nsubj(had_VBD_3_12, car_NN_1_4); aux(had_VBD_3_12, has_VBZ_2_8); dobj(had_VBD_3_12, revisions_NNS_5_20); prep(had_VBD_3_12, since_IN_6_30); num(revisions_NNS_5_20, two_CD_4_16); pobj(since_IN_6_30, inception_NN_8_40); poss(inception_NN_8_40, its_PRP$_7_36); prep(inception_NN_8_40, in_IN_9_50); pobj(in_IN_9_50, China_NNP_10_53); det(facelift_NN_14_71, the_DT_12_61); amod(facelift_NN_14_71, first_JJ_13_65); amod(grilles_NNS_17_95, borrowed_VBN_15_80); amod(grilles_NNS_17_95, spare_JJ_16_89); ccomp(left_VBD_18_103, had_VBD_3_12); punct(left_VBD_18_103, ,_,_11_59); tmod(left_VBD_18_103, facelift_NN_14_71); nsubj(left_VBD_18_103, grilles_NNS_17_95); advmod(left_VBD_18_103, around_RB_19_108); prep(left_VBD_18_103, from_IN_20_115); prep(left_VBD_18_103, in_IN_26_160); punct(left_VBD_18_103, ._._28_168); pobj(from_IN_20_115, generation_NN_23_131); det(generation_NN_23_131, the_DT_21_120); amod(generation_NN_23_131, fourth_JJ_22_124); dep(generation_NN_23_131, Passat_NNP_25_153); nn(Passat_NNP_25_153, Volkswagen_NNP_24_142); pobj(in_IN_26_160, 1997_CD_27_163) Template {rel} {arg1} ccomp> {slot0:postag=VBD:regex=aka|announce|appear|approve|ask|attack|attempt|be|beat|beget|begin|blame|break|bring|buy|call|capture|carry|cause|celebrate|change|choose|circa|claim|come|command|control|create|crucify|cry|decide|declare|defeat|deliver|demand|deny|die|discover|do|draw|drop|emerge|enlist|enter|establish|estimate|fall|favor|fear|feel|find|flee|fly|follow|ft|get|give|go|greet|grow|have|help|hit|hold|inspire|intend|introduce|invade|invent|join|kill|know|launch|lead|leave|lift|live|look|lose|love|make|marry|mean|meet|name|opt|pass|pick|place|play|pledge|produce|prove|publish|put|raise|reach|read|realize|receive|refuse|release|replace|respond|rise|salt|sample|say|see|send|serve|set|show|sign|speak|spend|spring|stand|start|stay|stop|suffer|surprise|take|teach|tell|think|try|turn|use|veto|vote|wake|walk|want|win|write} >nsubj> {arg2} 0.0105 borrowed spare grilles ;;; borrowed_VBN_15_80; spare_JJ_16_89; grilles_NN_17_95 left around ;;; left_VBD_18_103; around_RB_19_108 The car ;;; The_DT_0_0; car_NN_1_4 0.01050 None None 1 det(certificates_NNS_1_4, The_DT_0_0); nsubj(have_VBP_2_17, certificates_NNS_1_4); dobj(have_VBP_2_17, life_NN_6_43); punct(have_VBP_2_17, ,_,_10_61); xcomp(have_VBP_2_17, assuming_VBG_11_63); punct(have_VBP_2_17, ._._21_125); det(life_NN_6_43, an_DT_3_22); amod(life_NN_6_43, estimated_VBN_4_25); amod(life_NN_6_43, average_JJ_5_35); prep(life_NN_6_43, of_IN_7_48); pobj(of_IN_7_48, years_NNS_9_55); num(years_NNS_9_55, 1.8_CD_8_51); dobj(assuming_VBG_11_63, prepayments_NNS_13_80); amod(prepayments_NNS_13_80, monthly_JJ_12_72); prep(prepayments_NNS_13_80, at_IN_14_92); pobj(at_IN_14_92, %_NN_16_99); num(%_NN_16_99, 1.3_CD_15_95); prep(%_NN_16_99, of_IN_17_101); pobj(of_IN_17_101, balance_NN_20_117); det(balance_NN_20_117, the_DT_18_104); amod(balance_NN_20_117, original_JJ_19_108) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.0416 The certificates ;;; The_DT_0_0; certificates_NN_1_4 have an estimated average life of 1.8 years assuming ;;; have_VBP_2_17; an_DT_3_22; estimated_VBN_4_25; average_JJ_5_35; life_NN_6_43; of_IN_7_48; 1.8_CD_8_51; years_NN_9_55; assuming_VBG_11_63 monthly prepayments ;;; monthly_JJ_12_72; prepayments_NN_13_80 0.04160 None None 1 det(certificates_NNS_1_4, The_DT_0_0); nsubj(have_VBP_2_17, certificates_NNS_1_4); dobj(have_VBP_2_17, life_NN_6_43); punct(have_VBP_2_17, ,_,_10_61); xcomp(have_VBP_2_17, assuming_VBG_11_63); punct(have_VBP_2_17, ._._21_125); det(life_NN_6_43, an_DT_3_22); amod(life_NN_6_43, estimated_VBN_4_25); amod(life_NN_6_43, average_JJ_5_35); prep(life_NN_6_43, of_IN_7_48); pobj(of_IN_7_48, years_NNS_9_55); num(years_NNS_9_55, 1.8_CD_8_51); dobj(assuming_VBG_11_63, prepayments_NNS_13_80); amod(prepayments_NNS_13_80, monthly_JJ_12_72); prep(prepayments_NNS_13_80, at_IN_14_92); pobj(at_IN_14_92, %_NN_16_99); num(%_NN_16_99, 1.3_CD_15_95); prep(%_NN_16_99, of_IN_17_101); pobj(of_IN_17_101, balance_NN_20_117); det(balance_NN_20_117, the_DT_18_104); amod(balance_NN_20_117, original_JJ_19_108) Template {rel} {arg1} dobj> {arg2} 0.0416 The certificates ;;; The_DT_0_0; certificates_NN_1_4 have ;;; have_VBP_2_17 an estimated average life of 1.8 years ;;; an_DT_3_22; estimated_VBN_4_25; average_JJ_5_35; life_NN_6_43; of_IN_7_48; 1.8_CD_8_51; years_NN_9_55 0.04160 None None 0 det(temperature_NN_2_12, The_DT_0_0); amod(temperature_NN_2_12, coldest_JJS_1_4); nsubjpass(recorded_VBN_4_29, temperature_NN_2_12); advmod(recorded_VBN_4_29, ever_RB_3_24); prep(recorded_VBN_4_29, in_IN_5_38); dep(recorded_VBN_4_29, was_VBD_8_50); punct(recorded_VBN_4_29, ._._23_111); pobj(in_IN_5_38, city_NN_7_45); det(city_NN_7_45, the_DT_6_41); punct(was_VBD_8_50, -_:_9_54); dep(was_VBD_8_50, known_VBN_19_90); punct(40F_CD_10_56, ,_,_11_60); prep(40F_CD_10_56, on_IN_12_62); punct(40F_CD_10_56, ,_,_17_83); pobj(on_IN_12_62, January_NNP_13_65); num(January_NNP_13_65, 17_CD_14_73); punct(January_NNP_13_65, ,_,_15_76); appos(January_NNP_13_65, 1982_CD_16_78); nsubjpass(known_VBN_19_90, 40F_CD_10_56); advmod(known_VBN_19_90, also_RB_18_85); prep(known_VBN_19_90, as_IN_20_96); pobj(as_IN_20_96, Sunday_NNP_22_104); amod(Sunday_NNP_22_104, Cold_JJ_21_99) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 40F ;;; 40F_CD_10_56 be also known as ;;; also_RB_18_85; known_VBN_19_90 Cold Sunday ;;; Cold_JJ_21_99; Sunday_NNP_22_104 1.00000 None None 0 det(temperature_NN_2_12, The_DT_0_0); amod(temperature_NN_2_12, coldest_JJS_1_4); nsubjpass(recorded_VBN_4_29, temperature_NN_2_12); advmod(recorded_VBN_4_29, ever_RB_3_24); prep(recorded_VBN_4_29, in_IN_5_38); dep(recorded_VBN_4_29, was_VBD_8_50); punct(recorded_VBN_4_29, ._._23_111); pobj(in_IN_5_38, city_NN_7_45); det(city_NN_7_45, the_DT_6_41); punct(was_VBD_8_50, -_:_9_54); dep(was_VBD_8_50, known_VBN_19_90); punct(40F_CD_10_56, ,_,_11_60); prep(40F_CD_10_56, on_IN_12_62); punct(40F_CD_10_56, ,_,_17_83); pobj(on_IN_12_62, January_NNP_13_65); num(January_NNP_13_65, 17_CD_14_73); punct(January_NNP_13_65, ,_,_15_76); appos(January_NNP_13_65, 1982_CD_16_78); nsubjpass(known_VBN_19_90, 40F_CD_10_56); advmod(known_VBN_19_90, also_RB_18_85); prep(known_VBN_19_90, as_IN_20_96); pobj(as_IN_20_96, Sunday_NNP_22_104); amod(Sunday_NNP_22_104, Cold_JJ_21_99) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The coldest temperature ;;; The_DT_0_0; coldest_JJ_1_4; temperature_NN_2_12 be ever recorded in ;;; ever_RB_3_24; recorded_VBN_4_29 the city ;;; the_DT_6_41; city_NN_7_45 1.00000 None None 1 det(companies_NNS_1_4, The_DT_0_0); nsubjpass(followed_VBN_3_18, companies_NNS_1_4); auxpass(followed_VBN_3_18, are_VBP_2_14); prep(followed_VBN_3_18, by_IN_4_27); punct(followed_VBN_3_18, ,_,_9_54); cc(followed_VBN_3_18, and_CC_10_56); conj(followed_VBN_3_18, had_VBD_11_60); punct(followed_VBN_3_18, ._._21_120); pobj(by_IN_4_27, analysts_NNS_8_45); dep(at_IN_5_30, least_JJS_6_33); quantmod(three_CD_7_39, at_IN_5_30); num(analysts_NNS_8_45, three_CD_7_39); dobj(had_VBD_11_60, change_NN_15_84); det(change_NN_15_84, a_DT_12_64); amod(change_NN_15_84, minimum_JJ_13_66); amod(change_NN_15_84, five-cent_JJ_14_74); prep(change_NN_15_84, in_IN_16_91); pobj(in_IN_16_91, earnings_NNS_18_101); amod(earnings_NNS_18_101, actual_JJ_17_94); prep(earnings_NNS_18_101, per_IN_19_110); pobj(per_IN_19_110, share_NN_20_114) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The companies ;;; The_DT_0_0; companies_NN_1_4 are followed by ;;; are_VBP_2_14; followed_VBN_3_18 at least three analysts ;;; at_IN_5_30; least_JJ_6_33; three_CD_7_39; analysts_NN_8_45 1.00000 None None 0 det(company_NN_1_4, The_DT_0_0); nsubj(said_VBD_2_12, company_NN_1_4); ccomp(said_VBD_2_12, expected_VBN_7_42); punct(said_VBD_2_12, ._._21_120); det(restructuring_NN_4_21, the_DT_3_17); nsubjpass(expected_VBN_7_42, restructuring_NN_4_21); auxpass(expected_VBN_7_42, is_VBZ_5_35); neg(expected_VBN_7_42, n't_RB_6_38); xcomp(expected_VBN_7_42, have_VB_9_54); aux(have_VB_9_54, to_TO_8_51); dobj(have_VB_9_54, impact_NN_11_63); det(impact_NN_11_63, any_DT_10_59); punct(impact_NN_11_63, ,_,_12_70); amod(impact_NN_11_63, adverse_JJ_13_72); punct(impact_NN_11_63, ,_,_16_93); prep(impact_NN_11_63, on_IN_17_95); cc(adverse_JJ_13_72, or_CC_14_80); advmod(adverse_JJ_13_72, otherwise_RB_15_83); pobj(on_IN_17_95, results_NNS_20_112); poss(results_NNS_20_112, its_PRP$_18_98); amod(results_NNS_20_112, financial_JJ_19_102) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0068 the restructuring ;;; the_DT_3_17; restructuring_NN_4_21 to have ;;; to_TO_8_51; have_VB_9_54 any impact , adverse ;;; any_DT_10_59; impact_NN_11_63; ,_,_12_70; adverse_JJ_13_72 0.00680 None None 1 det(debate_NN_2_15, The_DT_0_0); amod(debate_NN_2_15, continuing_VBG_1_4); prep(debate_NN_2_15, about_IN_3_22); pobj(about_IN_3_22, GMOs_NNS_4_28); prep(GMOs_NNS_4_28, in_IN_5_33); pobj(in_IN_5_33, agriculture_NN_6_36); nsubj(exemplifies_VBZ_7_48, debate_NN_2_15); dobj(exemplifies_VBZ_7_48, one_CD_8_60); punct(exemplifies_VBZ_7_48, ._._24_156); prep(one_CD_8_60, of_IN_9_64); punct(one_CD_8_60, :_:_15_100); dep(one_CD_8_60, relationship_NN_17_106); pobj(of_IN_9_64, ideas_NNS_14_94); det(textbook_NN_11_72, this_DT_10_67); possessive(textbook_NN_11_72, 's_POS_12_81); poss(ideas_NNS_14_94, textbook_NN_11_72); amod(ideas_NNS_14_94, recurring_VBG_13_84); det(relationship_NN_17_106, the_DT_16_102); prep(relationship_NN_17_106, of_IN_18_119); prep(relationship_NN_17_106, to_TO_22_145); pobj(of_IN_18_119, science_NN_19_122); cc(science_NN_19_122, and_CC_20_130); conj(science_NN_19_122, technology_NN_21_134); pobj(to_TO_22_145, society_NN_23_148) Template {rel} {arg1} dobj> {arg2} 0.1443 The continuing debate ;;; The_DT_0_0; continuing_VBG_1_4; debate_NN_2_15 exemplifies ;;; exemplifies_VBZ_7_48 one of this textbook 's recurring ideas ;;; one_CD_8_60; of_IN_9_64; this_DT_10_67; textbook_NN_11_72; 's_POS_12_81; recurring_VBG_13_84; ideas_NN_14_94 0.14430 None None 1 det(data_NNS_1_4, The_DT_0_0); nsubj(support_VBP_2_9, data_NNS_1_4); dobj(support_VBP_2_9, hypothesis_NN_4_21); punct(support_VBP_2_9, ._._31_207); det(hypothesis_NN_4_21, the_DT_3_17); prep(hypothesis_NN_4_21, that_IN_5_32); pobj(that_IN_5_32, growth_NN_9_63); amod(growth_NN_9_63, garlic_JJ_6_37); nn(growth_NN_9_63, mustard_NN_7_44); nn(growth_NN_9_63, suppresses_NNS_8_52); prep(growth_NN_9_63, of_IN_10_70); prep(growth_NN_9_63, by_IN_13_86); pobj(of_IN_10_70, trees_NNS_12_80); amod(trees_NNS_12_80, native_JJ_11_73); pcomp(by_IN_13_86, affecting_VBG_14_89); dobj(affecting_VBG_14_89, soil_NN_16_103); prep(affecting_VBG_14_89, in_IN_17_108); det(soil_NN_16_103, the_DT_15_99); pobj(in_IN_17_108, way_NN_19_113); det(way_NN_19_113, a_DT_18_111); prep(way_NN_19_113, that_IN_20_117); nsubj(that_IN_20_117, associations_NNS_23_143); nn(associations_NNS_23_143, disrupts_NNS_21_122); amod(associations_NNS_23_143, mutualistic_JJ_22_131); prep(associations_NNS_23_143, between_IN_24_156); pobj(between_IN_24_156, trees_NNS_26_168); det(trees_NNS_26_168, the_DT_25_164); cc(trees_NNS_26_168, and_CC_27_174); conj(trees_NNS_26_168, fungi_NNS_30_201); amod(fungi_NNS_30_201, arbuscular_JJ_28_178); amod(fungi_NNS_30_201, mycorrhizal_JJ_29_189) Template {rel} {arg1} dobj> {arg2} 0.0416 The data ;;; The_DT_0_0; data_NN_1_4 support ;;; support_VBP_2_9 the hypothesis ;;; the_DT_3_17; hypothesis_NN_4_21 0.04160 None None 1 det(data_NNS_1_4, The_DT_0_0); nsubj(support_VBP_2_9, data_NNS_1_4); dobj(support_VBP_2_9, hypothesis_NN_4_21); punct(support_VBP_2_9, ._._31_207); det(hypothesis_NN_4_21, the_DT_3_17); prep(hypothesis_NN_4_21, that_IN_5_32); pobj(that_IN_5_32, growth_NN_9_63); amod(growth_NN_9_63, garlic_JJ_6_37); nn(growth_NN_9_63, mustard_NN_7_44); nn(growth_NN_9_63, suppresses_NNS_8_52); prep(growth_NN_9_63, of_IN_10_70); prep(growth_NN_9_63, by_IN_13_86); pobj(of_IN_10_70, trees_NNS_12_80); amod(trees_NNS_12_80, native_JJ_11_73); pcomp(by_IN_13_86, affecting_VBG_14_89); dobj(affecting_VBG_14_89, soil_NN_16_103); prep(affecting_VBG_14_89, in_IN_17_108); det(soil_NN_16_103, the_DT_15_99); pobj(in_IN_17_108, way_NN_19_113); det(way_NN_19_113, a_DT_18_111); prep(way_NN_19_113, that_IN_20_117); nsubj(that_IN_20_117, associations_NNS_23_143); nn(associations_NNS_23_143, disrupts_NNS_21_122); amod(associations_NNS_23_143, mutualistic_JJ_22_131); prep(associations_NNS_23_143, between_IN_24_156); pobj(between_IN_24_156, trees_NNS_26_168); det(trees_NNS_26_168, the_DT_25_164); cc(trees_NNS_26_168, and_CC_27_174); conj(trees_NNS_26_168, fungi_NNS_30_201); amod(fungi_NNS_30_201, arbuscular_JJ_28_178); amod(fungi_NNS_30_201, mycorrhizal_JJ_29_189) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 the soil ;;; the_DT_15_99; soil_NN_16_103 be affecting in ;;; affecting_VBG_14_89 a way ;;; a_DT_18_111; way_NN_19_113 0.00790 None None 1 det(disease_NN_1_4, The_DT_0_0); nsubj(kills_VBZ_2_12, disease_NN_1_4); dobj(kills_VBZ_2_12, corals_NNS_3_18); prep(kills_VBZ_2_12, by_IN_4_25); punct(kills_VBZ_2_12, ._._23_114); pcomp(by_IN_4_25, causing_VBG_5_28); dobj(causing_VBG_5_28, tissue_NN_7_42); poss(tissue_NN_7_42, their_PRP$_6_36); infmod(tissue_NN_7_42, slough_VB_9_52); aux(slough_VB_9_52, to_TO_8_49); prt(slough_VB_9_52, off_RP_10_59); prep(slough_VB_9_52, in_IN_11_63); prep(slough_VB_9_52, from_IN_14_73); pobj(in_IN_11_63, band_NN_13_68); det(band_NN_13_68, a_DT_12_66); pobj(from_IN_14_73, base_NN_16_82); det(base_NN_16_82, the_DT_15_78); prep(base_NN_16_82, to_TO_17_87); pobj(to_TO_17_87, tip_NN_19_94); det(tip_NN_19_94, the_DT_18_90); prep(tip_NN_19_94, of_IN_20_98); pobj(of_IN_20_98, branches_NNS_22_105); det(branches_NNS_22_105, the_DT_21_101) Template {rel} {arg1} dobj> {arg2} 0.1443 The disease ;;; The_DT_0_0; disease_NN_1_4 kills ;;; kills_VBZ_2_12 corals ;;; corals_NN_3_18 0.14430 None None 1 det(episode_NN_1_4, The_DT_0_0); nsubjpass(written_VBN_3_16, episode_NN_1_4); auxpass(written_VBN_3_16, was_VBD_2_12); prep(written_VBN_3_16, by_IN_4_24); cc(written_VBN_3_16, and_CC_10_56); conj(written_VBN_3_16, directed_VBN_11_60); punct(written_VBN_3_16, ._._15_87); pobj(by_IN_4_24, Murphy_NNP_6_33); nn(Murphy_NNP_6_33, Kevin_NNP_5_27); cc(Murphy_NNP_6_33, and_CC_7_40); conj(Murphy_NNP_6_33, Etten_NNP_9_50); nn(Etten_NNP_9_50, Kevin_NNP_8_44); prep(directed_VBN_11_60, by_IN_12_69); pobj(by_IN_12_69, Grossman_NNP_14_78); nn(Grossman_NNP_14_78, David_NNP_13_72) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The episode ;;; The_DT_0_0; episode_NN_1_4 be directed by ;;; directed_VBN_11_60 David Grossman ;;; David_NNP_13_72; Grossman_NNP_14_78 1.00000 None None 1 det(episode_NN_1_4, The_DT_0_0); nsubjpass(written_VBN_3_16, episode_NN_1_4); auxpass(written_VBN_3_16, was_VBD_2_12); prep(written_VBN_3_16, by_IN_4_24); cc(written_VBN_3_16, and_CC_10_56); conj(written_VBN_3_16, directed_VBN_11_60); punct(written_VBN_3_16, ._._15_87); pobj(by_IN_4_24, Murphy_NNP_6_33); nn(Murphy_NNP_6_33, Kevin_NNP_5_27); cc(Murphy_NNP_6_33, and_CC_7_40); conj(Murphy_NNP_6_33, Etten_NNP_9_50); nn(Etten_NNP_9_50, Kevin_NNP_8_44); prep(directed_VBN_11_60, by_IN_12_69); pobj(by_IN_12_69, Grossman_NNP_14_78); nn(Grossman_NNP_14_78, David_NNP_13_72) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The episode ;;; The_DT_0_0; episode_NN_1_4 was written by ;;; was_VBD_2_12; written_VBN_3_16 Kevin Murphy and Kevin Etten ;;; Kevin_NNP_5_27; Murphy_NNP_6_33; and_CC_7_40; Kevin_NNP_8_44; Etten_NNP_9_50 1.00000 None None 1 det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.9555 The failure in Oakland of the freeway segment ;;; The_DT_0_0; failure_NN_1_4; in_IN_2_12; Oakland_NNP_3_15; of_IN_4_23; the_DT_5_26; freeway_NN_6_30; segment_NN_7_38 was the deadliest aspect of ;;; was_VBD_13_77; the_DT_14_81; deadliest_JJ_15_85; aspect_NN_16_95 the quake ;;; the_DT_18_105; quake_NN_19_109 0.95550 although_officials were hopeful yesterday that the death toll there might be significantly lower than the 250 initially feared_21_39 None 1 det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 the freeway segment ;;; the_DT_5_26; freeway_NN_6_30; segment_NN_7_38 be known as ;;; known_VBN_8_46 the Cypress structure ;;; the_DT_10_55; Cypress_NNP_11_59; structure_NN_12_67 0.11100 None None 1 det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 the deadliest aspect of the quake ;;; the_DT_14_81; deadliest_JJ_15_85; aspect_NN_16_95; of_IN_17_102; the_DT_18_105; quake_NN_19_109 be The failure in Oakland of the freeway segment in ;;; The_DT_0_0; failure_NN_1_4; in_IN_2_12; Oakland_NNP_3_15; of_IN_4_23; the_DT_5_26; freeway_NN_6_30; segment_NN_7_38 Oakland ;;; Oakland_NNP_3_15 0.04770 None None 1 det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 the deadliest aspect of the quake ;;; the_DT_14_81; deadliest_JJ_15_85; aspect_NN_16_95; of_IN_17_102; the_DT_18_105; quake_NN_19_109 be The failure of ;;; The_DT_0_0; failure_NN_1_4 the freeway segment known as the Cypress structure ;;; the_DT_5_26; freeway_NN_6_30; segment_NN_7_38; known_VBN_8_46; as_IN_9_52; the_DT_10_55; Cypress_NNP_11_59; structure_NN_12_67 0.04770 None None 1 det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 The failure in Oakland of the freeway segment ;;; The_DT_0_0; failure_NN_1_4; in_IN_2_12; Oakland_NNP_3_15; of_IN_4_23; the_DT_5_26; freeway_NN_6_30; segment_NN_7_38 was ;;; was_VBD_13_77 the deadliest aspect of the quake ;;; the_DT_14_81; deadliest_JJ_15_85; aspect_NN_16_95; of_IN_17_102; the_DT_18_105; quake_NN_19_109 0.02160 None None 1 det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 officials ;;; officials_NN_22_126 were ;;; were_VBD_23_136 hopeful ;;; hopeful_JJ_24_141 0.02160 None None 1 det(failure_NN_1_4, The_DT_0_0); prep(failure_NN_1_4, in_IN_2_12); prep(failure_NN_1_4, of_IN_4_23); pobj(in_IN_2_12, Oakland_NNP_3_15); pobj(of_IN_4_23, segment_NN_7_38); det(segment_NN_7_38, the_DT_5_26); nn(segment_NN_7_38, freeway_NN_6_30); partmod(segment_NN_7_38, known_VBN_8_46); prep(known_VBN_8_46, as_IN_9_52); pobj(as_IN_9_52, structure_NN_12_67); det(structure_NN_12_67, the_DT_10_55); nn(structure_NN_12_67, Cypress_NNP_11_59); nsubj(aspect_NN_16_95, failure_NN_1_4); cop(aspect_NN_16_95, was_VBD_13_77); det(aspect_NN_16_95, the_DT_14_81); amod(aspect_NN_16_95, deadliest_JJS_15_85); prep(aspect_NN_16_95, of_IN_17_102); punct(aspect_NN_16_95, ,_,_20_115); advcl(aspect_NN_16_95, hopeful_JJ_24_141); punct(aspect_NN_16_95, ._._40_244); pobj(of_IN_17_102, quake_NN_19_109); det(quake_NN_19_109, the_DT_18_105); mark(hopeful_JJ_24_141, although_IN_21_117); nsubj(hopeful_JJ_24_141, officials_NNS_22_126); cop(hopeful_JJ_24_141, were_VBD_23_136); tmod(hopeful_JJ_24_141, yesterday_NN_25_149); ccomp(hopeful_JJ_24_141, lower_JJR_34_208); det(toll_NN_29_174, the_DT_27_164); nn(toll_NN_29_174, death_NN_28_168); advmod(toll_NN_29_174, there_RB_30_179); complm(lower_JJR_34_208, that_IN_26_159); nsubj(lower_JJR_34_208, toll_NN_29_174); aux(lower_JJR_34_208, might_MD_31_185); cop(lower_JJR_34_208, be_VB_32_191); advmod(lower_JJR_34_208, significantly_RB_33_194); prep(lower_JJR_34_208, than_IN_35_214); pobj(than_IN_35_214, 250_CD_37_223); dep(250_CD_37_223, the_DT_36_219); partmod(250_CD_37_223, feared_VBN_39_237); advmod(feared_VBN_39_237, initially_RB_38_227) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0128 the death toll ;;; the_DT_27_164; death_NN_28_168; toll_NN_29_174 might be significantly lower than ;;; might_MD_31_185; be_VB_32_191; significantly_RB_33_194; lower_JJR_34_208 250 initially feared ;;; 250_CD_37_223; initially_RB_38_227; feared_VBN_39_237 0.01280 None None 0 det(step_NN_2_10, The_DT_0_0); amod(step_NN_2_10, first_JJ_1_4); prep(step_NN_2_10, after_IN_3_15); pcomp(after_IN_3_15, sequencing_VBG_4_21); dobj(sequencing_VBG_4_21, molecules_NNS_6_36); det(molecules_NNS_6_36, the_DT_5_32); nsubj(is_VBZ_7_46, step_NN_2_10); prep(is_VBZ_7_46, to_TO_8_49); prep(is_VBZ_7_46, from_IN_12_79); punct(is_VBZ_7_46, ._._17_110); pobj(to_TO_8_49, sequences_NNS_11_69); amod(sequences_NNS_11_69, align_JJ_9_52); amod(sequences_NNS_11_69, comparable_JJ_10_58); pobj(from_IN_12_79, species_NNS_14_88); det(species_NNS_14_88, the_DT_13_84); partmod(species_NNS_14_88, studied_VBN_16_102); auxpass(studied_VBN_16_102, being_VBG_15_96) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 The first step ;;; The_DT_0_0; first_JJ_1_4; step_NN_2_10 is from ;;; is_VBZ_7_46 the species being studied ;;; the_DT_13_84; species_NN_14_88; being_VBG_15_96; studied_VBN_16_102 0.24440 None None 0 det(step_NN_2_10, The_DT_0_0); amod(step_NN_2_10, first_JJ_1_4); prep(step_NN_2_10, after_IN_3_15); pcomp(after_IN_3_15, sequencing_VBG_4_21); dobj(sequencing_VBG_4_21, molecules_NNS_6_36); det(molecules_NNS_6_36, the_DT_5_32); nsubj(is_VBZ_7_46, step_NN_2_10); prep(is_VBZ_7_46, to_TO_8_49); prep(is_VBZ_7_46, from_IN_12_79); punct(is_VBZ_7_46, ._._17_110); pobj(to_TO_8_49, sequences_NNS_11_69); amod(sequences_NNS_11_69, align_JJ_9_52); amod(sequences_NNS_11_69, comparable_JJ_10_58); pobj(from_IN_12_79, species_NNS_14_88); det(species_NNS_14_88, the_DT_13_84); partmod(species_NNS_14_88, studied_VBN_16_102); auxpass(studied_VBN_16_102, being_VBG_15_96) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.2444 The first step ;;; The_DT_0_0; first_JJ_1_4; step_NN_2_10 is to ;;; is_VBZ_7_46 align comparable sequences ;;; align_JJ_9_52; comparable_JJ_10_58; sequences_NN_11_69 0.24440 None None 1 det(group_NN_1_4, The_DT_0_0); possessive(group_NN_1_4, 's_POS_2_10); poss(Cahoon_NNP_4_18, group_NN_1_4); nn(Cahoon_NNP_4_18, Mark_NNP_3_13); nsubj(says_VBZ_5_25, Cahoon_NNP_4_18); ccomp(says_VBZ_5_25, led_VBN_12_61); punct(says_VBZ_5_25, ._._33_204); poss(efforts_NNS_7_34, its_PRP$_6_30); partmod(efforts_NNS_7_34, begun_VBN_8_42); prep(begun_VBN_8_42, in_IN_9_48); pobj(in_IN_9_48, 1989_CD_10_51); nsubj(led_VBN_12_61, efforts_NNS_7_34); aux(led_VBN_12_61, have_VBP_11_56); prep(led_VBN_12_61, to_TO_13_65); pobj(to_TO_13_65, introduction_NN_15_72); det(introduction_NN_15_72, the_DT_14_68); prep(introduction_NN_15_72, of_IN_16_85); prep(introduction_NN_15_72, in_IN_18_94); infmod(introduction_NN_15_72, establish_VB_25_139); pobj(of_IN_16_85, bills_NNS_17_88); pobj(in_IN_18_94, Massachusetts_NNP_19_97); punct(Massachusetts_NNP_19_97, ,_,_20_111); conj(Massachusetts_NNP_19_97, Minnesota_NNP_21_113); cc(Massachusetts_NNP_19_97, and_CC_22_123); conj(Massachusetts_NNP_19_97, Colorado_NNP_23_127); aux(establish_VB_25_139, to_TO_24_136); dobj(establish_VB_25_139, procedures_NNS_27_160); amod(procedures_NNS_27_160, evenhanded_JJ_26_149); partmod(procedures_NNS_27_160, affecting_VBG_28_171); dobj(affecting_VBG_28_171, kinds_NNS_30_185); det(kinds_NNS_30_185, all_DT_29_181); prep(kinds_NNS_30_185, of_IN_31_191); pobj(of_IN_31_191, taxpayers_NNS_32_194) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 its efforts ;;; its_PRP$_6_30; efforts_NN_7_34 be begun in ;;; begun_VBN_8_42 1989 ;;; 1989_CD_10_51 0.11100 None None 1 det(group_NN_1_4, The_DT_0_0); possessive(group_NN_1_4, 's_POS_2_10); poss(Cahoon_NNP_4_18, group_NN_1_4); nn(Cahoon_NNP_4_18, Mark_NNP_3_13); nsubj(says_VBZ_5_25, Cahoon_NNP_4_18); ccomp(says_VBZ_5_25, led_VBN_12_61); punct(says_VBZ_5_25, ._._33_204); poss(efforts_NNS_7_34, its_PRP$_6_30); partmod(efforts_NNS_7_34, begun_VBN_8_42); prep(begun_VBN_8_42, in_IN_9_48); pobj(in_IN_9_48, 1989_CD_10_51); nsubj(led_VBN_12_61, efforts_NNS_7_34); aux(led_VBN_12_61, have_VBP_11_56); prep(led_VBN_12_61, to_TO_13_65); pobj(to_TO_13_65, introduction_NN_15_72); det(introduction_NN_15_72, the_DT_14_68); prep(introduction_NN_15_72, of_IN_16_85); prep(introduction_NN_15_72, in_IN_18_94); infmod(introduction_NN_15_72, establish_VB_25_139); pobj(of_IN_16_85, bills_NNS_17_88); pobj(in_IN_18_94, Massachusetts_NNP_19_97); punct(Massachusetts_NNP_19_97, ,_,_20_111); conj(Massachusetts_NNP_19_97, Minnesota_NNP_21_113); cc(Massachusetts_NNP_19_97, and_CC_22_123); conj(Massachusetts_NNP_19_97, Colorado_NNP_23_127); aux(establish_VB_25_139, to_TO_24_136); dobj(establish_VB_25_139, procedures_NNS_27_160); amod(procedures_NNS_27_160, evenhanded_JJ_26_149); partmod(procedures_NNS_27_160, affecting_VBG_28_171); dobj(affecting_VBG_28_171, kinds_NNS_30_185); det(kinds_NNS_30_185, all_DT_29_181); prep(kinds_NNS_30_185, of_IN_31_191); pobj(of_IN_31_191, taxpayers_NNS_32_194) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0444 its efforts begun in 1989 ;;; its_PRP$_6_30; efforts_NN_7_34; begun_VBN_8_42; in_IN_9_48; 1989_CD_10_51 have led to ;;; have_VBP_11_56; led_VBN_12_61 the introduction of bills to establish evenhanded procedures ;;; the_DT_14_68; introduction_NN_15_72; of_IN_16_85; bills_NN_17_88; to_TO_24_136; establish_VB_25_139; evenhanded_JJ_26_149; procedures_NN_27_160 0.04440 None The group 's Mark Cahoon_says_0_4_5_5 1 det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The incidence of malaria ;;; The_DT_0_0; incidence_NN_1_4; of_IN_2_14; malaria_NN_3_17 was greatly diminished by ;;; was_VBD_4_25; greatly_RB_5_29; diminished_VBN_6_37 insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs that killed Plasmodium in humans ;;; insecticides_NN_11_64; that_WDT_12_77; reduced_VBD_13_82; carrier_NN_14_90; populations_NN_15_98; of_IN_16_110; Anopheles_NNP_17_113; mosquitoes_NN_18_123; and_CC_19_134; by_IN_20_138; drugs_NN_21_141; that_WDT_22_147; killed_VBD_23_152; Plasmodium_NNP_24_159; in_IN_25_170; humans_NN_26_173 1.00000 None None 1 det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The incidence of malaria ;;; The_DT_0_0; incidence_NN_1_4; of_IN_2_14; malaria_NN_3_17 was greatly diminished in ;;; was_VBD_4_25; greatly_RB_5_29; diminished_VBN_6_37 the 1960s ;;; the_DT_8_51; 1960s_NN_9_55 1.00000 None None 0 det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 insecticides that reduced carrier populations of Anopheles mosquitoes and by drugs ;;; insecticides_NN_11_64; that_WDT_12_77; reduced_VBD_13_82; carrier_NN_14_90; populations_NN_15_98; of_IN_16_110; Anopheles_NNP_17_113; mosquitoes_NN_18_123; and_CC_19_134; by_IN_20_138; drugs_NN_21_141 killed Plasmodium in ;;; killed_VBD_23_152; Plasmodium_NNP_24_159 humans ;;; humans_NN_26_173 0.02000 None None 1 det(incidence_NN_1_4, The_DT_0_0); prep(incidence_NN_1_4, of_IN_2_14); pobj(of_IN_2_14, malaria_NN_3_17); nsubjpass(diminished_VBN_6_37, incidence_NN_1_4); auxpass(diminished_VBN_6_37, was_VBD_4_25); advmod(diminished_VBN_6_37, greatly_RB_5_29); prep(diminished_VBN_6_37, in_IN_7_48); prep(diminished_VBN_6_37, by_IN_10_61); punct(diminished_VBN_6_37, ._._27_180); pobj(in_IN_7_48, 1960s_NNS_9_55); det(1960s_NNS_9_55, the_DT_8_51); pobj(by_IN_10_61, insecticides_NNS_11_64); cc(by_IN_10_61, and_CC_19_134); conj(by_IN_10_61, by_IN_20_138); rcmod(insecticides_NNS_11_64, reduced_VBD_13_82); nsubj(reduced_VBD_13_82, that_WDT_12_77); dobj(reduced_VBD_13_82, populations_NNS_15_98); nn(populations_NNS_15_98, carrier_NN_14_90); prep(populations_NNS_15_98, of_IN_16_110); pobj(of_IN_16_110, mosquitoes_NNS_18_123); nn(mosquitoes_NNS_18_123, Anopheles_NNP_17_113); pobj(by_IN_20_138, drugs_NNS_21_141); rcmod(drugs_NNS_21_141, killed_VBD_23_152); nsubj(killed_VBD_23_152, that_WDT_22_147); dobj(killed_VBD_23_152, Plasmodium_NNP_24_159); prep(killed_VBD_23_152, in_IN_25_170); pobj(in_IN_25_170, humans_NNS_26_173) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 Plasmodium ;;; Plasmodium_NNP_24_159 be killed in ;;; killed_VBD_23_152 humans ;;; humans_NN_26_173 0.01550 None None 1 det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The index which uses a base of 1981 as 100 ;;; The_DT_0_0; index_NN_1_4; which_WDT_3_12; uses_VBZ_4_18; a_DT_5_23; base_NN_6_25; of_IN_7_30; 1981_CD_8_33; as_IN_9_38; 100_CD_10_41 was calculated at ;;; was_VBD_12_47; calculated_VBN_13_51 140.91 points ;;; 140.91_CD_15_65; points_NN_16_72 1.00000 None None 1 det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The index which uses a base of 1981 as 100 ;;; The_DT_0_0; index_NN_1_4; which_WDT_3_12; uses_VBZ_4_18; a_DT_5_23; base_NN_6_25; of_IN_7_30; 1981_CD_8_33; as_IN_9_38; 100_CD_10_41 was calculated from ;;; was_VBD_12_47; calculated_VBN_13_51 140.74 ;;; 140.74_CD_21_97 1.00000 None None 1 det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2} 0.0125 The index ;;; The_DT_0_0; index_NN_1_4 uses a base of 1981 as ;;; uses_VBZ_4_18; a_DT_5_23; base_NN_6_25; of_IN_7_30; 1981_CD_8_33 100 ;;; 100_CD_10_41 0.01250 None None 1 det(index_NN_1_4, The_DT_0_0); punct(index_NN_1_4, ,_,_2_10); rcmod(index_NN_1_4, uses_VBZ_4_18); punct(index_NN_1_4, ,_,_11_45); nsubj(uses_VBZ_4_18, which_WDT_3_12); dobj(uses_VBZ_4_18, base_NN_6_25); prep(uses_VBZ_4_18, as_IN_9_38); det(base_NN_6_25, a_DT_5_23); prep(base_NN_6_25, of_IN_7_30); pobj(of_IN_7_30, 1981_CD_8_33); pobj(as_IN_9_38, 100_CD_10_41); nsubjpass(calculated_VBN_13_51, index_NN_1_4); auxpass(calculated_VBN_13_51, was_VBD_12_47); prep(calculated_VBN_13_51, at_IN_14_62); punct(calculated_VBN_13_51, ,_,_19_90); prep(calculated_VBN_13_51, from_IN_20_92); punct(calculated_VBN_13_51, ._._24_117); pobj(at_IN_14_62, points_NNS_16_72); num(points_NNS_16_72, 140.91_CD_15_65); prep(points_NNS_16_72, in_IN_17_79); pobj(in_IN_17_79, October_NNP_18_82); pobj(from_IN_20_92, 140.74_CD_21_97); dep(from_IN_20_92, in_IN_22_104); pobj(in_IN_22_104, September_NNP_23_107) Template be {rel} by {arg1} dobj> {arg2} 0.3797 The issue 's smooth absorption ;;; The_DT_0_0; issue_NN_1_4; 's_POS_2_10; smooth_JJ_3_13; absorption_NN_4_20 eased ;;; eased_VBD_5_31 fears ;;; fears_NN_6_37 0.37970 None traders_said_16_16_17_17 0 det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) Template {rel} {arg1} dobj> {arg2} 0.1473 supply ;;; supply_NN_8_48 would overwhelm ;;; would_MD_9_55; overwhelm_VB_10_61 demand ;;; demand_NN_11_71 0.14730 None None 0 det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 supply ;;; supply_NN_8_48 would overwhelm demand in ;;; would_MD_9_55; overwhelm_VB_10_61; demand_NN_11_71 coming sessions ;;; coming_JJ_13_81; sessions_NN_14_88 0.13490 None None 0 det(issue_NN_1_4, The_DT_0_0); possessive(issue_NN_1_4, 's_POS_2_10); poss(absorption_NN_4_20, issue_NN_1_4); amod(absorption_NN_4_20, smooth_JJ_3_13); nsubj(eased_VBD_5_31, absorption_NN_4_20); dobj(eased_VBD_5_31, fears_NNS_6_37); ccomp(fears_NNS_6_37, overwhelm_VB_10_61); complm(overwhelm_VB_10_61, that_IN_7_43); nsubj(overwhelm_VB_10_61, supply_NN_8_48); aux(overwhelm_VB_10_61, would_MD_9_55); dobj(overwhelm_VB_10_61, demand_NN_11_71); prep(overwhelm_VB_10_61, in_IN_12_78); pobj(in_IN_12_78, sessions_NNS_14_88); amod(sessions_NNS_14_88, coming_JJ_13_81); ccomp(said_VBD_17_107, eased_VBD_5_31); punct(said_VBD_17_107, ,_,_15_97); nsubj(said_VBD_17_107, traders_NNS_16_99); punct(said_VBD_17_107, ._._18_112) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 demand ;;; demand_NN_11_71 would be overwhelm in ;;; would_MD_9_55; overwhelm_VB_10_61 coming sessions ;;; coming_JJ_13_81; sessions_NN_14_88 0.01320 None None 1 det(concern_NN_3_19, The_DT_0_0); nn(concern_NN_3_19, metal_NN_1_4); nn(concern_NN_3_19, products_NNS_2_10); nsubj(has_VBZ_5_37, concern_NN_3_19); advmod(has_VBZ_5_37, currently_RB_4_27); dobj(has_VBZ_5_37, shares_NNS_9_60); punct(has_VBZ_5_37, ._._11_79); number(million_CD_7_45, 7.2_CD_6_41); num(shares_NNS_9_60, million_CD_7_45); amod(shares_NNS_9_60, common_JJ_8_53); amod(shares_NNS_9_60, outstanding_JJ_10_67) Template {rel} {arg1} dobj> {arg2} 0.1443 The metal products concern ;;; The_DT_0_0; metal_NN_1_4; products_NN_2_10; concern_NN_3_19 currently has ;;; currently_RB_4_27; has_VBZ_5_37 7.2 million common shares outstanding ;;; 7.2_CD_6_41; million_CD_7_45; common_JJ_8_53; shares_NN_9_60; outstanding_JJ_10_67 0.14430 None None 1 det(oldest_JJS_1_4, The_DT_0_0); advmod(accepted_VBN_3_18, widely_RB_2_11); amod(fossils_NNS_4_27, oldest_JJS_1_4); amod(fossils_NNS_4_27, accepted_VBN_3_18); prep(fossils_NNS_4_27, of_IN_5_35); pobj(of_IN_5_35, organisms_NNS_7_49); amod(organisms_NNS_7_49, eukaryotic_JJ_6_38); quantmod(billion_CD_11_73, about_IN_9_63); number(billion_CD_11_73, 2.1_CD_10_69); num(years_NNS_12_81, billion_CD_11_73); nsubj(old_JJ_13_87, fossils_NNS_4_27); cop(old_JJ_13_87, are_VBP_8_59); measure(old_JJ_13_87, years_NNS_12_81); punct(old_JJ_13_87, ._._14_91) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 old ;;; old_JJ_13_87 be The oldest widely accepted fossils of ;;; The_DT_0_0; oldest_JJ_1_4; widely_RB_2_11; accepted_VBN_3_18; fossils_NN_4_27 eukaryotic organisms ;;; eukaryotic_JJ_6_38; organisms_NN_7_49 0.04770 None None 1 det(communication_NN_3_16, The_DT_0_0); amod(communication_NN_3_16, other_JJ_1_4); amod(communication_NN_3_16, major_JJ_2_10); cc(communication_NN_3_16, and_CC_4_30); conj(communication_NN_3_16, system_NN_6_42); nn(system_NN_6_42, control_NN_5_34); nsubj(system_NN_10_64, communication_NN_3_16); cop(system_NN_10_64, is_VBZ_7_49); det(system_NN_10_64, the_DT_8_52); amod(system_NN_10_64, nervous_JJ_9_56); punct(system_NN_10_64, ,_,_11_71); appos(system_NN_10_64, network_NN_13_75); punct(system_NN_10_64, --_:_19_115); dep(system_NN_10_64, that_IN_20_118); punct(system_NN_10_64, ._._26_165); det(network_NN_13_75, a_DT_12_73); prep(network_NN_13_75, of_IN_14_83); punct(network_NN_13_75, --_:_17_104); dep(network_NN_13_75, neurons_NNS_18_107); pobj(of_IN_14_83, cells_NNS_16_98); amod(cells_NNS_16_98, specialized_JJ_15_86); pobj(that_IN_20_118, signals_NNS_22_132); nn(signals_NNS_22_132, transmit_NN_21_123); prep(signals_NNS_22_132, along_IN_23_140); pobj(along_IN_23_140, pathways_NNS_25_156); amod(pathways_NNS_25_156, dedicated_VBN_24_146) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 the nervous system ;;; the_DT_8_52; nervous_JJ_9_56; system_NN_10_64 be a network of ;;; a_DT_12_73; network_NN_13_75 specialized cells ;;; specialized_JJ_15_86; cells_NN_16_98 0.40310 None None 1 det(communication_NN_3_16, The_DT_0_0); amod(communication_NN_3_16, other_JJ_1_4); amod(communication_NN_3_16, major_JJ_2_10); cc(communication_NN_3_16, and_CC_4_30); conj(communication_NN_3_16, system_NN_6_42); nn(system_NN_6_42, control_NN_5_34); nsubj(system_NN_10_64, communication_NN_3_16); cop(system_NN_10_64, is_VBZ_7_49); det(system_NN_10_64, the_DT_8_52); amod(system_NN_10_64, nervous_JJ_9_56); punct(system_NN_10_64, ,_,_11_71); appos(system_NN_10_64, network_NN_13_75); punct(system_NN_10_64, --_:_19_115); dep(system_NN_10_64, that_IN_20_118); punct(system_NN_10_64, ._._26_165); det(network_NN_13_75, a_DT_12_73); prep(network_NN_13_75, of_IN_14_83); punct(network_NN_13_75, --_:_17_104); dep(network_NN_13_75, neurons_NNS_18_107); pobj(of_IN_14_83, cells_NNS_16_98); amod(cells_NNS_16_98, specialized_JJ_15_86); pobj(that_IN_20_118, signals_NNS_22_132); nn(signals_NNS_22_132, transmit_NN_21_123); prep(signals_NNS_22_132, along_IN_23_140); pobj(along_IN_23_140, pathways_NNS_25_156); amod(pathways_NNS_25_156, dedicated_VBN_24_146) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 The other major communication and control system ;;; The_DT_0_0; other_JJ_1_4; major_JJ_2_10; communication_NN_3_16; and_CC_4_30; control_NN_5_34; system_NN_6_42 is ;;; is_VBZ_7_49 the nervous system ;;; the_DT_8_52; nervous_JJ_9_56; system_NN_10_64 0.00840 None None 1 det(route_NN_2_10, The_DT_0_0); amod(route_NN_2_10, other_JJ_1_4); prep(route_NN_2_10, of_IN_3_16); pobj(of_IN_3_16, infection_NN_5_25); amod(infection_NN_5_25, viral_JJ_4_19); nsubj(transmission_NN_8_47, route_NN_2_10); cop(transmission_NN_8_47, is_VBZ_6_35); amod(transmission_NN_8_47, vertical_JJ_7_38); punct(transmission_NN_8_47, ,_,_9_60); prep(transmission_NN_8_47, in_IN_10_62); punct(transmission_NN_8_47, ._._21_120); pobj(in_IN_10_62, which_WDT_11_65); dep(in_IN_10_62, plant_NN_13_73); det(plant_NN_13_73, a_DT_12_71); prep(plant_NN_13_73, inherits_IN_14_79); pobj(inherits_IN_14_79, infection_NN_17_96); det(infection_NN_17_96, a_DT_15_88); amod(infection_NN_17_96, viral_JJ_16_90); prep(infection_NN_17_96, from_IN_18_106); pobj(from_IN_18_106, parent_NN_20_113); det(parent_NN_20_113, a_DT_19_111) Template be {rel} {prep} {arg1} >nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0477 vertical transmission ;;; vertical_JJ_7_38; transmission_NN_8_47 be The other route of ;;; The_DT_0_0; other_JJ_1_4; route_NN_2_10 viral infection ;;; viral_JJ_4_19; infection_NN_5_25 0.04770 None None 1 det(route_NN_2_10, The_DT_0_0); amod(route_NN_2_10, other_JJ_1_4); prep(route_NN_2_10, of_IN_3_16); pobj(of_IN_3_16, infection_NN_5_25); amod(infection_NN_5_25, viral_JJ_4_19); nsubj(transmission_NN_8_47, route_NN_2_10); cop(transmission_NN_8_47, is_VBZ_6_35); amod(transmission_NN_8_47, vertical_JJ_7_38); punct(transmission_NN_8_47, ,_,_9_60); prep(transmission_NN_8_47, in_IN_10_62); punct(transmission_NN_8_47, ._._21_120); pobj(in_IN_10_62, which_WDT_11_65); dep(in_IN_10_62, plant_NN_13_73); det(plant_NN_13_73, a_DT_12_71); prep(plant_NN_13_73, inherits_IN_14_79); pobj(inherits_IN_14_79, infection_NN_17_96); det(infection_NN_17_96, a_DT_15_88); amod(infection_NN_17_96, viral_JJ_16_90); prep(infection_NN_17_96, from_IN_18_106); pobj(from_IN_18_106, parent_NN_20_113); det(parent_NN_20_113, a_DT_19_111) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 The other route of viral infection ;;; The_DT_0_0; other_JJ_1_4; route_NN_2_10; of_IN_3_16; viral_JJ_4_19; infection_NN_5_25 is ;;; is_VBZ_6_35 vertical transmission ;;; vertical_JJ_7_38; transmission_NN_8_47 0.00840 None None 1 det(song_NN_1_4, The_DT_0_0); nsubj(has_VBZ_2_9, song_NN_1_4); dobj(has_VBZ_2_9, titles_NNS_6_30); punct(has_VBZ_2_9, :_:_7_37); punct(has_VBZ_2_9, "_``_8_39); dep(has_VBZ_2_9, Cheat_VB_9_41); punct(has_VBZ_2_9, ._._25_116); num(demo_NN_4_17, two_CD_3_13); nn(titles_NNS_6_30, demo_NN_4_17); amod(titles_NNS_6_30, working_VBG_5_22); punct(Cheat_VB_9_41, "_''_10_47); cc(Cheat_VB_9_41, and_CC_11_49); conj(Cheat_VB_9_41, Girl_NNP_14_61); punct(Girl_NNP_14_61, "_``_12_53); nn(Girl_NNP_14_61, Drunk_NNP_13_55); punct(Girl_NNP_14_61, "_''_15_66); punct(Girl_NNP_14_61, ,_,_16_68); rcmod(Girl_NNP_14_61, leaked_VBD_18_76); nsubj(leaked_VBD_18_76, which_WDT_17_70); prep(leaked_VBD_18_76, on_IN_19_83); prep(leaked_VBD_18_76, in_IN_22_99); pobj(on_IN_19_83, internet_NN_21_90); det(internet_NN_21_90, the_DT_20_86); pobj(in_IN_22_99, November_NNP_23_102); num(November_NNP_23_102, 2007_CD_24_111) Template {rel} {arg1} dobj> {arg2} 0.1443 The song ;;; The_DT_0_0; song_NN_1_4 has ;;; has_VBZ_2_9 two demo working titles ;;; two_CD_3_13; demo_NN_4_17; working_VBG_5_22; titles_NN_6_30 0.14430 None None 1 det(song_NN_1_4, The_DT_0_0); nsubj(has_VBZ_2_9, song_NN_1_4); dobj(has_VBZ_2_9, titles_NNS_6_30); punct(has_VBZ_2_9, :_:_7_37); punct(has_VBZ_2_9, "_``_8_39); dep(has_VBZ_2_9, Cheat_VB_9_41); punct(has_VBZ_2_9, ._._25_116); num(demo_NN_4_17, two_CD_3_13); nn(titles_NNS_6_30, demo_NN_4_17); amod(titles_NNS_6_30, working_VBG_5_22); punct(Cheat_VB_9_41, "_''_10_47); cc(Cheat_VB_9_41, and_CC_11_49); conj(Cheat_VB_9_41, Girl_NNP_14_61); punct(Girl_NNP_14_61, "_``_12_53); nn(Girl_NNP_14_61, Drunk_NNP_13_55); punct(Girl_NNP_14_61, "_''_15_66); punct(Girl_NNP_14_61, ,_,_16_68); rcmod(Girl_NNP_14_61, leaked_VBD_18_76); nsubj(leaked_VBD_18_76, which_WDT_17_70); prep(leaked_VBD_18_76, on_IN_19_83); prep(leaked_VBD_18_76, in_IN_22_99); pobj(on_IN_19_83, internet_NN_21_90); det(internet_NN_21_90, the_DT_20_86); pobj(in_IN_22_99, November_NNP_23_102); num(November_NNP_23_102, 2007_CD_24_111) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 Drunk Girl ;;; Drunk_NNP_13_55; Girl_NNP_14_61 leaked in ;;; leaked_VBD_18_76 November 2007 ;;; November_NNP_23_102; 2007_CD_24_111 0.02000 None None 1 det(song_NN_1_4, The_DT_0_0); nsubj(has_VBZ_2_9, song_NN_1_4); dobj(has_VBZ_2_9, titles_NNS_6_30); punct(has_VBZ_2_9, :_:_7_37); punct(has_VBZ_2_9, "_``_8_39); dep(has_VBZ_2_9, Cheat_VB_9_41); punct(has_VBZ_2_9, ._._25_116); num(demo_NN_4_17, two_CD_3_13); nn(titles_NNS_6_30, demo_NN_4_17); amod(titles_NNS_6_30, working_VBG_5_22); punct(Cheat_VB_9_41, "_''_10_47); cc(Cheat_VB_9_41, and_CC_11_49); conj(Cheat_VB_9_41, Girl_NNP_14_61); punct(Girl_NNP_14_61, "_``_12_53); nn(Girl_NNP_14_61, Drunk_NNP_13_55); punct(Girl_NNP_14_61, "_''_15_66); punct(Girl_NNP_14_61, ,_,_16_68); rcmod(Girl_NNP_14_61, leaked_VBD_18_76); nsubj(leaked_VBD_18_76, which_WDT_17_70); prep(leaked_VBD_18_76, on_IN_19_83); prep(leaked_VBD_18_76, in_IN_22_99); pobj(on_IN_19_83, internet_NN_21_90); det(internet_NN_21_90, the_DT_20_86); pobj(in_IN_22_99, November_NNP_23_102); num(November_NNP_23_102, 2007_CD_24_111) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 Drunk Girl ;;; Drunk_NNP_13_55; Girl_NNP_14_61 leaked on ;;; leaked_VBD_18_76 the internet ;;; the_DT_20_86; internet_NN_21_90 0.02000 None None 1 det(song_NN_1_4, The_DT_0_0); nsubjpass(recorded_VBN_3_13, song_NN_1_4); auxpass(recorded_VBN_3_13, was_VBD_2_9); prep(recorded_VBN_3_13, in_IN_4_22); punct(recorded_VBN_3_13, ,_,_6_30); cc(recorded_VBN_3_13, and_CC_7_32); conj(recorded_VBN_3_13, supposed_VBN_9_40); punct(recorded_VBN_3_13, ._._29_140); pobj(in_IN_4_22, 2003_CD_5_25); auxpass(supposed_VBN_9_40, was_VBD_8_36); xcomp(supposed_VBN_9_40, included_VBN_12_55); punct(supposed_VBN_9_40, ,_,_20_93); dep(supposed_VBN_9_40, released_VBN_22_106); aux(included_VBN_12_55, to_TO_10_49); auxpass(included_VBN_12_55, be_VB_11_52); prep(included_VBN_12_55, on_IN_13_64); pobj(on_IN_13_64, album_NN_16_77); poss(album_NN_16_77, her_PRP$_14_67); amod(album_NN_16_77, third_JJ_15_71); punct(album_NN_16_77, "_''_17_83); advmod(album_NN_16_77, Still_RB_18_85); punct(album_NN_16_77, "_''_19_91); advmod(released_VBN_22_106, eventually_RB_21_95); prep(released_VBN_22_106, under_IN_23_115); pobj(under_IN_23_115, title_NN_25_125); det(title_NN_25_125, the_DT_24_121); dep(title_NN_25_125, More_JJR_27_133); punct(More_JJR_27_133, "_``_26_131); punct(More_JJR_27_133, "_''_28_138) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 The song ;;; The_DT_0_0; song_NN_1_4 was recorded in ;;; was_VBD_2_9; recorded_VBN_3_13 2003 ;;; 2003_CD_5_25 1.00000 None None 0 det(receptor_NN_3_17, The_DT_0_0); nn(receptor_NN_3_17, term_NN_1_4); amod(receptor_NN_3_17, sensory_JJ_2_9); nsubjpass(used_VBN_5_29, receptor_NN_3_17); auxpass(used_VBN_5_29, is_VBZ_4_26); purpcl(used_VBN_5_29, describe_VB_7_37); punct(used_VBN_5_29, ,_,_13_70); cc(used_VBN_5_29, well_RB_15_75); dobj(used_VBN_5_29, structure_NN_19_99); punct(used_VBN_5_29, ._._25_146); aux(describe_VB_7_37, to_TO_6_34); dobj(describe_VB_7_37, cell_NN_10_56); det(cell_NN_10_56, a_DT_8_46); amod(cell_NN_10_56, sensory_JJ_9_48); cc(cell_NN_10_56, or_CC_11_61); conj(cell_NN_10_56, organ_NN_12_64); dep(well_RB_15_75, as_RB_14_72); dep(well_RB_15_75, as_IN_16_80); det(structure_NN_19_99, the_DT_17_83); amod(structure_NN_19_99, subcellular_JJ_18_87); rcmod(structure_NN_19_99, interacts_VBZ_21_114); nsubj(interacts_VBZ_21_114, that_WDT_20_109); advmod(interacts_VBZ_21_114, directly_RB_22_124); prep(interacts_VBZ_21_114, with_IN_23_133); pobj(with_IN_23_133, stimuli_NNS_24_138) Template be {rel} {arg1} dobj> {arg2} 0.0191 The term sensory receptor ;;; The_DT_0_0; term_NN_1_4; sensory_JJ_2_9; receptor_NN_3_17 is used ;;; is_VBZ_4_26; used_VBN_5_29 the subcellular structure that interacts directly with stimuli ;;; the_DT_17_83; subcellular_JJ_18_87; structure_NN_19_99; that_WDT_20_109; interacts_VBZ_21_114; directly_RB_22_124; with_IN_23_133; stimuli_NN_24_138 0.01910 None None 1 det(receptor_NN_3_17, The_DT_0_0); nn(receptor_NN_3_17, term_NN_1_4); amod(receptor_NN_3_17, sensory_JJ_2_9); nsubjpass(used_VBN_5_29, receptor_NN_3_17); auxpass(used_VBN_5_29, is_VBZ_4_26); purpcl(used_VBN_5_29, describe_VB_7_37); punct(used_VBN_5_29, ,_,_13_70); cc(used_VBN_5_29, well_RB_15_75); dobj(used_VBN_5_29, structure_NN_19_99); punct(used_VBN_5_29, ._._25_146); aux(describe_VB_7_37, to_TO_6_34); dobj(describe_VB_7_37, cell_NN_10_56); det(cell_NN_10_56, a_DT_8_46); amod(cell_NN_10_56, sensory_JJ_9_48); cc(cell_NN_10_56, or_CC_11_61); conj(cell_NN_10_56, organ_NN_12_64); dep(well_RB_15_75, as_RB_14_72); dep(well_RB_15_75, as_IN_16_80); det(structure_NN_19_99, the_DT_17_83); amod(structure_NN_19_99, subcellular_JJ_18_87); rcmod(structure_NN_19_99, interacts_VBZ_21_114); nsubj(interacts_VBZ_21_114, that_WDT_20_109); advmod(interacts_VBZ_21_114, directly_RB_22_124); prep(interacts_VBZ_21_114, with_IN_23_133); pobj(with_IN_23_133, stimuli_NNS_24_138) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBZ} >{prep:regex=prep_(.*)}> {arg2} 0.0125 the subcellular structure ;;; the_DT_17_83; subcellular_JJ_18_87; structure_NN_19_99 interacts directly with ;;; interacts_VBZ_21_114; directly_RB_22_124 stimuli ;;; stimuli_NN_24_138 0.01250 None None 1 det(university_NN_1_4, The_DT_0_0); nsubj(implied_VBD_2_15, university_NN_1_4); ccomp(implied_VBD_2_15, drop_VB_6_37); punct(implied_VBD_2_15, ._._22_139); complm(drop_VB_6_37, that_IN_3_23); nsubj(drop_VB_6_37, it_PRP_4_28); aux(drop_VB_6_37, would_MD_5_31); dobj(drop_VB_6_37, opposition_NN_8_46); advcl(drop_VB_6_37, successful_JJ_17_107); poss(opposition_NN_8_46, its_PRP$_7_42); prep(opposition_NN_8_46, to_TO_9_57); pobj(to_TO_9_57, ownership_NN_11_68); amod(ownership_NN_11_68, foreign_JJ_10_60); cc(Ciba-Geigy_NNP_13_81, and_CC_14_92); conj(Ciba-Geigy_NNP_13_81, Chiron_NNP_15_96); mark(successful_JJ_17_107, if_IN_12_78); nsubj(successful_JJ_17_107, Ciba-Geigy_NNP_13_81); cop(successful_JJ_17_107, are_VBP_16_103); prep(successful_JJ_17_107, with_IN_18_118); pobj(with_IN_18_118, bid_NN_21_135); poss(bid_NN_21_135, their_PRP$_19_123); amod(bid_NN_21_135, lower_JJR_20_129) Template {rel} {arg1} dobj> {arg2} 0.1473 it ;;; it_PRP_4_28 would drop ;;; would_MD_5_31; drop_VB_6_37 its opposition ;;; its_PRP$_7_42; opposition_NN_8_46 0.14730 if_Ciba-Geigy and Chiron are successful with their lower bid_12_21 None 0 det(university_NN_1_4, The_DT_0_0); nsubj(implied_VBD_2_15, university_NN_1_4); ccomp(implied_VBD_2_15, drop_VB_6_37); punct(implied_VBD_2_15, ._._22_139); complm(drop_VB_6_37, that_IN_3_23); nsubj(drop_VB_6_37, it_PRP_4_28); aux(drop_VB_6_37, would_MD_5_31); dobj(drop_VB_6_37, opposition_NN_8_46); advcl(drop_VB_6_37, successful_JJ_17_107); poss(opposition_NN_8_46, its_PRP$_7_42); prep(opposition_NN_8_46, to_TO_9_57); pobj(to_TO_9_57, ownership_NN_11_68); amod(ownership_NN_11_68, foreign_JJ_10_60); cc(Ciba-Geigy_NNP_13_81, and_CC_14_92); conj(Ciba-Geigy_NNP_13_81, Chiron_NNP_15_96); mark(successful_JJ_17_107, if_IN_12_78); nsubj(successful_JJ_17_107, Ciba-Geigy_NNP_13_81); cop(successful_JJ_17_107, are_VBP_16_103); prep(successful_JJ_17_107, with_IN_18_118); pobj(with_IN_18_118, bid_NN_21_135); poss(bid_NN_21_135, their_PRP$_19_123); amod(bid_NN_21_135, lower_JJR_20_129) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0478 Ciba-Geigy and Chiron ;;; Ciba-Geigy_NNP_13_81; and_CC_14_92; Chiron_NNP_15_96 are successful with ;;; are_VBP_16_103; successful_JJ_17_107 their lower bid ;;; their_PRP$_19_123; lower_JJR_20_129; bid_NN_21_135 0.04780 None None 1 det(layers_NNS_2_10, The_DT_0_0); amod(layers_NNS_2_10, upper_JJ_1_4); prep(layers_NNS_2_10, of_IN_3_17); punct(layers_NNS_2_10, ._._38_213); pobj(of_IN_3_17, soil_NN_5_24); det(soil_NN_5_24, the_DT_4_20); punct(soil_NN_5_24, ,_,_6_29); prep(soil_NN_5_24, from_IN_7_31); pobj(from_IN_7_31, which_WDT_8_36); dep(from_IN_7_31, plants_NNS_9_42); dep(plants_NNS_9_42, all_DT_12_63); punct(plants_NNS_9_42, ,_,_20_106); conj(plants_NNS_9_42, contain_VBP_21_108); cop(all_DT_12_63, absorb_VBP_10_49); advmod(all_DT_12_63, nearly_RB_11_56); prep(all_DT_12_63, of_IN_13_67); pobj(of_IN_13_67, water_NN_15_74); det(water_NN_15_74, the_DT_14_70); cc(water_NN_15_74, and_CC_16_80); conj(water_NN_15_74, minerals_NNS_17_84); rcmod(minerals_NNS_17_84, require_VBP_19_98); nsubj(require_VBP_19_98, they_PRP_18_93); dobj(contain_VBP_21_108, range_NN_24_123); det(range_NN_24_123, a_DT_22_116); amod(range_NN_24_123, wide_JJ_23_118); prep(range_NN_24_123, of_IN_25_129); pcomp(of_IN_25_129, living_VBG_26_132); dobj(living_VBG_26_132, organisms_NNS_27_139); rcmod(organisms_NNS_27_139, interact_NN_29_154); nsubj(interact_NN_29_154, that_WDT_28_149); prep(interact_NN_29_154, with_IN_30_163); pobj(with_IN_30_163, other_JJ_32_173); cc(with_IN_30_163, and_CC_33_179); conj(with_IN_30_163, with_IN_34_183); det(other_JJ_32_173, each_DT_31_168); pobj(with_IN_34_183, environment_NN_37_201); det(environment_NN_37_201, the_DT_35_188); amod(environment_NN_37_201, physical_JJ_36_192) Template be {rel} {prep} {arg1} >rcmod> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0314 organisms ;;; organisms_NN_27_139 be interact with ;;; interact_NN_29_154 each other and with the physical environment ;;; each_DT_31_168; other_JJ_32_173; and_CC_33_179; with_IN_34_183; the_DT_35_188; physical_JJ_36_192; environment_NN_37_201 0.03140 None None 0 det(water_NN_1_4, The_DT_0_0); nsubjpass(heated_VBN_3_14, water_NN_1_4); auxpass(heated_VBN_3_14, was_VBD_2_10); ccomp(heated_VBN_3_14, vaporized_JJ_7_34); cc(heated_VBN_3_14, and_CC_8_44); conj(heated_VBN_3_14, moved_VBD_9_48); punct(heated_VBN_3_14, ,_,_13_68); dobj(heated_VBN_3_14, flask_NN_15_77); punct(heated_VBN_3_14, ._._27_136); advmod(vaporized_JJ_7_34, so_RB_4_21); dep(vaporized_JJ_7_34, that_IN_5_24); quantmod(vaporized_JJ_7_34, some_DT_6_29); prep(moved_VBD_9_48, into_IN_10_54); pobj(into_IN_10_54, second_JJ_12_61); det(second_JJ_12_61, a_DT_11_59); amod(flask_NN_15_77, higher_JJR_14_70); partmod(flask_NN_15_77, containing_VBG_16_83); dobj(containing_VBG_16_83, "_''_21_112); det("_''_21_112, the_DT_17_94); punct("_''_21_112, "_``_18_98); advmod("_''_21_112, "atmosphere_RB_19_99); punct("_''_21_112, "_``_20_111); punct("_''_21_112, --_:_22_114); dep("_''_21_112, mixture_NN_24_119); det(mixture_NN_24_119, a_DT_23_117); prep(mixture_NN_24_119, of_IN_25_127); pobj(of_IN_25_127, gases_NNS_26_130) Template be {rel} {arg1} dobj> {arg2} 0.0191 The water ;;; The_DT_0_0; water_NN_1_4 was heated ;;; was_VBD_2_10; heated_VBN_3_14 higher flask containing the " "atmosphere " " -- a mixture of gases ;;; higher_JJR_14_70; flask_NN_15_77; containing_VBG_16_83; the_DT_17_94; "_``_18_98; "atmosphere_RB_19_99; "_``_20_111; "_''_21_112; --_:_22_114; a_DT_23_117; mixture_NN_24_119; of_IN_25_127; gases_NN_26_130 0.01910 None None 0 det(water_NN_1_4, The_DT_0_0); nsubjpass(heated_VBN_3_14, water_NN_1_4); auxpass(heated_VBN_3_14, was_VBD_2_10); ccomp(heated_VBN_3_14, vaporized_JJ_7_34); cc(heated_VBN_3_14, and_CC_8_44); conj(heated_VBN_3_14, moved_VBD_9_48); punct(heated_VBN_3_14, ,_,_13_68); dobj(heated_VBN_3_14, flask_NN_15_77); punct(heated_VBN_3_14, ._._27_136); advmod(vaporized_JJ_7_34, so_RB_4_21); dep(vaporized_JJ_7_34, that_IN_5_24); quantmod(vaporized_JJ_7_34, some_DT_6_29); prep(moved_VBD_9_48, into_IN_10_54); pobj(into_IN_10_54, second_JJ_12_61); det(second_JJ_12_61, a_DT_11_59); amod(flask_NN_15_77, higher_JJR_14_70); partmod(flask_NN_15_77, containing_VBG_16_83); dobj(containing_VBG_16_83, "_''_21_112); det("_''_21_112, the_DT_17_94); punct("_''_21_112, "_``_18_98); advmod("_''_21_112, "atmosphere_RB_19_99); punct("_''_21_112, "_``_20_111); punct("_''_21_112, --_:_22_114); dep("_''_21_112, mixture_NN_24_119); det(mixture_NN_24_119, a_DT_23_117); prep(mixture_NN_24_119, of_IN_25_127); pobj(of_IN_25_127, gases_NNS_26_130) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0052 The water ;;; The_DT_0_0; water_NN_1_4 moved into ;;; moved_VBD_9_48 a second ;;; a_DT_11_59; second_JJ_12_61 0.00520 None None 1 cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) Template {rel} {arg1} dobj> {arg2} 0.1473 scientists and the public ;;; scientists_NN_2_12; and_CC_3_23; the_DT_4_27; public_NN_5_31 Therefore must assess ;;; Therefore_RB_0_0; must_MD_6_38; assess_VB_7_43 the possible benefits of transgenic products ;;; the_DT_12_74; possible_JJ_13_78; benefits_NN_14_87; of_IN_15_96; transgenic_JJ_16_99; products_NN_17_110 0.14730 None None 0 cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 scientists and the public ;;; scientists_NN_2_12; and_CC_3_23; the_DT_4_27; public_NN_5_31 Therefore must assess the possible benefits of transgenic products versus the risks that society is willing to take on ;;; Therefore_RB_0_0; must_MD_6_38; assess_VB_7_43; the_DT_12_74; possible_JJ_13_78; benefits_NN_14_87; of_IN_15_96; transgenic_JJ_16_99; products_NN_17_110; versus_IN_18_119; the_DT_19_126; risks_NN_20_130; that_IN_21_136; society_NN_22_141; is_VBZ_23_149; willing_JJ_24_152; to_TO_25_160; take_VB_26_163 a case-by-case basis ;;; a_DT_9_53; case-by-case_JJ_10_55; basis_NN_11_68 0.13490 None None 1 cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 the possible benefits of transgenic products ;;; the_DT_12_74; possible_JJ_13_78; benefits_NN_14_87; of_IN_15_96; transgenic_JJ_16_99; products_NN_17_110 Therefore must be assess on ;;; Therefore_RB_0_0; must_MD_6_38; assess_VB_7_43 a case-by-case basis ;;; a_DT_9_53; case-by-case_JJ_10_55; basis_NN_11_68 0.01320 None None 0 cc(scientists_NNS_2_12, and_CC_3_23); conj(scientists_NNS_2_12, public_NN_5_31); det(public_NN_5_31, the_DT_4_27); advmod(assess_VB_7_43, Therefore_RB_0_0); punct(assess_VB_7_43, ,_,_1_10); nsubj(assess_VB_7_43, scientists_NNS_2_12); aux(assess_VB_7_43, must_MD_6_38); prep(assess_VB_7_43, on_IN_8_50); dobj(assess_VB_7_43, benefits_NNS_14_87); punct(assess_VB_7_43, ._._27_168); pobj(on_IN_8_50, basis_NN_11_68); det(basis_NN_11_68, a_DT_9_53); amod(basis_NN_11_68, case-by-case_JJ_10_55); det(benefits_NNS_14_87, the_DT_12_74); amod(benefits_NNS_14_87, possible_JJ_13_78); prep(benefits_NNS_14_87, of_IN_15_96); prep(benefits_NNS_14_87, versus_IN_18_119); pobj(of_IN_15_96, products_NNS_17_110); amod(products_NNS_17_110, transgenic_JJ_16_99); pobj(versus_IN_18_119, risks_NNS_20_130); det(risks_NNS_20_130, the_DT_19_126); rcmod(risks_NNS_20_130, willing_JJ_24_152); dobj(willing_JJ_24_152, that_IN_21_136); nsubj(willing_JJ_24_152, society_NN_22_141); cop(willing_JJ_24_152, is_VBZ_23_149); xcomp(willing_JJ_24_152, take_VB_26_163); aux(take_VB_26_163, to_TO_25_160) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 society ;;; society_NN_22_141 is ;;; is_VBZ_23_149 willing ;;; willing_JJ_24_152 0.00840 None None 1 nsubj(formed_VBD_1_5, They_PRP_0_0); prep(formed_VBD_1_5, in_IN_2_12); cc(formed_VBD_1_5, and_CC_10_52); conj(formed_VBD_1_5, consisted_VBD_11_56); punct(formed_VBD_1_5, ._._28_146); pobj(in_IN_2_12, 1950s_NNS_5_24); det(1950s_NNS_5_24, the_DT_3_15); amod(1950s_NNS_5_24, late_JJ_4_19); prep(1950s_NNS_5_24, in_IN_6_30); pobj(in_IN_6_30, school_NN_9_45); amod(school_NN_9_45, junior_JJ_7_33); amod(school_NN_9_45, high_JJ_8_40); prep(consisted_VBD_11_56, of_IN_12_66); pobj(of_IN_12_66, Hightower_NNP_13_69); punct(Hightower_NNP_13_69, ,_,_14_79); appos(Hightower_NNP_13_69, Davis_NNP_15_81); punct(Hightower_NNP_13_69, ,_,_16_87); cc(Hightower_NNP_13_69, and_CC_17_89); conj(Hightower_NNP_13_69, sisters_NNS_20_108); punct(Hightower_NNP_13_69, :_:_21_116); dep(Hightower_NNP_13_69, Shirley_NNP_22_118); num(sisters_NNS_20_108, three_CD_18_93); nn(sisters_NNS_20_108, Brickley_NNP_19_99); punct(Shirley_NNP_22_118, ,_,_23_126); conj(Shirley_NNP_22_118, Jean_NNP_24_128); punct(Shirley_NNP_22_118, ,_,_25_133); cc(Shirley_NNP_22_118, and_CC_26_135); conj(Shirley_NNP_22_118, Audrey_NNP_27_139) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 They ;;; They_PRP_0_0 consisted of ;;; consisted_VBD_11_56 Hightower , Davis , and three Brickley sisters ;;; Hightower_NNP_13_69; ,_,_14_79; Davis_NNP_15_81; ,_,_16_87; and_CC_17_89; three_CD_18_93; Brickley_NNP_19_99; sisters_NN_20_108 0.73450 None None 1 nsubj(formed_VBD_1_5, They_PRP_0_0); prep(formed_VBD_1_5, in_IN_2_12); cc(formed_VBD_1_5, and_CC_10_52); conj(formed_VBD_1_5, consisted_VBD_11_56); punct(formed_VBD_1_5, ._._28_146); pobj(in_IN_2_12, 1950s_NNS_5_24); det(1950s_NNS_5_24, the_DT_3_15); amod(1950s_NNS_5_24, late_JJ_4_19); prep(1950s_NNS_5_24, in_IN_6_30); pobj(in_IN_6_30, school_NN_9_45); amod(school_NN_9_45, junior_JJ_7_33); amod(school_NN_9_45, high_JJ_8_40); prep(consisted_VBD_11_56, of_IN_12_66); pobj(of_IN_12_66, Hightower_NNP_13_69); punct(Hightower_NNP_13_69, ,_,_14_79); appos(Hightower_NNP_13_69, Davis_NNP_15_81); punct(Hightower_NNP_13_69, ,_,_16_87); cc(Hightower_NNP_13_69, and_CC_17_89); conj(Hightower_NNP_13_69, sisters_NNS_20_108); punct(Hightower_NNP_13_69, :_:_21_116); dep(Hightower_NNP_13_69, Shirley_NNP_22_118); num(sisters_NNS_20_108, three_CD_18_93); nn(sisters_NNS_20_108, Brickley_NNP_19_99); punct(Shirley_NNP_22_118, ,_,_23_126); conj(Shirley_NNP_22_118, Jean_NNP_24_128); punct(Shirley_NNP_22_118, ,_,_25_133); cc(Shirley_NNP_22_118, and_CC_26_135); conj(Shirley_NNP_22_118, Audrey_NNP_27_139) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 They ;;; They_PRP_0_0 formed in ;;; formed_VBD_1_5 the late 1950s ;;; the_DT_3_15; late_JJ_4_19; 1950s_NN_5_24 0.73450 None None 1 nsubj(headlined_VBD_1_5, They_PRP_0_0); prep(headlined_VBD_1_5, in_IN_2_15); prep(headlined_VBD_1_5, Through_IN_9_53); punct(headlined_VBD_1_5, ._._12_75); pobj(in_IN_2_15, 2006_CD_4_23); amod(2006_CD_4_23, late_JJ_3_18); prep(2006_CD_4_23, with_IN_5_28); pobj(with_IN_5_28, Saosin_NNP_6_33); cc(Saosin_NNP_6_33, and_CC_7_40); conj(Saosin_NNP_6_33, Bleeding_NNP_8_44); dep(Through_IN_9_53, as_IN_10_61); pobj(as_IN_10_61, supporters_NNS_11_64) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 They ;;; They_PRP_0_0 headlined in ;;; headlined_VBD_1_5 late 2006 ;;; late_JJ_3_18; 2006_CD_4_23 0.73450 None None 1 nsubj(collect_VBP_2_12, They_PRP_0_0); advmod(collect_VBP_2_12, merely_RB_1_5); dobj(collect_VBP_2_12, contributions_NNS_4_29); prep(collect_VBP_2_12, from_IN_5_43); punct(collect_VBP_2_12, ._._13_89); nn(contributions_NNS_4_29, campaign_NN_3_20); pobj(from_IN_5_43, developers_NNS_6_48); rcmod(developers_NNS_6_48, help_VBP_8_64); nsubj(help_VBP_8_64, that_WDT_7_59); ccomp(help_VBP_8_64, keep_VB_9_69); dobj(keep_VB_9_69, them_PRP_10_74); prep(keep_VB_9_69, in_IN_11_79); pobj(in_IN_11_79, office_NN_12_82) Template {rel} {arg1} dobj> {arg2} 0.0416 They ;;; They_PRP_0_0 merely collect ;;; merely_RB_1_5; collect_VBP_2_12 campaign contributions ;;; campaign_NN_3_20; contributions_NN_4_29 0.04160 None None 1 nsubj(collect_VBP_2_12, They_PRP_0_0); advmod(collect_VBP_2_12, merely_RB_1_5); dobj(collect_VBP_2_12, contributions_NNS_4_29); prep(collect_VBP_2_12, from_IN_5_43); punct(collect_VBP_2_12, ._._13_89); nn(contributions_NNS_4_29, campaign_NN_3_20); pobj(from_IN_5_43, developers_NNS_6_48); rcmod(developers_NNS_6_48, help_VBP_8_64); nsubj(help_VBP_8_64, that_WDT_7_59); ccomp(help_VBP_8_64, keep_VB_9_69); dobj(keep_VB_9_69, them_PRP_10_74); prep(keep_VB_9_69, in_IN_11_79); pobj(in_IN_11_79, office_NN_12_82) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0307 They ;;; They_PRP_0_0 merely collect campaign contributions from ;;; merely_RB_1_5; collect_VBP_2_12; campaign_NN_3_20; contributions_NN_4_29 developers that help keep them in office ;;; developers_NN_6_48; that_WDT_7_59; help_VBP_8_64; keep_VB_9_69; them_PRP_10_74; in_IN_11_79; office_NN_12_82 0.03070 None None 1 nsubj(collect_VBP_2_12, They_PRP_0_0); advmod(collect_VBP_2_12, merely_RB_1_5); dobj(collect_VBP_2_12, contributions_NNS_4_29); prep(collect_VBP_2_12, from_IN_5_43); punct(collect_VBP_2_12, ._._13_89); nn(contributions_NNS_4_29, campaign_NN_3_20); pobj(from_IN_5_43, developers_NNS_6_48); rcmod(developers_NNS_6_48, help_VBP_8_64); nsubj(help_VBP_8_64, that_WDT_7_59); ccomp(help_VBP_8_64, keep_VB_9_69); dobj(keep_VB_9_69, them_PRP_10_74); prep(keep_VB_9_69, in_IN_11_79); pobj(in_IN_11_79, office_NN_12_82) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 them ;;; them_PRP_10_74 be keep in ;;; keep_VB_9_69 office ;;; office_NN_12_82 0.01320 None None 0 det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) Template {rel} {arg1} dobj> {arg2} 0.1473 a freely mating population ;;; a_DT_8_54; freely_RB_9_56; mating_VBG_10_63; population_NN_11_70 will give ;;; will_MD_12_81; give_VB_13_86 rise ;;; rise_NN_14_91 0.14730 None None 0 det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 a freely mating population ;;; a_DT_8_54; freely_RB_9_56; mating_VBG_10_63; population_NN_11_70 will give rise over ;;; will_MD_12_81; give_VB_13_86; rise_NN_14_91 many generations ;;; many_JJ_5_35; generations_NN_6_40 0.13490 None None 1 det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 a freely mating population ;;; a_DT_8_54; freely_RB_9_56; mating_VBG_10_63; population_NN_11_70 will give rise to ;;; will_MD_12_81; give_VB_13_86; rise_NN_14_91 a uniform population of individuals ;;; a_DT_16_99; uniform_JJ_17_101; population_NN_18_109; of_IN_19_120; individuals_NN_20_123 0.13490 None None 0 det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 rise ;;; rise_NN_14_91 will be give over ;;; will_MD_12_81; give_VB_13_86 many generations ;;; many_JJ_5_35; generations_NN_6_40 0.01320 None None 0 det(hypothesis_NN_1_5, This_DT_0_0); nsubj(predicts_VBZ_2_16, hypothesis_NN_1_5); ccomp(predicts_VBZ_2_16, give_VB_13_86); punct(predicts_VBZ_2_16, ._._21_135); pobj(over_IN_4_30, generations_NNS_6_40); amod(generations_NNS_6_40, many_JJ_5_35); advmod(mating_VBG_10_63, freely_RB_9_56); det(population_NN_11_70, a_DT_8_54); amod(population_NN_11_70, mating_VBG_10_63); complm(give_VB_13_86, that_IN_3_25); prep(give_VB_13_86, over_IN_4_30); punct(give_VB_13_86, ,_,_7_52); nsubj(give_VB_13_86, population_NN_11_70); aux(give_VB_13_86, will_MD_12_81); dobj(give_VB_13_86, rise_NN_14_91); prep(give_VB_13_86, to_TO_15_96); pobj(to_TO_15_96, population_NN_18_109); det(population_NN_18_109, a_DT_16_99); amod(population_NN_18_109, uniform_JJ_17_101); prep(population_NN_18_109, of_IN_19_120); pobj(of_IN_19_120, individuals_NNS_20_123) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 rise ;;; rise_NN_14_91 will be give to ;;; will_MD_12_81; give_VB_13_86 a uniform population of individuals ;;; a_DT_16_99; uniform_JJ_17_101; population_NN_18_109; of_IN_19_120; individuals_NN_20_123 0.01320 None None 0 det(method_NN_1_5, This_DT_0_0); nsubjpass(used_VBN_3_15, method_NN_1_5); auxpass(used_VBN_3_15, is_VBZ_2_12); xcomp(used_VBN_3_15, produce_VB_5_23); punct(used_VBN_3_15, ._._21_125); aux(produce_VB_5_23, to_TO_4_20); dobj(produce_VB_5_23, animals_NNS_7_38); amod(animals_NNS_7_38, cloned_JJ_6_31); rcmod(animals_NNS_7_38, identical_JJ_12_70); poss(genes_NNS_10_60, whose_WP$_8_46); amod(genes_NNS_10_60, nuclear_JJ_9_52); nsubj(identical_JJ_12_70, genes_NNS_10_60); cop(identical_JJ_12_70, are_VBP_11_66); prep(identical_JJ_12_70, to_TO_13_80); pobj(to_TO_13_80, those_DT_14_83); prep(those_DT_14_83, of_IN_15_89); pobj(of_IN_15_89, animal_NN_17_96); det(animal_NN_17_96, the_DT_16_92); partmod(animal_NN_17_96, supplying_VBG_18_103); dobj(supplying_VBG_18_103, nucleus_JJ_20_117); det(nucleus_JJ_20_117, the_DT_19_113) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0068 This method ;;; This_DT_0_0; method_NN_1_5 to produce ;;; to_TO_4_20; produce_VB_5_23 cloned animals whose nuclear genes are identical to those of the animal ;;; cloned_JJ_6_31; animals_NN_7_38; whose_WP$_8_46; nuclear_JJ_9_52; genes_NN_10_60; are_VBP_11_66; identical_JJ_12_70; to_TO_13_80; those_DT_14_83; of_IN_15_89; the_DT_16_92; animal_NN_17_96 0.00680 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1473 Scorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20 would take Ford to sell off ;;; would_MD_14_71; take_VB_15_77; Ford_NNP_16_82; to_TO_19_96; sell_VB_20_99; off_RP_21_104 the current Scorpio inventory of about 4,600 cars ;;; the_DT_22_108; current_JJ_23_112; Scorpio_NNP_24_120; inventory_NN_25_128; of_IN_26_138; about_IN_27_141; 4,600_CD_28_147; cars_NN_29_153 0.14730 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} {arg1} dobj> {arg2} 0.1473 Scorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20 would take ;;; would_MD_14_71; take_VB_15_77 Ford ;;; Ford_NNP_16_82 0.14730 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.1473 it ;;; it_PRP_13_68 would take Ford to sell off ;;; would_MD_14_71; take_VB_15_77; Ford_NNP_16_82; to_TO_19_96; sell_VB_20_99; off_RP_21_104 the current Scorpio inventory of about 4,600 cars ;;; the_DT_22_108; current_JJ_23_112; Scorpio_NNP_24_120; inventory_NN_25_128; of_IN_26_138; about_IN_27_141; 4,600_CD_28_147; cars_NN_29_153 0.14730 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} {arg1} dobj> {arg2} 0.1473 it ;;; it_PRP_13_68 would take ;;; would_MD_14_71; take_VB_15_77 Ford ;;; Ford_NNP_16_82 0.14730 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 Scorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20 would take Ford at ;;; would_MD_14_71; take_VB_15_77; Ford_NNP_16_82 the current sales pace ;;; the_DT_9_45; current_JJ_10_49; sales_NN_11_57; pace_NN_12_63 0.13490 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 it ;;; it_PRP_13_68 would take Ford at ;;; would_MD_14_71; take_VB_15_77; Ford_NNP_16_82 the current sales pace ;;; the_DT_9_45; current_JJ_10_49; sales_NN_11_57; pace_NN_12_63 0.13490 None None 1 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} in {arg1} tmod> {arg2} 0.0151 Scorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20 plummeted in ;;; plummeted_VBD_5_26 This year ;;; This_DT_0_0; year_NN_1_5 0.01510 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} in {arg1} tmod> {arg2} 0.0151 it ;;; it_PRP_13_68 plummeted in ;;; plummeted_VBD_5_26 This year ;;; This_DT_0_0; year_NN_1_5 0.01510 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 Ford ;;; Ford_NNP_16_82 would be take at ;;; would_MD_14_71; take_VB_15_77 the current sales pace ;;; the_DT_9_45; current_JJ_10_49; sales_NN_11_57; pace_NN_12_63 0.01320 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0055 Scorpio sales ;;; Scorpio_NNP_3_12; sales_NN_4_20 to sell off ;;; to_TO_19_96; sell_VB_20_99; off_RP_21_104 the current Scorpio inventory of about 4,600 cars ;;; the_DT_22_108; current_JJ_23_112; Scorpio_NNP_24_120; inventory_NN_25_128; of_IN_26_138; about_IN_27_141; 4,600_CD_28_147; cars_NN_29_153 0.00550 None None 0 det(year_NN_1_5, This_DT_0_0); nn(sales_NNS_4_20, Scorpio_NNP_3_12); tmod(plummeted_VBD_5_26, year_NN_1_5); punct(plummeted_VBD_5_26, ,_,_2_10); nsubj(plummeted_VBD_5_26, sales_NNS_4_20); punct(plummeted_VBD_5_26, ,_,_6_36); cc(plummeted_VBD_5_26, and_CC_7_38); conj(plummeted_VBD_5_26, take_VB_15_77); punct(plummeted_VBD_5_26, ._._30_158); pobj(at_IN_8_42, pace_NN_12_63); det(pace_NN_12_63, the_DT_9_45); amod(pace_NN_12_63, current_JJ_10_49); nn(pace_NN_12_63, sales_NNS_11_57); prep(take_VB_15_77, at_IN_8_42); nsubj(take_VB_15_77, it_PRP_13_68); aux(take_VB_15_77, would_MD_14_71); dobj(take_VB_15_77, Ford_NNP_16_82); tmod(take_VB_15_77, days_NNS_18_91); xcomp(take_VB_15_77, sell_VB_20_99); num(days_NNS_18_91, 242_CD_17_87); aux(sell_VB_20_99, to_TO_19_96); prt(sell_VB_20_99, off_RP_21_104); dobj(sell_VB_20_99, inventory_NN_25_128); det(inventory_NN_25_128, the_DT_22_108); amod(inventory_NN_25_128, current_JJ_23_112); nn(inventory_NN_25_128, Scorpio_NNP_24_120); prep(inventory_NN_25_128, of_IN_26_138); pobj(of_IN_26_138, cars_NNS_29_153); quantmod(4,600_CD_28_147, about_IN_27_141); num(cars_NNS_29_153, 4,600_CD_28_147) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0055 it ;;; it_PRP_13_68 to sell off ;;; to_TO_19_96; sell_VB_20_99; off_RP_21_104 the current Scorpio inventory of about 4,600 cars ;;; the_DT_22_108; current_JJ_23_112; Scorpio_NNP_24_120; inventory_NN_25_128; of_IN_26_138; about_IN_27_141; 4,600_CD_28_147; cars_NN_29_153 0.00550 None None 1 det(phloem_NN_3_11, the_DT_2_7); advmod(serve_VB_5_22, Thus_RB_0_0); punct(serve_VB_5_22, ,_,_1_5); nsubj(serve_VB_5_22, phloem_NN_3_11); aux(serve_VB_5_22, can_MD_4_18); dobj(serve_VB_5_22, function_NN_8_41); punct(serve_VB_5_22, ,_,_9_50); xcomp(serve_VB_5_22, allowing_VBG_10_52); punct(serve_VB_5_22, ._._19_128); det(function_NN_8_41, a_DT_6_28); amod(function_NN_8_41, nerve-like_JJ_7_30); prep(allowing_VBG_10_52, for_IN_11_61); pobj(for_IN_11_61, communication_NN_14_82); amod(communication_NN_14_82, swift_JJ_12_65); amod(communication_NN_14_82, electrical_JJ_13_71); prep(communication_NN_14_82, between_IN_15_96); pobj(between_IN_15_96, organs_NNS_18_121); advmod(separated_VBN_17_111, widely_RB_16_104); amod(organs_NNS_18_121, separated_VBN_17_111) Template {rel} {arg1} dobj> {arg2} 0.1473 the phloem ;;; the_DT_2_7; phloem_NN_3_11 Thus can serve ;;; Thus_RB_0_0; can_MD_4_18; serve_VB_5_22 a nerve-like function ;;; a_DT_6_28; nerve-like_JJ_7_30; function_NN_8_41 0.14730 None None 1 det(phloem_NN_3_11, the_DT_2_7); advmod(serve_VB_5_22, Thus_RB_0_0); punct(serve_VB_5_22, ,_,_1_5); nsubj(serve_VB_5_22, phloem_NN_3_11); aux(serve_VB_5_22, can_MD_4_18); dobj(serve_VB_5_22, function_NN_8_41); punct(serve_VB_5_22, ,_,_9_50); xcomp(serve_VB_5_22, allowing_VBG_10_52); punct(serve_VB_5_22, ._._19_128); det(function_NN_8_41, a_DT_6_28); amod(function_NN_8_41, nerve-like_JJ_7_30); prep(allowing_VBG_10_52, for_IN_11_61); pobj(for_IN_11_61, communication_NN_14_82); amod(communication_NN_14_82, swift_JJ_12_65); amod(communication_NN_14_82, electrical_JJ_13_71); prep(communication_NN_14_82, between_IN_15_96); pobj(between_IN_15_96, organs_NNS_18_121); advmod(separated_VBN_17_111, widely_RB_16_104); amod(organs_NNS_18_121, separated_VBN_17_111) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VBG} >{prep:regex=prep_(.*)}> {arg2} 0.1349 the phloem ;;; the_DT_2_7; phloem_NN_3_11 Thus can serve a nerve-like function allowing for ;;; Thus_RB_0_0; can_MD_4_18; serve_VB_5_22; a_DT_6_28; nerve-like_JJ_7_30; function_NN_8_41; allowing_VBG_10_52 swift electrical communication ;;; swift_JJ_12_65; electrical_JJ_13_71; communication_NN_14_82 0.13490 None None 1 aux(build_VB_1_3, To_TO_0_0); dobj(build_VB_1_3, molecules_NNS_4_21); punct(build_VB_1_3, ,_,_12_66); cc(build_VB_1_3, and_CC_13_68); conj(build_VB_1_3, reproduce_VB_14_72); det(molecules_NNS_4_21, the_DT_2_9); amod(molecules_NNS_4_21, complex_JJ_3_13); rcmod(molecules_NNS_4_21, needs_VBZ_6_34); nsubj(needs_VBZ_6_34, it_PRP_5_31); xcomp(needs_VBZ_6_34, grow_VB_8_43); aux(grow_VB_8_43, to_TO_7_40); punct(grow_VB_8_43, ,_,_9_48); conj(grow_VB_8_43, maintain_VB_10_50); dobj(maintain_VB_10_50, itself_PRP_11_59); det(animal_NN_17_87, an_DT_16_84); dep(obtain_VB_19_99, build_VB_1_3); punct(obtain_VB_19_99, ,_,_15_82); nsubj(obtain_VB_19_99, animal_NN_17_87); aux(obtain_VB_19_99, must_MD_18_94); dobj(obtain_VB_19_99, types_NNS_21_110); prep(obtain_VB_19_99, from_IN_25_138); punct(obtain_VB_19_99, ._._28_152); num(types_NNS_21_110, two_CD_20_106); prep(types_NNS_21_110, of_IN_22_116); pobj(of_IN_22_116, precursors_NNS_24_127); amod(precursors_NNS_24_127, organic_JJ_23_119); pobj(from_IN_25_138, food_NN_27_147); poss(food_NN_27_147, its_PRP$_26_143) Template {rel} {arg1} dobj> {arg2} 0.1473 an animal ;;; an_DT_16_84; animal_NN_17_87 must obtain ;;; must_MD_18_94; obtain_VB_19_99 two types of organic precursors ;;; two_CD_20_106; types_NN_21_110; of_IN_22_116; organic_JJ_23_119; precursors_NN_24_127 0.14730 None None 1 aux(build_VB_1_3, To_TO_0_0); dobj(build_VB_1_3, molecules_NNS_4_21); punct(build_VB_1_3, ,_,_12_66); cc(build_VB_1_3, and_CC_13_68); conj(build_VB_1_3, reproduce_VB_14_72); det(molecules_NNS_4_21, the_DT_2_9); amod(molecules_NNS_4_21, complex_JJ_3_13); rcmod(molecules_NNS_4_21, needs_VBZ_6_34); nsubj(needs_VBZ_6_34, it_PRP_5_31); xcomp(needs_VBZ_6_34, grow_VB_8_43); aux(grow_VB_8_43, to_TO_7_40); punct(grow_VB_8_43, ,_,_9_48); conj(grow_VB_8_43, maintain_VB_10_50); dobj(maintain_VB_10_50, itself_PRP_11_59); det(animal_NN_17_87, an_DT_16_84); dep(obtain_VB_19_99, build_VB_1_3); punct(obtain_VB_19_99, ,_,_15_82); nsubj(obtain_VB_19_99, animal_NN_17_87); aux(obtain_VB_19_99, must_MD_18_94); dobj(obtain_VB_19_99, types_NNS_21_110); prep(obtain_VB_19_99, from_IN_25_138); punct(obtain_VB_19_99, ._._28_152); num(types_NNS_21_110, two_CD_20_106); prep(types_NNS_21_110, of_IN_22_116); pobj(of_IN_22_116, precursors_NNS_24_127); amod(precursors_NNS_24_127, organic_JJ_23_119); pobj(from_IN_25_138, food_NN_27_147); poss(food_NN_27_147, its_PRP$_26_143) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.1349 an animal ;;; an_DT_16_84; animal_NN_17_87 must obtain two types of organic precursors from ;;; must_MD_18_94; obtain_VB_19_99; two_CD_20_106; types_NN_21_110; of_IN_22_116; organic_JJ_23_119; precursors_NN_24_127 its food ;;; its_PRP$_26_143; food_NN_27_147 0.13490 None None 1 aux(build_VB_1_3, To_TO_0_0); dobj(build_VB_1_3, molecules_NNS_4_21); punct(build_VB_1_3, ,_,_12_66); cc(build_VB_1_3, and_CC_13_68); conj(build_VB_1_3, reproduce_VB_14_72); det(molecules_NNS_4_21, the_DT_2_9); amod(molecules_NNS_4_21, complex_JJ_3_13); rcmod(molecules_NNS_4_21, needs_VBZ_6_34); nsubj(needs_VBZ_6_34, it_PRP_5_31); xcomp(needs_VBZ_6_34, grow_VB_8_43); aux(grow_VB_8_43, to_TO_7_40); punct(grow_VB_8_43, ,_,_9_48); conj(grow_VB_8_43, maintain_VB_10_50); dobj(maintain_VB_10_50, itself_PRP_11_59); det(animal_NN_17_87, an_DT_16_84); dep(obtain_VB_19_99, build_VB_1_3); punct(obtain_VB_19_99, ,_,_15_82); nsubj(obtain_VB_19_99, animal_NN_17_87); aux(obtain_VB_19_99, must_MD_18_94); dobj(obtain_VB_19_99, types_NNS_21_110); prep(obtain_VB_19_99, from_IN_25_138); punct(obtain_VB_19_99, ._._28_152); num(types_NNS_21_110, two_CD_20_106); prep(types_NNS_21_110, of_IN_22_116); pobj(of_IN_22_116, precursors_NNS_24_127); amod(precursors_NNS_24_127, organic_JJ_23_119); pobj(from_IN_25_138, food_NN_27_147); poss(food_NN_27_147, its_PRP$_26_143) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 two types of organic precursors ;;; two_CD_20_106; types_NN_21_110; of_IN_22_116; organic_JJ_23_119; precursors_NN_24_127 must be obtain from ;;; must_MD_18_94; obtain_VB_19_99 its food ;;; its_PRP$_26_143; food_NN_27_147 0.01320 None None 1 nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 Turner ;;; Turner_NNP_0_0 also starred in ;;; also_RB_1_7; starred_VBD_2_12 the film ;;; the_DT_4_23; film_NN_5_27 0.73450 None None 1 nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) Template {rel} {arg1} xcomp> {rel2:postag=VBG} >dobj> {arg2} 0.3797 Turner ;;; Turner_NNP_0_0 also starred portraying ;;; also_RB_1_7; starred_VBD_2_12; portraying_VBG_7_34 a young woman whose friends help her find a new girlfriend , Ely , ;;; a_DT_8_45; young_JJ_9_47; woman_NN_10_53; whose_WP$_11_59; friends_NN_12_65; help_VBP_13_73; her_PRP_14_78; find_VB_15_82; a_DT_16_87; new_JJ_17_89; girlfriend_NN_18_93; ,_,_19_104; Ely_NNP_20_106; ,_,_21_110 0.37970 None None 0 nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) Template {rel} {arg1} dobj> {arg2} 0.1473 her ;;; her_PRP_14_78 find ;;; find_VB_15_82 a new girlfriend portayed by VS Brodie ;;; a_DT_16_87; new_JJ_17_89; girlfriend_NN_18_93; portayed_VBN_22_112; by_IN_23_121; VS_NNP_24_124; Brodie_NNP_25_127 0.14730 None None 1 nsubj(starred_VBD_2_12, Turner_NNP_0_0); advmod(starred_VBD_2_12, also_RB_1_7); prep(starred_VBD_2_12, in_IN_3_20); punct(starred_VBD_2_12, ,_,_6_32); xcomp(starred_VBD_2_12, portraying_VBG_7_34); punct(starred_VBD_2_12, ._._26_134); pobj(in_IN_3_20, film_NN_5_27); det(film_NN_5_27, the_DT_4_23); dobj(portraying_VBG_7_34, woman_NN_10_53); det(woman_NN_10_53, a_DT_8_45); amod(woman_NN_10_53, young_JJ_9_47); rcmod(woman_NN_10_53, help_VBP_13_73); poss(friends_NNS_12_65, whose_WP$_11_59); nsubj(help_VBP_13_73, friends_NNS_12_65); ccomp(help_VBP_13_73, find_VB_15_82); nsubj(find_VB_15_82, her_PRP_14_78); dobj(find_VB_15_82, girlfriend_NN_18_93); det(girlfriend_NN_18_93, a_DT_16_87); amod(girlfriend_NN_18_93, new_JJ_17_89); punct(girlfriend_NN_18_93, ,_,_19_104); appos(girlfriend_NN_18_93, Ely_NNP_20_106); punct(girlfriend_NN_18_93, ,_,_21_110); partmod(girlfriend_NN_18_93, portayed_VBN_22_112); prep(portayed_VBN_22_112, by_IN_23_121); pobj(by_IN_23_121, Brodie_NNP_25_127); nn(Brodie_NNP_25_127, VS_NNP_24_124) Template be {rel} {prep} {arg1} >partmod> {rel:postag=VBN} >{prep:regex=prep_(.*)}> {arg2} 0.111 a new girlfriend ;;; a_DT_16_87; new_JJ_17_89; girlfriend_NN_18_93 be portayed by ;;; portayed_VBN_22_112 VS Brodie ;;; VS_NNP_24_124; Brodie_NNP_25_127 0.11100 None None 1 cc(comune_JJ_3_16, and_CC_4_23); conj(comune_JJ_3_16, town_NN_5_27); prep(comune_JJ_3_16, in_IN_6_32); pobj(in_IN_6_32, province_NN_8_39); det(province_NN_8_39, the_DT_7_35); prep(province_NN_8_39, of_IN_9_48); pobj(of_IN_9_48, Crotone_NNP_10_51); punct(Crotone_NNP_10_51, ,_,_11_59); prep(Crotone_NNP_10_51, in_IN_12_61); pobj(in_IN_12_61, Calabria_NNP_13_64); nsubj(Italy_NNP_16_84, Umbriatico_NNP_0_0); cop(Italy_NNP_16_84, is_VBZ_1_11); det(Italy_NNP_16_84, a_DT_2_14); ccomp(Italy_NNP_16_84, comune_JJ_3_16); punct(Italy_NNP_16_84, ,_,_14_73); amod(Italy_NNP_16_84, southern_JJ_15_75); punct(Italy_NNP_16_84, ._._17_90) Template {rel} {arg1} cop> {rel:postag=VBZ} 0.0084 Umbriatico ;;; Umbriatico_NNP_0_0 is ;;; is_VBZ_1_11 a comune and town in the province of Crotone , in Calabria , southern Italy ;;; a_DT_2_14; comune_JJ_3_16; and_CC_4_23; town_NN_5_27; in_IN_6_32; the_DT_7_35; province_NN_8_39; of_IN_9_48; Crotone_NNP_10_51; ,_,_11_59; in_IN_12_61; Calabria_NNP_13_64; ,_,_14_73; southern_JJ_15_75; Italy_NNP_16_84 0.00840 None None 0 pobj(Under_IN_0_0, proposal_NN_2_10); det(proposal_NN_2_10, the_DT_1_6); prep(proposal_NN_2_10, by_IN_3_19); pobj(by_IN_3_19, Equitec_NNP_4_22); punct(Equitec_NNP_4_22, ,_,_5_30); appos(Equitec_NNP_4_22, syndicator_NN_10_67); punct(Equitec_NNP_4_22, ,_,_11_78); conj(Equitec_NNP_4_22, Inc._NNP_16_110); advmod(troubled_JJ_8_46, financially_RB_7_34); det(syndicator_NN_10_67, a_DT_6_32); amod(syndicator_NN_10_67, troubled_JJ_8_46); nn(syndicator_NN_10_67, real-estate_NN_9_55); dep(York-based_JJ_13_84, New_NNP_12_80); amod(Inc._NNP_16_110, York-based_JJ_13_84); nn(Inc._NNP_16_110, Hallwood_NNP_14_95); nn(Inc._NNP_16_110, Group_NNP_15_104); prep(replace_VB_18_121, Under_IN_0_0); aux(replace_VB_18_121, would_MD_17_115); dobj(replace_VB_18_121, Equitec_NNP_19_129); prep(replace_VB_18_121, as_IN_20_137); punct(replace_VB_18_121, ._._32_215); pobj(as_IN_20_137, partner_NN_29_195); advmod(formed_JJ_23_150, newly_RB_22_144); det(partnership_NN_26_172, the_DT_21_140); amod(partnership_NN_26_172, formed_JJ_23_150); nn(partnership_NN_26_172, master_NN_24_157); amod(partnership_NN_26_172, limited_JJ_25_164); possessive(partnership_NN_26_172, 's_POS_27_184); poss(partner_NN_29_195, partnership_NN_26_172); amod(partner_NN_29_195, general_JJ_28_187); cc(partner_NN_29_195, and_CC_30_203); conj(partner_NN_29_195, manager_NN_31_207) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 Equitec ;;; Equitec_NNP_19_129 would be replace as ;;; would_MD_17_115; replace_VB_18_121 the newly formed master limited partnership 's general partner and manager ;;; the_DT_21_140; newly_RB_22_144; formed_JJ_23_150; master_NN_24_157; limited_JJ_25_164; partnership_NN_26_172; 's_POS_27_184; general_JJ_28_187; partner_NN_29_195; and_CC_30_203; manager_NN_31_207 0.01320 None None 1 pobj(Under_IN_0_0, proposal_NN_2_10); det(proposal_NN_2_10, the_DT_1_6); prep(proposal_NN_2_10, by_IN_3_19); pobj(by_IN_3_19, Equitec_NNP_4_22); punct(Equitec_NNP_4_22, ,_,_5_30); appos(Equitec_NNP_4_22, syndicator_NN_10_67); punct(Equitec_NNP_4_22, ,_,_11_78); conj(Equitec_NNP_4_22, Inc._NNP_16_110); advmod(troubled_JJ_8_46, financially_RB_7_34); det(syndicator_NN_10_67, a_DT_6_32); amod(syndicator_NN_10_67, troubled_JJ_8_46); nn(syndicator_NN_10_67, real-estate_NN_9_55); dep(York-based_JJ_13_84, New_NNP_12_80); amod(Inc._NNP_16_110, York-based_JJ_13_84); nn(Inc._NNP_16_110, Hallwood_NNP_14_95); nn(Inc._NNP_16_110, Group_NNP_15_104); prep(replace_VB_18_121, Under_IN_0_0); aux(replace_VB_18_121, would_MD_17_115); dobj(replace_VB_18_121, Equitec_NNP_19_129); prep(replace_VB_18_121, as_IN_20_137); punct(replace_VB_18_121, ._._32_215); pobj(as_IN_20_137, partner_NN_29_195); advmod(formed_JJ_23_150, newly_RB_22_144); det(partnership_NN_26_172, the_DT_21_140); amod(partnership_NN_26_172, formed_JJ_23_150); nn(partnership_NN_26_172, master_NN_24_157); amod(partnership_NN_26_172, limited_JJ_25_164); possessive(partnership_NN_26_172, 's_POS_27_184); poss(partner_NN_29_195, partnership_NN_26_172); amod(partner_NN_29_195, general_JJ_28_187); cc(partner_NN_29_195, and_CC_30_203); conj(partner_NN_29_195, manager_NN_31_207) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0132 Equitec ;;; Equitec_NNP_19_129 would be replace under ;;; would_MD_17_115; replace_VB_18_121 the proposal ;;; the_DT_1_6; proposal_NN_2_10 0.01320 None None 0 pobj(Under_IN_0_0, proposal_NN_2_10); det(proposal_NN_2_10, the_DT_1_6); prep(proposal_NN_2_10, by_IN_3_19); pobj(by_IN_3_19, Equitec_NNP_4_22); punct(Equitec_NNP_4_22, ,_,_5_30); appos(Equitec_NNP_4_22, syndicator_NN_10_67); punct(Equitec_NNP_4_22, ,_,_11_78); conj(Equitec_NNP_4_22, Inc._NNP_16_110); advmod(troubled_JJ_8_46, financially_RB_7_34); det(syndicator_NN_10_67, a_DT_6_32); amod(syndicator_NN_10_67, troubled_JJ_8_46); nn(syndicator_NN_10_67, real-estate_NN_9_55); dep(York-based_JJ_13_84, New_NNP_12_80); amod(Inc._NNP_16_110, York-based_JJ_13_84); nn(Inc._NNP_16_110, Hallwood_NNP_14_95); nn(Inc._NNP_16_110, Group_NNP_15_104); prep(replace_VB_18_121, Under_IN_0_0); aux(replace_VB_18_121, would_MD_17_115); dobj(replace_VB_18_121, Equitec_NNP_19_129); prep(replace_VB_18_121, as_IN_20_137); punct(replace_VB_18_121, ._._32_215); pobj(as_IN_20_137, partner_NN_29_195); advmod(formed_JJ_23_150, newly_RB_22_144); det(partnership_NN_26_172, the_DT_21_140); amod(partnership_NN_26_172, formed_JJ_23_150); nn(partnership_NN_26_172, master_NN_24_157); amod(partnership_NN_26_172, limited_JJ_25_164); possessive(partnership_NN_26_172, 's_POS_27_184); poss(partner_NN_29_195, partnership_NN_26_172); amod(partner_NN_29_195, general_JJ_28_187); cc(partner_NN_29_195, and_CC_30_203); conj(partner_NN_29_195, manager_NN_31_207) Template be {rel} {prep} {arg1} dobj> {arg2} 0.3797 he and his students ;;; he_PRP_5_39; and_CC_6_42; his_PRP$_7_46; students_NN_8_50 spent ;;; spent_VBD_9_59 several decades observing these bees ;;; several_JJ_10_65; decades_NN_11_73; observing_VBG_12_81; these_DT_13_91; bees_NN_14_97 0.37970 None None 1 dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 1.0 he ;;; he_PRP_5_27 was hosted by ;;; was_VBD_6_30; hosted_VBN_7_34 an anti-Nazi Protestant family whose children had been required to join the Hitler Youth ;;; an_DT_9_44; anti-Nazi_JJ_10_47; Protestant_JJ_11_57; family_NN_12_68; whose_WP$_13_75; children_NN_14_81; had_VBD_15_90; been_VBN_16_94; required_VBN_17_99; to_TO_18_108; join_VB_19_111; the_DT_20_116; Hitler_NNP_21_120; Youth_NNP_22_127 1.00000 None None 0 dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) Template be {rel} in {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 Germany ;;; Germany_NNP_1_9 be Visiting in ;;; Visiting_VBG_0_0 1937 ;;; 1937_CD_3_20 0.00790 None None 1 dobj(Visiting_VBG_0_0, Germany_NNP_1_9); prep(Visiting_VBG_0_0, in_IN_2_17); pobj(in_IN_2_17, 1937_CD_3_20); dep(hosted_VBN_7_34, Visiting_VBG_0_0); punct(hosted_VBN_7_34, ,_,_4_25); nsubjpass(hosted_VBN_7_34, he_PRP_5_27); auxpass(hosted_VBN_7_34, was_VBD_6_30); prep(hosted_VBN_7_34, by_IN_8_41); punct(hosted_VBN_7_34, ._._23_133); pobj(by_IN_8_41, family_NN_12_68); det(family_NN_12_68, an_DT_9_44); amod(family_NN_12_68, anti-Nazi_JJ_10_47); amod(family_NN_12_68, Protestant_JJ_11_57); rcmod(family_NN_12_68, required_VBN_17_99); poss(children_NNS_14_81, whose_WP$_13_75); nsubjpass(required_VBN_17_99, children_NNS_14_81); aux(required_VBN_17_99, had_VBD_15_90); auxpass(required_VBN_17_99, been_VBN_16_94); xcomp(required_VBN_17_99, join_VB_19_111); aux(join_VB_19_111, to_TO_18_108); dobj(join_VB_19_111, Youth_NNP_22_127); det(Youth_NNP_22_127, the_DT_20_116); nn(Youth_NNP_22_127, Hitler_NNP_21_120) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0068 whose children ;;; whose_WP$_13_75; children_NN_14_81 to join ;;; to_TO_18_108; join_VB_19_111 the Hitler Youth ;;; the_DT_20_116; Hitler_NNP_21_120; Youth_NNP_22_127 0.00680 None None 1 nsubj(operated_VBD_1_4, WKY_NNP_0_0); prep(operated_VBD_1_4, from_IN_2_13); prep(operated_VBD_1_4, in_IN_6_36); prep(operated_VBD_1_4, from_IN_10_62); punct(operated_VBD_1_4, ,_,_14_80); cc(operated_VBD_1_4, and_CC_15_82); conj(operated_VBD_1_4, contracted_VBN_17_90); punct(operated_VBD_1_4, ._._31_179); pobj(from_IN_2_13, Hotel_NNP_5_30); det(Hotel_NNP_5_30, the_DT_3_18); nn(Hotel_NNP_5_30, Skirvin_NNP_4_22); pobj(in_IN_6_36, City_NNP_9_57); nn(City_NNP_9_57, downtown_NN_7_39); nn(City_NNP_9_57, Oklahoma_NNP_8_48); pobj(from_IN_10_62, 1936_CD_11_67); dep(from_IN_10_62, to_TO_12_72); pobj(to_TO_12_72, 1951_CD_13_75); auxpass(contracted_VBN_17_90, was_VBD_16_86); xcomp(contracted_VBN_17_90, broadcast_VB_19_104); aux(broadcast_VB_19_104, to_TO_18_101); acomp(broadcast_VB_19_104, live_JJ_20_114); prep(live_JJ_20_114, from_IN_21_119); pobj(from_IN_21_119, Room_NNP_24_137); dep(from_IN_21_119, from_IN_25_142); det(Room_NNP_24_137, the_DT_22_124); nn(Room_NNP_24_137, Venetian_NNP_23_128); pobj(from_IN_25_142, 11:00_CD_26_147); dep(from_IN_25_142, to_TO_27_153); pobj(to_TO_27_153, Midnight_NNP_28_156); tmod(to_TO_27_153, evening_NN_30_171); det(evening_NN_30_171, every_DT_29_165) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 WKY ;;; WKY_NNP_0_0 operated from ;;; operated_VBD_1_4 1936 ;;; 1936_CD_11_67 0.73450 None None 1 nsubj(operated_VBD_1_4, WKY_NNP_0_0); prep(operated_VBD_1_4, from_IN_2_13); prep(operated_VBD_1_4, in_IN_6_36); prep(operated_VBD_1_4, from_IN_10_62); punct(operated_VBD_1_4, ,_,_14_80); cc(operated_VBD_1_4, and_CC_15_82); conj(operated_VBD_1_4, contracted_VBN_17_90); punct(operated_VBD_1_4, ._._31_179); pobj(from_IN_2_13, Hotel_NNP_5_30); det(Hotel_NNP_5_30, the_DT_3_18); nn(Hotel_NNP_5_30, Skirvin_NNP_4_22); pobj(in_IN_6_36, City_NNP_9_57); nn(City_NNP_9_57, downtown_NN_7_39); nn(City_NNP_9_57, Oklahoma_NNP_8_48); pobj(from_IN_10_62, 1936_CD_11_67); dep(from_IN_10_62, to_TO_12_72); pobj(to_TO_12_72, 1951_CD_13_75); auxpass(contracted_VBN_17_90, was_VBD_16_86); xcomp(contracted_VBN_17_90, broadcast_VB_19_104); aux(broadcast_VB_19_104, to_TO_18_101); acomp(broadcast_VB_19_104, live_JJ_20_114); prep(live_JJ_20_114, from_IN_21_119); pobj(from_IN_21_119, Room_NNP_24_137); dep(from_IN_21_119, from_IN_25_142); det(Room_NNP_24_137, the_DT_22_124); nn(Room_NNP_24_137, Venetian_NNP_23_128); pobj(from_IN_25_142, 11:00_CD_26_147); dep(from_IN_25_142, to_TO_27_153); pobj(to_TO_27_153, Midnight_NNP_28_156); tmod(to_TO_27_153, evening_NN_30_171); det(evening_NN_30_171, every_DT_29_165) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 WKY ;;; WKY_NNP_0_0 operated from ;;; operated_VBD_1_4 the Skirvin Hotel ;;; the_DT_3_18; Skirvin_NNP_4_22; Hotel_NNP_5_30 0.73450 None None 1 nsubj(operated_VBD_1_4, WKY_NNP_0_0); prep(operated_VBD_1_4, from_IN_2_13); prep(operated_VBD_1_4, in_IN_6_36); prep(operated_VBD_1_4, from_IN_10_62); punct(operated_VBD_1_4, ,_,_14_80); cc(operated_VBD_1_4, and_CC_15_82); conj(operated_VBD_1_4, contracted_VBN_17_90); punct(operated_VBD_1_4, ._._31_179); pobj(from_IN_2_13, Hotel_NNP_5_30); det(Hotel_NNP_5_30, the_DT_3_18); nn(Hotel_NNP_5_30, Skirvin_NNP_4_22); pobj(in_IN_6_36, City_NNP_9_57); nn(City_NNP_9_57, downtown_NN_7_39); nn(City_NNP_9_57, Oklahoma_NNP_8_48); pobj(from_IN_10_62, 1936_CD_11_67); dep(from_IN_10_62, to_TO_12_72); pobj(to_TO_12_72, 1951_CD_13_75); auxpass(contracted_VBN_17_90, was_VBD_16_86); xcomp(contracted_VBN_17_90, broadcast_VB_19_104); aux(broadcast_VB_19_104, to_TO_18_101); acomp(broadcast_VB_19_104, live_JJ_20_114); prep(live_JJ_20_114, from_IN_21_119); pobj(from_IN_21_119, Room_NNP_24_137); dep(from_IN_21_119, from_IN_25_142); det(Room_NNP_24_137, the_DT_22_124); nn(Room_NNP_24_137, Venetian_NNP_23_128); pobj(from_IN_25_142, 11:00_CD_26_147); dep(from_IN_25_142, to_TO_27_153); pobj(to_TO_27_153, Midnight_NNP_28_156); tmod(to_TO_27_153, evening_NN_30_171); det(evening_NN_30_171, every_DT_29_165) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 WKY ;;; WKY_NNP_0_0 operated in ;;; operated_VBD_1_4 downtown Oklahoma City ;;; downtown_NN_7_39; Oklahoma_NNP_8_48; City_NNP_9_57 0.73450 None None 1 nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_11_59 tapped Connor to serve as ;;; tapped_VBD_12_62; Connor_NNP_13_69; to_TO_14_76; serve_VB_15_79 the Deputy Secretary ;;; the_DT_17_88; Deputy_NNP_18_92; Secretary_NNP_19_99 0.73450 None None 1 nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) Template {rel} {prep} {arg1} xcomp> {rel2:postag=VB} >{prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_11_59 tapped Connor to serve in ;;; tapped_VBD_12_62; Connor_NNP_13_69; to_TO_14_76; serve_VB_15_79 the office of the Texas Secretary of State ;;; the_DT_21_112; office_NN_22_116; of_IN_23_123; the_DT_24_126; Texas_NNP_25_130; Secretary_NNP_26_136; of_IN_27_146; State_NNP_28_149 0.73450 None None 0 nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) Template {rel} {arg1} dobj> {arg2} 0.3797 he ;;; he_PRP_11_59 tapped ;;; tapped_VBD_12_62 Connor ;;; Connor_NNP_13_69 0.37970 None None 1 nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0724 Rick Perry ;;; Rick_NNP_1_5; Perry_NNP_2_10 became Governor of Texas in ;;; became_VBD_3_16; Governor_NNP_4_23; of_IN_5_32; Texas_NNP_6_35 January 2001 ;;; January_NNP_8_44; 2001_CD_9_52 0.07240 None None 1 nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0724 Rick Perry ;;; Rick_NNP_1_5; Perry_NNP_2_10 became Governor of ;;; became_VBD_3_16; Governor_NNP_4_23 Texas ;;; Texas_NNP_6_35 0.07240 None None 1 nn(Perry_NNP_2_10, Rick_NNP_1_5); advmod(Governor_NNP_4_23, When_WRB_0_0); nsubj(Governor_NNP_4_23, Perry_NNP_2_10); cop(Governor_NNP_4_23, became_VBD_3_16); prep(Governor_NNP_4_23, of_IN_5_32); prep(Governor_NNP_4_23, in_IN_7_41); pobj(of_IN_5_32, Texas_NNP_6_35); pobj(in_IN_7_41, January_NNP_8_44); num(January_NNP_8_44, 2001_CD_9_52); dep(tapped_VBD_12_62, Governor_NNP_4_23); punct(tapped_VBD_12_62, ,_,_10_57); nsubj(tapped_VBD_12_62, he_PRP_11_59); dobj(tapped_VBD_12_62, Connor_NNP_13_69); xcomp(tapped_VBD_12_62, serve_VB_15_79); punct(tapped_VBD_12_62, ._._29_155); aux(serve_VB_15_79, to_TO_14_76); prep(serve_VB_15_79, as_IN_16_85); prep(serve_VB_15_79, in_IN_20_109); pobj(as_IN_16_85, Secretary_NNP_19_99); det(Secretary_NNP_19_99, the_DT_17_88); nn(Secretary_NNP_19_99, Deputy_NNP_18_92); pobj(in_IN_20_109, office_NN_22_116); det(office_NN_22_116, the_DT_21_112); prep(office_NN_22_116, of_IN_23_123); pobj(of_IN_23_123, Texas_NNP_25_130); det(Texas_NNP_25_130, the_DT_24_126); dep(Texas_NNP_25_130, Secretary_NNP_26_136); prep(Texas_NNP_25_130, of_IN_27_146); pobj(of_IN_27_146, State_NNP_28_149) Template {rel} {arg1} cop> {rel:postag=VBD} 0.0216 Rick Perry ;;; Rick_NNP_1_5; Perry_NNP_2_10 became ;;; became_VBD_3_16 Governor of Texas ;;; Governor_NNP_4_23; of_IN_5_32; Texas_NNP_6_35 0.02160 None None 1 det(company_NN_2_9, the_DT_1_5); det(month_NN_4_22, this_DT_3_17); advmod(announced_VBD_5_28, When_WRB_0_0); nsubj(announced_VBD_5_28, company_NN_2_9); dep(announced_VBD_5_28, month_NN_4_22); dobj(announced_VBD_5_28, sales_NNS_7_58); amod(sales_NNS_7_58, lower-than-forecast_JJ_6_38); prep(sales_NNS_7_58, of_IN_8_64); pobj(of_IN_8_64, Eggs_NNP_10_72); nn(Eggs_NNP_10_72, Easy_NNP_9_67); det(stock_NN_13_83, the_DT_12_79); dep(dropped_VBD_14_89, announced_VBD_5_28); punct(dropped_VBD_14_89, ,_,_11_77); nsubj(dropped_VBD_14_89, stock_NN_13_83); dobj(dropped_VBD_14_89, %_NN_17_107); punct(dropped_VBD_14_89, ._._18_109); quantmod(19_CD_16_104, nearly_RB_15_97); num(%_NN_17_107, 19_CD_16_104) Template {rel} {arg1} dobj> {arg2} 0.3797 the company ;;; the_DT_1_5; company_NN_2_9 announced ;;; announced_VBD_5_28 lower-than-forecast sales of Easy Eggs ;;; lower-than-forecast_JJ_6_38; sales_NN_7_58; of_IN_8_64; Easy_NNP_9_67; Eggs_NNP_10_72 0.37970 None None 1 det(company_NN_2_9, the_DT_1_5); det(month_NN_4_22, this_DT_3_17); advmod(announced_VBD_5_28, When_WRB_0_0); nsubj(announced_VBD_5_28, company_NN_2_9); dep(announced_VBD_5_28, month_NN_4_22); dobj(announced_VBD_5_28, sales_NNS_7_58); amod(sales_NNS_7_58, lower-than-forecast_JJ_6_38); prep(sales_NNS_7_58, of_IN_8_64); pobj(of_IN_8_64, Eggs_NNP_10_72); nn(Eggs_NNP_10_72, Easy_NNP_9_67); det(stock_NN_13_83, the_DT_12_79); dep(dropped_VBD_14_89, announced_VBD_5_28); punct(dropped_VBD_14_89, ,_,_11_77); nsubj(dropped_VBD_14_89, stock_NN_13_83); dobj(dropped_VBD_14_89, %_NN_17_107); punct(dropped_VBD_14_89, ._._18_109); quantmod(19_CD_16_104, nearly_RB_15_97); num(%_NN_17_107, 19_CD_16_104) Template {rel} {arg1} dobj> {arg2} 0.3797 the stock ;;; the_DT_12_79; stock_NN_13_83 dropped ;;; dropped_VBD_14_89 nearly 19 % ;;; nearly_RB_15_97; 19_CD_16_104; %_NN_17_107 0.37970 None None 1 det(company_NN_2_9, the_DT_1_5); det(month_NN_4_22, this_DT_3_17); advmod(announced_VBD_5_28, When_WRB_0_0); nsubj(announced_VBD_5_28, company_NN_2_9); dep(announced_VBD_5_28, month_NN_4_22); dobj(announced_VBD_5_28, sales_NNS_7_58); amod(sales_NNS_7_58, lower-than-forecast_JJ_6_38); prep(sales_NNS_7_58, of_IN_8_64); pobj(of_IN_8_64, Eggs_NNP_10_72); nn(Eggs_NNP_10_72, Easy_NNP_9_67); det(stock_NN_13_83, the_DT_12_79); dep(dropped_VBD_14_89, announced_VBD_5_28); punct(dropped_VBD_14_89, ,_,_11_77); nsubj(dropped_VBD_14_89, stock_NN_13_83); dobj(dropped_VBD_14_89, %_NN_17_107); punct(dropped_VBD_14_89, ._._18_109); quantmod(19_CD_16_104, nearly_RB_15_97); num(%_NN_17_107, 19_CD_16_104) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 the company ;;; the_DT_1_5; company_NN_2_9 be lower-than-forecast sales of ;;; lower-than-forecast_JJ_6_38; sales_NN_7_58 Easy Eggs ;;; Easy_NNP_9_67; Eggs_NNP_10_72 0.01190 None None 0 det(kidneys_NNS_2_9, the_DT_1_5); advmod(conserving_VBG_4_21, When_WRB_0_0); nsubj(conserving_VBG_4_21, kidneys_NNS_2_9); aux(conserving_VBG_4_21, are_VBP_3_17); dobj(conserving_VBG_4_21, water_NN_5_32); nn(channels_NNS_8_50, aquaporin_NN_7_40); prep(channels_NNS_8_50, in_IN_9_59); pobj(in_IN_9_59, duct_NN_12_77); det(duct_NN_12_77, the_DT_10_62); nn(duct_NN_12_77, collecting_NN_11_66); dep(allow_VBP_13_82, conserving_VBG_4_21); punct(allow_VBP_13_82, ,_,_6_38); nsubj(allow_VBP_13_82, channels_NNS_8_50); xcomp(allow_VBP_13_82, cross_VB_17_107); punct(allow_VBP_13_82, ._._20_128); nn(molecules_NNS_15_94, water_NN_14_88); nsubj(cross_VB_17_107, molecules_NNS_15_94); aux(cross_VB_17_107, to_TO_16_104); dobj(cross_VB_17_107, epithelium_NN_19_117); det(epithelium_NN_19_117, the_DT_18_113) Template {rel} {arg1} dobj> {arg2} 0.1473 water molecules ;;; water_NN_14_88; molecules_NN_15_94 to cross ;;; to_TO_16_104; cross_VB_17_107 the epithelium ;;; the_DT_18_113; epithelium_NN_19_117 0.14730 None None 0 det(kidneys_NNS_2_9, the_DT_1_5); advmod(conserving_VBG_4_21, When_WRB_0_0); nsubj(conserving_VBG_4_21, kidneys_NNS_2_9); aux(conserving_VBG_4_21, are_VBP_3_17); dobj(conserving_VBG_4_21, water_NN_5_32); nn(channels_NNS_8_50, aquaporin_NN_7_40); prep(channels_NNS_8_50, in_IN_9_59); pobj(in_IN_9_59, duct_NN_12_77); det(duct_NN_12_77, the_DT_10_62); nn(duct_NN_12_77, collecting_NN_11_66); dep(allow_VBP_13_82, conserving_VBG_4_21); punct(allow_VBP_13_82, ,_,_6_38); nsubj(allow_VBP_13_82, channels_NNS_8_50); xcomp(allow_VBP_13_82, cross_VB_17_107); punct(allow_VBP_13_82, ._._20_128); nn(molecules_NNS_15_94, water_NN_14_88); nsubj(cross_VB_17_107, molecules_NNS_15_94); aux(cross_VB_17_107, to_TO_16_104); dobj(cross_VB_17_107, epithelium_NN_19_117); det(epithelium_NN_19_117, the_DT_18_113) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.0416 aquaporin channels ;;; aquaporin_NN_7_40; channels_NN_8_50 allow to cross ;;; allow_VBP_13_82; to_TO_16_104; cross_VB_17_107 the epithelium ;;; the_DT_18_113; epithelium_NN_19_117 0.04160 None None 0 det(kidneys_NNS_2_9, the_DT_1_5); advmod(conserving_VBG_4_21, When_WRB_0_0); nsubj(conserving_VBG_4_21, kidneys_NNS_2_9); aux(conserving_VBG_4_21, are_VBP_3_17); dobj(conserving_VBG_4_21, water_NN_5_32); nn(channels_NNS_8_50, aquaporin_NN_7_40); prep(channels_NNS_8_50, in_IN_9_59); pobj(in_IN_9_59, duct_NN_12_77); det(duct_NN_12_77, the_DT_10_62); nn(duct_NN_12_77, collecting_NN_11_66); dep(allow_VBP_13_82, conserving_VBG_4_21); punct(allow_VBP_13_82, ,_,_6_38); nsubj(allow_VBP_13_82, channels_NNS_8_50); xcomp(allow_VBP_13_82, cross_VB_17_107); punct(allow_VBP_13_82, ._._20_128); nn(molecules_NNS_15_94, water_NN_14_88); nsubj(cross_VB_17_107, molecules_NNS_15_94); aux(cross_VB_17_107, to_TO_16_104); dobj(cross_VB_17_107, epithelium_NN_19_117); det(epithelium_NN_19_117, the_DT_18_113) Template {rel} {arg1} dobj> {arg2} 0.0292 the kidneys ;;; the_DT_1_5; kidneys_NN_2_9 are conserving ;;; are_VBP_3_17; conserving_VBG_4_21 water ;;; water_NN_5_32 0.02920 None None 1 pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) Template {rel} {arg1} dobj> {arg2} 0.3797 Strachan ;;; Strachan_NNP_9_48 entered ;;; entered_VBD_10_57 the World Gurning competition ;;; the_DT_11_65; World_NNP_12_69; Gurning_NNP_13_75; competition_NN_14_83 0.37970 None None 0 pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 Strachan ;;; Strachan_NNP_9_48 be the World Gurning competition at ;;; the_DT_11_65; World_NNP_12_69; Gurning_NNP_13_75; competition_NN_14_83 Egremont Crab Fair ;;; Egremont_NNP_16_98; Crab_NNP_17_107; Fair_NNP_18_112 0.01190 None None 1 pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 an item ;;; an_DT_2_14; item_NN_3_17 be filming for ;;; filming_VBG_1_6 Countryfile ;;; Countryfile_NNP_5_26 0.00790 None None 1 pcomp(While_IN_0_0, filming_VBG_1_6); dobj(filming_VBG_1_6, item_NN_3_17); prep(filming_VBG_1_6, for_IN_4_22); prep(filming_VBG_1_6, in_IN_6_38); det(item_NN_3_17, an_DT_2_14); pobj(for_IN_4_22, Countryfile_NNP_5_26); pobj(in_IN_6_38, 2002_CD_7_41); prep(entered_VBD_10_57, While_IN_0_0); punct(entered_VBD_10_57, ,_,_8_46); nsubj(entered_VBD_10_57, Strachan_NNP_9_48); dobj(entered_VBD_10_57, competition_NN_14_83); punct(entered_VBD_10_57, ._._19_117); det(competition_NN_14_83, the_DT_11_65); nn(competition_NN_14_83, World_NNP_12_69); nn(competition_NN_14_83, Gurning_NNP_13_75); prep(competition_NN_14_83, at_IN_15_95); pobj(at_IN_15_95, Fair_NNP_18_112); nn(Fair_NNP_18_112, Egremont_NNP_16_98); nn(Fair_NNP_18_112, Crab_NNP_17_107) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0079 an item ;;; an_DT_2_14; item_NN_3_17 be filming in ;;; filming_VBG_1_6 2002 ;;; 2002_CD_7_41 0.00790 None None 1 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_5_18 completed the year-long course at ;;; completed_VBD_6_21; the_DT_7_31; year-long_JJ_8_35; course_NN_9_45 the Canadian Forces Command and Staff College ;;; the_DT_11_55; Canadian_NNP_12_59; Forces_NNP_13_68; Command_NNP_14_75; and_CC_15_83; Staff_NNP_16_87; College_NNP_17_93 0.73450 None None 1 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_5_18 received a Master of Arts from ;;; received_VBD_19_105; a_DT_20_114; Master_NN_21_116; of_IN_22_123; Arts_NN_23_126 Royal Military College of Canada ;;; Royal_NNP_29_158; Military_NNP_30_164; College_NNP_31_173; of_IN_32_181; Canada_NNP_33_184 0.73450 None None 1 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 he ;;; he_PRP_5_18 received a Master of Arts in ;;; received_VBD_19_105; a_DT_20_114; Master_NN_21_116; of_IN_22_123; Arts_NN_23_126 war studies degree ;;; war_NN_25_134; studies_NN_26_138; degree_NN_27_146 0.73450 None None 1 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template {rel} {arg1} dobj> {arg2} 0.3797 he ;;; he_PRP_5_18 completed ;;; completed_VBD_6_21 the year-long course ;;; the_DT_7_31; year-long_JJ_8_35; course_NN_9_45 0.37970 None None 1 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template {rel} {arg1} dobj> {arg2} 0.3797 he ;;; he_PRP_5_18 received ;;; received_VBD_19_105 a Master of Arts ;;; a_DT_20_114; Master_NN_21_116; of_IN_22_123; Arts_NN_23_126 0.37970 None None 0 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0282 student ;;; student_NN_35_193 be Royal Military College of ;;; Royal_NNP_29_158; Military_NNP_30_164; College_NNP_31_173 Canada ;;; Canada_NNP_33_184 0.02820 None None 1 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 a Master of Arts ;;; a_DT_20_114; Master_NN_21_116; of_IN_22_123; Arts_NN_23_126 be received from ;;; received_VBD_19_105 Royal Military College of Canada ;;; Royal_NNP_29_158; Military_NNP_30_164; College_NNP_31_173; of_IN_32_181; Canada_NNP_33_184 0.01550 None None 1 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 a Master of Arts ;;; a_DT_20_114; Master_NN_21_116; of_IN_22_123; Arts_NN_23_126 be received in ;;; received_VBD_19_105 war studies degree ;;; war_NN_25_134; studies_NN_26_138; degree_NN_27_146 0.01550 None None 1 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template be {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.0155 the year-long course ;;; the_DT_7_31; year-long_JJ_8_35; course_NN_9_45 be completed at ;;; completed_VBD_6_21 the Canadian Forces Command and Staff College ;;; the_DT_11_55; Canadian_NNP_12_59; Forces_NNP_13_68; Command_NNP_14_75; and_CC_15_83; Staff_NNP_16_87; College_NNP_17_93 0.01550 None None 1 dep(While_IN_0_0, in_IN_1_6); pobj(in_IN_1_6, CF_NNP_3_13); det(CF_NNP_3_13, the_DT_2_9); prep(completed_VBD_6_21, While_IN_0_0); punct(completed_VBD_6_21, ,_,_4_16); nsubj(completed_VBD_6_21, he_PRP_5_18); dobj(completed_VBD_6_21, course_NN_9_45); prep(completed_VBD_6_21, at_IN_10_52); cc(completed_VBD_6_21, and_CC_18_101); conj(completed_VBD_6_21, received_VBD_19_105); punct(completed_VBD_6_21, ._._40_217); det(course_NN_9_45, the_DT_7_31); amod(course_NN_9_45, year-long_JJ_8_35); pobj(at_IN_10_52, Command_NNP_14_75); det(Command_NNP_14_75, the_DT_11_55); nn(Command_NNP_14_75, Canadian_NNP_12_59); nn(Command_NNP_14_75, Forces_NNP_13_68); cc(Command_NNP_14_75, and_CC_15_83); conj(Command_NNP_14_75, College_NNP_17_93); nn(College_NNP_17_93, Staff_NNP_16_87); dobj(received_VBD_19_105, Master_NN_21_116); prep(received_VBD_19_105, in_IN_24_131); prep(received_VBD_19_105, from_IN_28_153); det(Master_NN_21_116, a_DT_20_114); prep(Master_NN_21_116, of_IN_22_123); pobj(of_IN_22_123, Arts_NNS_23_126); pobj(in_IN_24_131, degree_NN_27_146); nn(degree_NN_27_146, war_NN_25_134); nn(degree_NN_27_146, studies_NNS_26_138); pobj(from_IN_28_153, College_NNP_31_173); nn(College_NNP_31_173, Royal_NNP_29_158); nn(College_NNP_31_173, Military_NNP_30_164); prep(College_NNP_31_173, of_IN_32_181); punct(College_NNP_31_173, ,_,_34_191); appos(College_NNP_31_173, student_NN_35_193); pobj(of_IN_32_181, Canada_NNP_33_184); ccomp(student_NN_35_193, G0053_._37_203); dep(G0053_._37_203, #_#_36_201); prep(G0053_._37_203, in_IN_38_209); pobj(in_IN_38_209, 1980_CD_39_212) Template be {rel} {prep} {arg1} dobj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.0119 he ;;; he_PRP_5_18 be a Master of ;;; a_DT_20_114; Master_NN_21_116 Arts ;;; Arts_NN_23_126 0.01190 None None 0 nsubjpass(astonished_VBN_2_12, Wheeler_NNP_0_0); auxpass(astonished_VBN_2_12, was_VBD_1_8); xcomp(astonished_VBN_2_12, find_VB_4_26); punct(astonished_VBN_2_12, ,_,_11_61); dobj(astonished_VBN_2_12, present_NN_15_83); punct(astonished_VBN_2_12, ._._21_115); aux(find_VB_4_26, to_TO_3_23); dobj(find_VB_4_26, urea_NN_10_56); advmod(made_VBN_9_51, instead_RB_6_36); nsubj(made_VBN_9_51, he_PRP_7_44); aux(made_VBN_9_51, had_VBD_8_47); det(urea_NN_10_56, that_DT_5_31); amod(urea_NN_10_56, made_VBN_9_51); det(present_NN_15_83, an_DT_12_63); amod(present_NN_15_83, organic_JJ_13_66); nn(present_NN_15_83, compound_NN_14_74); prep(present_NN_15_83, in_IN_16_91); pobj(in_IN_16_91, urine_NN_18_98); det(urine_NN_18_98, the_DT_17_94); prep(urine_NN_18_98, of_IN_19_104); pobj(of_IN_19_104, animals_NNS_20_107) Template be {rel} {arg1} dobj> {arg2} 0.0191 Wheeler ;;; Wheeler_NNP_0_0 was astonished ;;; was_VBD_1_8; astonished_VBN_2_12 an organic compound present ;;; an_DT_12_63; organic_JJ_13_66; compound_NN_14_74; present_NN_15_83 0.01910 None None 0 pobj(With_IN_0_0, genome_NN_4_18); predet(genome_NN_4_18, such_PDT_1_5); det(genome_NN_4_18, a_DT_2_10); amod(genome_NN_4_18, large_JJ_3_12); prep(had_VBD_7_39, With_IN_0_0); punct(had_VBD_7_39, ,_,_5_25); nsubj(had_VBD_7_39, researchers_NNS_6_27); xcomp(had_VBD_7_39, carry_VB_9_46); punct(had_VBD_7_39, ,_,_16_86); xcomp(had_VBD_7_39, cloning_VBG_17_88); punct(had_VBD_7_39, ._._22_119); aux(carry_VB_9_46, to_TO_8_43); prt(carry_VB_9_46, out_RP_10_52); dobj(carry_VB_9_46, rounds_NNS_12_64); amod(rounds_NNS_12_64, several_JJ_11_56); prep(rounds_NNS_12_64, of_IN_13_71); pobj(of_IN_13_71, cutting_NN_15_78); nn(cutting_NN_15_78, DNA_NNP_14_74); punct(cloning_VBG_17_88, ,_,_18_96); cc(cloning_VBG_17_88, and_CC_19_98); conj(cloning_VBG_17_88, mapping_NN_21_111); amod(mapping_NN_21_111, physical_JJ_20_102) Template {rel} {prep} {arg1} {prep:regex=prep_(.*)}> {arg2} 0.7345 researchers ;;; researchers_NN_6_27 had with ;;; had_VBD_7_39 a large genome ;;; a_DT_2_10; large_JJ_3_12; genome_NN_4_18 0.73450 None None 1 pobj(With_IN_0_0, genome_NN_4_18); predet(genome_NN_4_18, such_PDT_1_5); det(genome_NN_4_18, a_DT_2_10); amod(genome_NN_4_18, large_JJ_3_12); prep(had_VBD_7_39, With_IN_0_0); punct(had_VBD_7_39, ,_,_5_25); nsubj(had_VBD_7_39, researchers_NNS_6_27); xcomp(had_VBD_7_39, carry_VB_9_46); punct(had_VBD_7_39, ,_,_16_86); xcomp(had_VBD_7_39, cloning_VBG_17_88); punct(had_VBD_7_39, ._._22_119); aux(carry_VB_9_46, to_TO_8_43); prt(carry_VB_9_46, out_RP_10_52); dobj(carry_VB_9_46, rounds_NNS_12_64); amod(rounds_NNS_12_64, several_JJ_11_56); prep(rounds_NNS_12_64, of_IN_13_71); pobj(of_IN_13_71, cutting_NN_15_78); nn(cutting_NN_15_78, DNA_NNP_14_74); punct(cloning_VBG_17_88, ,_,_18_96); cc(cloning_VBG_17_88, and_CC_19_98); conj(cloning_VBG_17_88, mapping_NN_21_111); amod(mapping_NN_21_111, physical_JJ_20_102) Template {rel} {arg1} xcomp> {rel2:postag=VB} >dobj> {arg2} 0.3797 researchers ;;; researchers_NN_6_27 had to carry out ;;; had_VBD_7_39; to_TO_8_43; carry_VB_9_46; out_RP_10_52 several rounds of DNA cutting ;;; several_JJ_11_56; rounds_NN_12_64; of_IN_13_71; DNA_NNP_14_74; cutting_NN_15_78 0.37970 None None 1 pobj(With_IN_0_0, genome_NN_4_18); predet(genome_NN_4_18, such_PDT_1_5); det(genome_NN_4_18, a_DT_2_10); amod(genome_NN_4_18, large_JJ_3_12); prep(had_VBD_7_39, With_IN_0_0); punct(had_VBD_7_39, ,_,_5_25); nsubj(had_VBD_7_39, researchers_NNS_6_27); xcomp(had_VBD_7_39, carry_VB_9_46); punct(had_VBD_7_39, ,_,_16_86); xcomp(had_VBD_7_39, cloning_VBG_17_88); punct(had_VBD_7_39, ._._22_119); aux(carry_VB_9_46, to_TO_8_43); prt(carry_VB_9_46, out_RP_10_52); dobj(carry_VB_9_46, rounds_NNS_12_64); amod(rounds_NNS_12_64, several_JJ_11_56); prep(rounds_NNS_12_64, of_IN_13_71); pobj(of_IN_13_71, cutting_NN_15_78); nn(cutting_NN_15_78, DNA_NNP_14_74); punct(cloning_VBG_17_88, ,_,_18_96); cc(cloning_VBG_17_88, and_CC_19_98); conj(cloning_VBG_17_88, mapping_NN_21_111); amod(mapping_NN_21_111, physical_JJ_20_102) Template {rel} {arg1} xcomp> {rel:postag=VB} >dobj> {arg2} 0.0195 researchers ;;; researchers_NN_6_27 to carry out ;;; to_TO_8_43; carry_VB_9_46; out_RP_10_52 several rounds of DNA cutting ;;; several_JJ_11_56; rounds_NN_12_64; of_IN_13_71; DNA_NNP_14_74; cutting_NN_15_78 0.01950 None None 1 nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) Template be {rel} {prep} {arg1} >appos> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.4031 Jacob F. " Jake " Horton ;;; Jacob_NNP_11_70; F._NNP_12_76; "_``_13_79; Jake_NNP_14_81; "_''_15_86; Horton_NNP_16_88 be the senior vice president of ;;; the_DT_18_97; senior_JJ_19_101; vice_NN_20_108; president_NN_21_113 Gulf Power ;;; Gulf_NNP_23_126; Power_NNP_24_131 0.40310 None None 1 nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) Template {rel} {arg1} dobj> {arg2} 0.0577 the grand jury ;;; the_DT_3_20; grand_JJ_4_24; jury_NN_5_30 has asked ;;; has_VBZ_6_35; asked_VBN_7_39 numerous questions ;;; numerous_JJ_8_45; questions_NN_9_54 0.05770 None None 1 nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 the senior vice president of Gulf Power ;;; the_DT_18_97; senior_JJ_19_101; vice_NN_20_108; president_NN_21_113; of_IN_22_123; Gulf_NNP_23_126; Power_NNP_24_131 died in ;;; died_VBD_26_141 April ;;; April_NNP_32_168 0.02000 None None 1 nsubj(said_VBN_2_15, Witnesses_NNS_0_0); aux(said_VBN_2_15, have_VBP_1_10); ccomp(said_VBN_2_15, asked_VBN_7_39); punct(said_VBN_2_15, ._._33_174); det(jury_NN_5_30, the_DT_3_20); amod(jury_NN_5_30, grand_JJ_4_24); nsubj(asked_VBN_7_39, jury_NN_5_30); aux(asked_VBN_7_39, has_VBZ_6_35); dobj(asked_VBN_7_39, questions_NNS_9_54); amod(questions_NNS_9_54, numerous_JJ_8_45); prep(questions_NNS_9_54, about_IN_10_64); pobj(about_IN_10_64, Horton_NNP_16_88); nn(Horton_NNP_16_88, Jacob_NNP_11_70); nn(Horton_NNP_16_88, F._NNP_12_76); punct(Horton_NNP_16_88, "_``_13_79); nn(Horton_NNP_16_88, Jake_NNP_14_81); punct(Horton_NNP_16_88, "_''_15_86); punct(Horton_NNP_16_88, ,_,_17_95); appos(Horton_NNP_16_88, president_NN_21_113); det(president_NN_21_113, the_DT_18_97); amod(president_NN_21_113, senior_JJ_19_101); nn(president_NN_21_113, vice_NN_20_108); prep(president_NN_21_113, of_IN_22_123); rcmod(president_NN_21_113, died_VBD_26_141); pobj(of_IN_22_123, Power_NNP_24_131); nn(Power_NNP_24_131, Gulf_NNP_23_126); nsubj(died_VBD_26_141, who_WP_25_137); prep(died_VBD_26_141, in_IN_27_146); prep(died_VBD_26_141, in_IN_31_165); pobj(in_IN_27_146, crash_NN_30_159); det(crash_NN_30_159, the_DT_28_149); nn(crash_NN_30_159, plane_NN_29_153); pobj(in_IN_31_165, April_NNP_32_168) Template {rel} {prep} {arg1} >rcmod> {rel:postag=VBD} >{prep:regex=prep_(.*)}> {arg2} 0.02 the senior vice president of Gulf Power ;;; the_DT_18_97; senior_JJ_19_101; vice_NN_20_108; president_NN_21_113; of_IN_22_123; Gulf_NNP_23_126; Power_NNP_24_131 died in ;;; died_VBD_26_141 the plane crash ;;; the_DT_28_149; plane_NN_29_153; crash_NN_30_159 0.02000 None None 0 prep(Years_NNS_0_0, after_IN_1_6); pobj(after_IN_1_6, marriage_NN_3_16); poss(marriage_NN_3_16, his_PRP$_2_12); prep(marriage_NN_3_16, to_TO_4_25); pobj(to_TO_4_25, Gemma_NNP_5_28); nsubj(met_VBD_8_39, Years_NNS_0_0); punct(met_VBD_8_39, ,_,_6_34); nsubj(met_VBD_8_39, he_PRP_7_36); dobj(met_VBD_8_39, Beatrice_NNP_9_43); advmod(met_VBD_8_39, again_RB_10_52); punct(met_VBD_8_39, ._._11_58) Template {rel} {arg1} dobj> {arg2} 0.3797 Years ;;; Years_NN_0_0 met again ;;; met_VBD_8_39; again_RB_10_52 Beatrice ;;; Beatrice_NNP_9_43 0.37970 None None 1 prep(Years_NNS_0_0, after_IN_1_6); pobj(after_IN_1_6, marriage_NN_3_16); poss(marriage_NN_3_16, his_PRP$_2_12); prep(marriage_NN_3_16, to_TO_4_25); pobj(to_TO_4_25, Gemma_NNP_5_28); nsubj(met_VBD_8_39, Years_NNS_0_0); punct(met_VBD_8_39, ,_,_6_34); nsubj(met_VBD_8_39, he_PRP_7_36); dobj(met_VBD_8_39, Beatrice_NNP_9_43); advmod(met_VBD_8_39, again_RB_10_52); punct(met_VBD_8_39, ._._11_58) Template {rel} {arg1} dobj> {arg2} 0.3797 he ;;; he_PRP_7_36 met again ;;; met_VBD_8_39; again_RB_10_52 Beatrice ;;; Beatrice_NNP_9_43 0.37970 None None 0 prep(Years_NNS_0_0, after_IN_1_6); pobj(after_IN_1_6, marriage_NN_3_16); poss(marriage_NN_3_16, his_PRP$_2_12); prep(marriage_NN_3_16, to_TO_4_25); pobj(to_TO_4_25, Gemma_NNP_5_28); nsubj(met_VBD_8_39, Years_NNS_0_0); punct(met_VBD_8_39, ,_,_6_34); nsubj(met_VBD_8_39, he_PRP_7_36); dobj(met_VBD_8_39, Beatrice_NNP_9_43); advmod(met_VBD_8_39, again_RB_10_52); punct(met_VBD_8_39, ._._11_58) Template be {rel} {prep} {arg1} nsubj> {rel:postag=NN} >{prep:regex=prep_(.*)}> {arg2} 0.006 he ;;; he_PRP_7_36 be Years after ;;; Years_NN_0_0 his marriage ;;; his_PRP$_2_12; marriage_NN_3_16 0.00600 None None ================================================ FILE: example/pom.xml ================================================ 4.0.0 edu.washington.cs.knowitall.ollie ollie-example ollie-example 1.0.0-SNAPSHOT edu.washington.cs.knowitall knowitall-oss 1.0.2 UTF-8 2.4.0 edu.washington.cs.knowitall.ollie ollie-core_2.9.2 1.0.2 edu.washington.cs.knowitall.nlptools nlptools-parse-malt_2.9.2 ${nlptools.version} ch.qos.logback logback-classic 1.0.7 ch.qos.logback logback-core 1.0.7 src/main/scala src/test/scala src/main/resources net.alchim31.maven scala-maven-plugin 3.1.0 -deprecation -unchecked compile testCompile ================================================ FILE: example/src/main/java/example/JavaOllieWrapper.java ================================================ package example; import java.io.File; import java.net.MalformedURLException; import edu.knowitall.ollie.Ollie; import edu.knowitall.ollie.OllieExtraction; import edu.knowitall.ollie.OllieExtractionInstance; import edu.knowitall.tool.parse.MaltParser; import edu.knowitall.tool.parse.graph.DependencyGraph; /** This is an example class that shows one way of using Ollie from Java. */ public class JavaOllieWrapper { // the extractor itself private Ollie ollie; // the parser--a step required before the extractor private MaltParser maltParser; // the path of the malt parser model file private static final String MALT_PARSER_FILENAME = "engmalt.linear-1.7.mco"; public JavaOllieWrapper() throws MalformedURLException { // initialize MaltParser scala.Option nullOption = scala.Option.apply(null); maltParser = new MaltParser(new File(MALT_PARSER_FILENAME).toURI().toURL(), nullOption); // initialize Ollie ollie = new Ollie(); } /** * Gets Ollie extractions from a single sentence. * @param sentence * @return the set of ollie extractions */ public Iterable extract(String sentence) { // parse the sentence DependencyGraph graph = maltParser.dependencyGraph(sentence); // run Ollie over the sentence and convert to a Java collection Iterable extrs = scala.collection.JavaConversions.asJavaIterable(ollie.extract(graph)); return extrs; } public static void main(String args[]) throws MalformedURLException { System.out.println(JavaOllieWrapper.class.getResource("/logback.xml")); // initialize JavaOllieWrapper ollieWrapper = new JavaOllieWrapper(); // extract from a single sentence. String sentence = "President Obama will meet with Congressional leaders on Friday, and House Republicans summoned lawmakers back for a Sunday session, in a last-ditch effort to avert a fiscal crisis brought on by automatic tax increases and spending cuts scheduled to hit next week."; Iterable extrs = ollieWrapper.extract(sentence); // print the extractions. for (OllieExtractionInstance inst : extrs) { OllieExtraction extr = inst.extr(); System.out.println(extr.arg1().text()+"\t"+extr.rel().text()+"\t"+extr.arg2().text()); } } } ================================================ FILE: example/src/main/resouces/logback.xml ================================================ %d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n ================================================ FILE: example/src/main/scala/ollie/Example.scala ================================================ package ollie import edu.knowitall.ollie.Ollie import edu.knowitall.tool.parse.MaltParser import scala.io.Source import edu.knowitall.ollie.confidence.OllieConfidenceFunction /** This is an example project that takes lines as input from stdin, * parses them, runs the Ollie extractor on them, scores the * extractions with a confidence function, and then prints the results. * * You can run this project with the following command: * mvn clean compile exec:java -Dexec.mainClass=ollie.Example * * You will need to have engmalt.linear-1.7.mco in the base directory * of this example for the program to work. You can download this * file from the MaltParser website: * * http://www.maltparser.org/mco/english_parser/engmalt.html */ object Example extends App { val parser = new MaltParser val ollie = new Ollie val confidence = OllieConfidenceFunction.loadDefaultClassifier() for (line <- Source.stdin.getLines; if !line.trim.isEmpty) { val parsed = parser.dependencyGraph(line) val extractionInstances = ollie.extract(parsed) println("Extractions:") for (inst <- extractionInstances) { val conf = confidence(inst) println(("%.2f" format conf) + "\t" + inst.extraction) } println("Waiting for next input...") } } ================================================ FILE: pom.xml ================================================ 4.0.0 ollie ollie 1.0.0-SNAPSHOT pom edu.washington.cs.knowitall.ollie UTF-8 core app